summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2007-11-19 16:59:00 +0000
committerHanno Böck <hanno@gentoo.org>2007-11-19 16:59:00 +0000
commitab9d58f50e41c39f9d61070a2192cc4ba450086f (patch)
tree805edd0a1bf9c30c3bbcc561ad2ae2a9ceb1064f /sys-libs/gwenhywfar
parentamd64 stable, bug #196840. Removed dep on blackdown-java3d since it's masked ... (diff)
downloadgentoo-2-ab9d58f50e41c39f9d61070a2192cc4ba450086f.tar.gz
gentoo-2-ab9d58f50e41c39f9d61070a2192cc4ba450086f.tar.bz2
gentoo-2-ab9d58f50e41c39f9d61070a2192cc4ba450086f.zip
gwenhywfar bump
(Portage version: 2.1.3.19)
Diffstat (limited to 'sys-libs/gwenhywfar')
-rw-r--r--sys-libs/gwenhywfar/ChangeLog7
-rw-r--r--sys-libs/gwenhywfar/files/digest-gwenhywfar-2.6.23
-rw-r--r--sys-libs/gwenhywfar/gwenhywfar-2.6.2.ebuild38
3 files changed, 47 insertions, 1 deletions
diff --git a/sys-libs/gwenhywfar/ChangeLog b/sys-libs/gwenhywfar/ChangeLog
index e6e3942148c7..400a98061f41 100644
--- a/sys-libs/gwenhywfar/ChangeLog
+++ b/sys-libs/gwenhywfar/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/gwenhywfar
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.50 2007/11/16 00:25:33 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.51 2007/11/19 16:58:59 hanno Exp $
+
+*gwenhywfar-2.6.2 (19 Nov 2007)
+
+ 19 Nov 2007; Hanno Boeck <hanno@gentoo.org> +gwenhywfar-2.6.2.ebuild:
+ Version bump.
16 Nov 2007; Steve Dibb <beandog@gentoo.org> gwenhywfar-2.6.1.ebuild:
amd64 stable, bug 192840
diff --git a/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.6.2 b/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.6.2
new file mode 100644
index 000000000000..ee9b6e4a9fb6
--- /dev/null
+++ b/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.6.2
@@ -0,0 +1,3 @@
+MD5 fec3bc3653b7809cc44526b6fed52ab2 gwenhywfar-2.6.2.tar.gz 1201995
+RMD160 9edf83faa03e4dd00e065e1c4c0ce58720993df6 gwenhywfar-2.6.2.tar.gz 1201995
+SHA256 610b4d7ba6803d40b0324f2efeac862f915feb20feb36b91649328f9ad051705 gwenhywfar-2.6.2.tar.gz 1201995
diff --git a/sys-libs/gwenhywfar/gwenhywfar-2.6.2.ebuild b/sys-libs/gwenhywfar/gwenhywfar-2.6.2.ebuild
new file mode 100644
index 000000000000..ef0b01e8b451
--- /dev/null
+++ b/sys-libs/gwenhywfar/gwenhywfar-2.6.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-2.6.2.ebuild,v 1.1 2007/11/19 16:58:59 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="~amd64 ~hppa ~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() {
+ 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
+}