summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-09-06 21:17:20 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-09-06 21:17:20 +0000
commitbaefc7e6672c2e56e6402258824f4657caf158b8 (patch)
treeedf876f9445d3a04537fbea93000f92711c101ef /sys-libs/libhx
parentCleaning up for linux-info work: inherit linux-mod implies inherit linux-info. (diff)
downloadgentoo-2-baefc7e6672c2e56e6402258824f4657caf158b8.tar.gz
gentoo-2-baefc7e6672c2e56e6402258824f4657caf158b8.tar.bz2
gentoo-2-baefc7e6672c2e56e6402258824f4657caf158b8.zip
Bump to 3.0.1, fixes #283872
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs/libhx')
-rw-r--r--sys-libs/libhx/ChangeLog7
-rw-r--r--sys-libs/libhx/libhx-3.0.1.ebuild24
2 files changed, 30 insertions, 1 deletions
diff --git a/sys-libs/libhx/ChangeLog b/sys-libs/libhx/ChangeLog
index 72ff6e03d6c3..80d069911c9a 100644
--- a/sys-libs/libhx/ChangeLog
+++ b/sys-libs/libhx/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/libhx
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.14 2009/05/08 22:03:14 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.15 2009/09/06 21:17:20 patrick Exp $
+
+*libhx-3.0.1 (06 Sep 2009)
+
+ 06 Sep 2009; Patrick Lauer <patrick@gentoo.org> +libhx-3.0.1.ebuild:
+ Bump to 3.0.1, fixes #283872
08 May 2009; Hanno Boeck <hanno@gentoo.org> libhx-2.7.ebuild:
Don't install pdf doc twice, resolves #267696.
diff --git a/sys-libs/libhx/libhx-3.0.1.ebuild b/sys-libs/libhx/libhx-3.0.1.ebuild
new file mode 100644
index 000000000000..4497ca93b520
--- /dev/null
+++ b/sys-libs/libhx/libhx-3.0.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/libhx-3.0.1.ebuild,v 1.1 2009/09/06 21:17:20 patrick Exp $
+
+DESCRIPTION="Platform independent library providing basic system functions."
+HOMEPAGE="http://libhx.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/libHX-${PV}.tar.bz2"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+DEPEND="virtual/libc"
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/libHX-${PV}"
+
+src_compile() {
+ econf --docdir="/usr/share/doc/${PF}" || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc doc/*.txt || die
+}