diff options
author | Hanno Böck <hanno@gentoo.org> | 2006-01-17 21:46:17 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2006-01-17 21:46:17 +0000 |
commit | 7c762b4c6510fe7204345825fb62eccd127e9be0 (patch) | |
tree | 6bbaefe82c365c45e9ed8c4eabd2aa8eb5728645 /sys-libs/gwenhywfar | |
parent | ktoblzcheck version bump (diff) | |
download | gentoo-2-7c762b4c6510fe7204345825fb62eccd127e9be0.tar.gz gentoo-2-7c762b4c6510fe7204345825fb62eccd127e9be0.tar.bz2 gentoo-2-7c762b4c6510fe7204345825fb62eccd127e9be0.zip |
gwenhywfar bump
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'sys-libs/gwenhywfar')
-rw-r--r-- | sys-libs/gwenhywfar/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/files/digest-gwenhywfar-1.99.4 | 1 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/gwenhywfar-1.99.4.ebuild | 42 |
3 files changed, 50 insertions, 2 deletions
diff --git a/sys-libs/gwenhywfar/ChangeLog b/sys-libs/gwenhywfar/ChangeLog index 8d3c2f6188c4..23396ff07782 100644 --- a/sys-libs/gwenhywfar/ChangeLog +++ b/sys-libs/gwenhywfar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/gwenhywfar -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.21 2005/12/24 15:52:42 hansmi Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.22 2006/01/17 21:46:17 hanno Exp $ + +*gwenhywfar-1.99.4 (17 Jan 2006) + + 17 Jan 2006; Hanno Boeck <hanno@gentoo.org> +gwenhywfar-1.99.4.ebuild: + Version bump. 24 Dec 2005; Michael Hanselmann <hansmi@gentoo.org> gwenhywfar-1.18.0.ebuild: diff --git a/sys-libs/gwenhywfar/files/digest-gwenhywfar-1.99.4 b/sys-libs/gwenhywfar/files/digest-gwenhywfar-1.99.4 new file mode 100644 index 000000000000..118809caf8cc --- /dev/null +++ b/sys-libs/gwenhywfar/files/digest-gwenhywfar-1.99.4 @@ -0,0 +1 @@ +MD5 1c9c4562ec6acd8ebcd9705183615b5d gwenhywfar-1.99.4.tar.gz 1121812 diff --git a/sys-libs/gwenhywfar/gwenhywfar-1.99.4.ebuild b/sys-libs/gwenhywfar/gwenhywfar-1.99.4.ebuild new file mode 100644 index 000000000000..59578d100295 --- /dev/null +++ b/sys-libs/gwenhywfar/gwenhywfar-1.99.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-1.99.4.ebuild,v 1.1 2006/01/17 21:46:17 hanno Exp $ + +DESCRIPTION="A multi-platform helper library for other libraries" +HOMEPAGE="http://gwenhywfar.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" + +IUSE="debug ssl doc ncurses" + +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b ) + sys-libs/ncurses + doc? ( app-doc/doxygen ) + ncurses? ( sys-libs/ncurses )" +S=${WORKDIR}/${P} + +src_compile() { + if use doc; then + APIDOC="--with-docpath=/usr/share/doc/${P}/apidoc" + fi + econf \ + `use_enable ssl` \ + `use_enable debug` \ + `use_enable doc full-doc` \ + `use_enable ncurses gwenui` \ + ${APIDOC} || die "configure failed" + emake || die "emake failed" + if use doc; then + emake srcdoc || die "Building the api-doc failed" + fi +} + +src_install() { + make DESTDIR=${D} install || die + dodoc README* AUTHORS ABOUT-NLS COPYING ChangeLog INSTALL TODO + if use doc; then + make DESTDIR=${D} install-srcdoc || die "Installing the API-Doc failed" + fi +} |