Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/gwenhywfar: gwenhywfar-3.8.2.ebuild ChangeLog
Date: Thu, 04 Jun 2009 20:19:48
Message-Id: E1MCJPN-0002NR-U2@stork.gentoo.org
1 hanno 09/06/04 20:19:29
2
3 Modified: ChangeLog
4 Added: gwenhywfar-3.8.2.ebuild
5 Log:
6 gwenhywfar bump
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.67 sys-libs/gwenhywfar/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?rev=1.67&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?rev=1.67&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?r1=1.66&r2=1.67
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v
19 retrieving revision 1.66
20 retrieving revision 1.67
21 diff -u -r1.66 -r1.67
22 --- ChangeLog 23 May 2009 13:47:32 -0000 1.66
23 +++ ChangeLog 4 Jun 2009 20:19:29 -0000 1.67
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-libs/gwenhywfar
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.66 2009/05/23 13:47:32 hanno Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.67 2009/06/04 20:19:29 hanno Exp $
29 +
30 +*gwenhywfar-3.8.2 (04 Jun 2009)
31 +
32 + 04 Jun 2009; Hanno Boeck <hanno@g.o> +gwenhywfar-3.8.2.ebuild:
33 + Version bump.
34
35 23 May 2009; Hanno Boeck <hanno@g.o> gwenhywfar-3.8.1.ebuild:
36 Add dependency to libtool 2.
37
38
39
40 1.1 sys-libs/gwenhywfar/gwenhywfar-3.8.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.8.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.8.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gwenhywfar-3.8.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.8.2.ebuild,v 1.1 2009/06/04 20:19:29 hanno Exp $
50
51 EAPI="2"
52
53 DESCRIPTION="A multi-platform helper library for other libraries"
54 HOMEPAGE="http://gwenhywfar.sourceforge.net"
55 SRC_URI="http://www2.aquamaniac.de/sites/download/download.php?package=01&release=23&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz"
56 LICENSE="LGPL-2.1"
57 SLOT="0"
58 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
59
60 IUSE="debug ssl doc"
61
62 RDEPEND="ssl? ( net-libs/gnutls )"
63 DEPEND="${RDEPEND}
64 doc? ( app-doc/doxygen )"
65
66 src_configure() {
67 econf --enable-visibility \
68 $(use_enable ssl) \
69 $(use_enable debug) \
70 $(use_enable doc full-doc) \
71 --with-docpath="/usr/share/doc/${PF}/apidoc" || die "configure failed"
72 }
73
74 src_compile() {
75 emake || die "emake failed"
76 if use doc ; then
77 emake srcdoc || die "emake failed"
78 fi
79 }
80
81 src_install() {
82 emake DESTDIR="${D}" install || die "install failed"
83 dodoc README* AUTHORS ChangeLog TODO || die "dodoc failed"
84 if use doc ; then
85 make DESTDIR="${D}" install-srcdoc || die "install doc failed"
86 fi
87 find "${D}" -name '*.la' -delete
88 }