summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2006-09-08 16:32:24 +0000
committerHanno Böck <hanno@gentoo.org>2006-09-08 16:32:24 +0000
commit17ad71b3ac51e16e5c02a3615bb0d25ae1953c3e (patch)
tree8d362f7143793ccf993dd2532644ebea88596163 /sys-libs/gwenhywfar
parentktoblzcheck version bump (diff)
downloadgentoo-2-17ad71b3ac51e16e5c02a3615bb0d25ae1953c3e.tar.gz
gentoo-2-17ad71b3ac51e16e5c02a3615bb0d25ae1953c3e.tar.bz2
gentoo-2-17ad71b3ac51e16e5c02a3615bb0d25ae1953c3e.zip
gwenhywfar version bump
(Portage version: 2.1.1_rc1-r7)
Diffstat (limited to 'sys-libs/gwenhywfar')
-rw-r--r--sys-libs/gwenhywfar/ChangeLog7
-rw-r--r--sys-libs/gwenhywfar/files/digest-gwenhywfar-2.4.03
-rw-r--r--sys-libs/gwenhywfar/gwenhywfar-2.4.0.ebuild38
3 files changed, 47 insertions, 1 deletions
diff --git a/sys-libs/gwenhywfar/ChangeLog b/sys-libs/gwenhywfar/ChangeLog
index c74cc436284d..f74ca10646e5 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.32 2006/07/21 08:06:00 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.33 2006/09/08 16:32:24 hanno Exp $
+
+*gwenhywfar-2.4.0 (08 Sep 2006)
+
+ 08 Sep 2006; Hanno Boeck <hanno@gentoo.org> +gwenhywfar-2.4.0.ebuild:
+ Version bump.
*gwenhywfar-2.3.1 (21 Jul 2006)
diff --git a/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.4.0 b/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.4.0
new file mode 100644
index 000000000000..f20c1b59dcc8
--- /dev/null
+++ b/sys-libs/gwenhywfar/files/digest-gwenhywfar-2.4.0
@@ -0,0 +1,3 @@
+MD5 a1e75c18ea7289f51f88a6fddca59193 gwenhywfar-2.4.0.tar.gz 1176666
+RMD160 effa48e2d4576f87affdbf64d1a3d6b65bb142f5 gwenhywfar-2.4.0.tar.gz 1176666
+SHA256 8165cecc0f28547da16fdc4e4e63c97027f29d5c21b459fda8f20a9bccdd81a7 gwenhywfar-2.4.0.tar.gz 1176666
diff --git a/sys-libs/gwenhywfar/gwenhywfar-2.4.0.ebuild b/sys-libs/gwenhywfar/gwenhywfar-2.4.0.ebuild
new file mode 100644
index 000000000000..cc30e6b61f8a
--- /dev/null
+++ b/sys-libs/gwenhywfar/gwenhywfar-2.4.0.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.0.ebuild,v 1.1 2006/09/08 16:32:24 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
+}