diff options
author | Hanno Böck <hanno@gentoo.org> | 2006-12-04 13:52:15 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2006-12-04 13:52:15 +0000 |
commit | d9630ff4edf7ae72183864ad9fe38ade54822356 (patch) | |
tree | fc204f70fd923dde3c3b4dc69203d3304660ac3d /sys-libs | |
parent | Changed test dep to point to virtual (diff) | |
download | gentoo-2-d9630ff4edf7ae72183864ad9fe38ade54822356.tar.gz gentoo-2-d9630ff4edf7ae72183864ad9fe38ade54822356.tar.bz2 gentoo-2-d9630ff4edf7ae72183864ad9fe38ade54822356.zip |
gwenhywfar version bump
(Portage version: 2.1.2_rc2-r5)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/gwenhywfar/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/files/digest-gwenhywfar-2.4.1 | 3 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/gwenhywfar-2.4.1.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/sys-libs/gwenhywfar/ChangeLog b/sys-libs/gwenhywfar/ChangeLog index 6009cfd688e0..146dc17061f4 100644 --- a/sys-libs/gwenhywfar/ChangeLog +++ b/sys-libs/gwenhywfar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/gwenhywfar # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.37 2006/11/04 11:40:00 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.38 2006/12/04 13:52:15 hanno Exp $ + +*gwenhywfar-2.4.1 (04 Dec 2006) + + 04 Dec 2006; Hanno Boeck <hanno@gentoo.org> +gwenhywfar-2.4.1.ebuild: + Version bump. 04 Nov 2006; <blubb@gentoo.org> gwenhywfar-2.4.0.ebuild: stable on amd64 diff --git a/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.4.1 b/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.4.1 new file mode 100644 index 000000000000..76fb1b476d1e --- /dev/null +++ b/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.4.1 @@ -0,0 +1,3 @@ +MD5 e6c30009e916e6147c6ada32d80555bc gwenhywfar-2.4.1.tar.gz 1178376 +RMD160 49df7eae1ce360c279646cb8911d77cb84f2914d gwenhywfar-2.4.1.tar.gz 1178376 +SHA256 745507ab50068bbbd630ad65aede630b654b14fa5adcf6f29524d49d797c9aac gwenhywfar-2.4.1.tar.gz 1178376 diff --git a/sys-libs/gwenhywfar/gwenhywfar-2.4.1.ebuild b/sys-libs/gwenhywfar/gwenhywfar-2.4.1.ebuild new file mode 100644 index 000000000000..0a28dbba1c14 --- /dev/null +++ b/sys-libs/gwenhywfar/gwenhywfar-2.4.1.ebuild @@ -0,0 +1,38 @@ +# 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-2.4.1.ebuild,v 1.1 2006/12/04 13:52:15 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 )" + +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() { + einstall || die + dodoc README* AUTHORS ChangeLog TODO + if use doc ; then + make DESTDIR="${D}" install-srcdoc || die "make isntall-srcdoc failed" + fi +} |