summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2009-01-13 12:12:16 +0000
committerHanno Böck <hanno@gentoo.org>2009-01-13 12:12:16 +0000
commit551f70bfb32c3ee9c8569e643f52a51c6832a9e7 (patch)
treef7e4e28b325da6cffa2c268ae94a9ab67a93c446 /sys-libs
parentAdd missing DEPEND app-arch/unzip wrt #254809. Remove unnecessary quoting fro... (diff)
downloadgentoo-2-551f70bfb32c3ee9c8569e643f52a51c6832a9e7.tar.gz
gentoo-2-551f70bfb32c3ee9c8569e643f52a51c6832a9e7.tar.bz2
gentoo-2-551f70bfb32c3ee9c8569e643f52a51c6832a9e7.zip
libhx bump
(Portage version: 2.2_rc21/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libhx/ChangeLog7
-rw-r--r--sys-libs/libhx/libhx-2.3.ebuild23
2 files changed, 29 insertions, 1 deletions
diff --git a/sys-libs/libhx/ChangeLog b/sys-libs/libhx/ChangeLog
index c8c99f44d27d..828ca31673b3 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.9 2009/01/08 21:29:53 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.10 2009/01/13 12:12:16 hanno Exp $
+
+*libhx-2.3 (13 Jan 2009)
+
+ 13 Jan 2009; Hanno Boeck <hanno@gentoo.org> +libhx-2.3.ebuild:
+ Version bump.
*libhx-2.2 (08 Jan 2009)
diff --git a/sys-libs/libhx/libhx-2.3.ebuild b/sys-libs/libhx/libhx-2.3.ebuild
new file mode 100644
index 000000000000..34a3599313fe
--- /dev/null
+++ b/sys-libs/libhx/libhx-2.3.ebuild
@@ -0,0 +1,23 @@
+# 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-2.3.ebuild,v 1.1 2009/01/13 12:12:16 hanno Exp $
+
+DESCRIPTION="Platform independent library providing basic system functions."
+HOMEPAGE="http://jengelh.medozas.de/files/libHX/"
+SRC_URI="http://jengelh.medozas.de/files/libHX/libHX-${PV}.tar.bz2"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+DEPEND="virtual/libc"
+S="${WORKDIR}/libHX-${PV}"
+
+src_compile() {
+ econf || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc doc/* || die
+}