diff options
author | 2009-03-02 17:50:17 +0000 | |
---|---|---|
committer | 2009-03-02 17:50:17 +0000 | |
commit | dc9276157b14f7c33fcd58af2be242b47cae8736 (patch) | |
tree | 41f245304311117dda4c79399acb9785a16f4356 /sys-libs | |
parent | version bump (diff) | |
download | gentoo-2-dc9276157b14f7c33fcd58af2be242b47cae8736.tar.gz gentoo-2-dc9276157b14f7c33fcd58af2be242b47cae8736.tar.bz2 gentoo-2-dc9276157b14f7c33fcd58af2be242b47cae8736.zip |
gwenhywfar version bump
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/gwenhywfar/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/gwenhywfar-3.7.2.ebuild | 45 |
2 files changed, 52 insertions, 2 deletions
diff --git a/sys-libs/gwenhywfar/ChangeLog b/sys-libs/gwenhywfar/ChangeLog index 733b37e47496..0b40528574fc 100644 --- a/sys-libs/gwenhywfar/ChangeLog +++ b/sys-libs/gwenhywfar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/gwenhywfar -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.62 2008/11/13 23:45:30 hanno Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.63 2009/03/02 17:50:17 hanno Exp $ + +*gwenhywfar-3.7.2 (02 Mar 2009) + + 02 Mar 2009; Hanno Boeck <hanno@gentoo.org> +gwenhywfar-3.7.2.ebuild: + Version bump. *gwenhywfar-3.5.2 (13 Nov 2008) diff --git a/sys-libs/gwenhywfar/gwenhywfar-3.7.2.ebuild b/sys-libs/gwenhywfar/gwenhywfar-3.7.2.ebuild new file mode 100644 index 000000000000..a61cf6810ed4 --- /dev/null +++ b/sys-libs/gwenhywfar/gwenhywfar-3.7.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.7.2.ebuild,v 1.1 2009/03/02 17:50:17 hanno Exp $ + +inherit flag-o-matic + +append-ldflags -Wl,--no-as-needed +RESTRICT="test" + +DESCRIPTION="A multi-platform helper library for other libraries" +HOMEPAGE="http://gwenhywfar.sourceforge.net" +SRC_URI="mirror://gentoo/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +IUSE="debug ssl doc ncurses" + +RDEPEND="ssl? ( net-libs/gnutls ) + sys-libs/ncurses + ncurses? ( sys-libs/ncurses )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +src_compile() { + econf \ + $(use_enable ssl) \ + $(use_enable debug) \ + $(use_enable doc full-doc) \ + $(use_enable ncurses gwenui) \ + --with-docpath="/usr/share/doc/${PF}/apidoc" || die "configure failed" + emake || die "emake failed" + if use doc ; then + emake srcdoc || die "emake failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc README* AUTHORS ChangeLog TODO || die "dodoc failed" + if use doc ; then + make DESTDIR="${D}" install-srcdoc || die "install doc failed" + fi + find "${D}" -name '*.la' -delete +} |