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: ChangeLog gwenhywfar-3.4.1.ebuild
Date: Mon, 01 Sep 2008 17:29:22
Message-Id: E1KaDDL-00013X-4u@stork.gentoo.org
1 hanno 08/09/01 17:29:19
2
3 Modified: ChangeLog
4 Added: gwenhywfar-3.4.1.ebuild
5 Log:
6 gwenhywfar bump
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 i686)
8
9 Revision Changes Path
10 1.59 sys-libs/gwenhywfar/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?rev=1.59&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?rev=1.59&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/ChangeLog?r1=1.58&r2=1.59
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v
19 retrieving revision 1.58
20 retrieving revision 1.59
21 diff -u -r1.58 -r1.59
22 --- ChangeLog 22 Aug 2008 22:51:36 -0000 1.58
23 +++ ChangeLog 1 Sep 2008 17:29:18 -0000 1.59
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-libs/gwenhywfar
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.58 2008/08/22 22:51:36 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.59 2008/09/01 17:29:18 hanno Exp $
29 +
30 +*gwenhywfar-3.4.1 (01 Sep 2008)
31 +
32 + 01 Sep 2008; Hanno Boeck <hanno@g.o> +gwenhywfar-3.4.1.ebuild:
33 + Version bump.
34
35 22 Aug 2008; Markus Meier <maekke@g.o> gwenhywfar-2.6.2.ebuild:
36 amd64 stable, bug #233536
37
38
39
40 1.1 sys-libs/gwenhywfar/gwenhywfar-3.4.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.4.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.4.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gwenhywfar-3.4.1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 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.4.1.ebuild,v 1.1 2008/09/01 17:29:18 hanno Exp $
50
51 inherit flag-o-matic
52
53 append-ldflags -Wl,--no-as-needed
54 RESTRICT="test"
55
56 DESCRIPTION="A multi-platform helper library for other libraries"
57 HOMEPAGE="http://gwenhywfar.sourceforge.net"
58 SRC_URI="http://files.hboeck.de/aq/${P}.tar.gz"
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
62
63 IUSE="debug ssl doc ncurses"
64
65 RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )
66 sys-libs/ncurses
67 ncurses? ( sys-libs/ncurses )"
68 DEPEND="${RDEPEND}
69 doc? ( app-doc/doxygen )"
70
71 src_compile() {
72 econf \
73 $(use_enable ssl) \
74 $(use_enable debug) \
75 $(use_enable doc full-doc) \
76 $(use_enable ncurses gwenui) \
77 --with-docpath="/usr/share/doc/${PF}/apidoc" || die "configure failed"
78 emake || die "emake failed"
79 if use doc ; then
80 emake srcdoc || die "emake failed"
81 fi
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "install failed"
86 dodoc README* AUTHORS ChangeLog TODO || die "dodoc failed"
87 if use doc ; then
88 make DESTDIR="${D}" install-srcdoc || die "install doc failed"
89 fi
90 find "${D}" -name '*.la' -delete
91 }