summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2009-01-08 21:29:53 +0000
committerHanno Böck <hanno@gentoo.org>2009-01-08 21:29:53 +0000
commit6d3ee50f018f7c6af729bdf4a40c628e110fffa4 (patch)
tree82f1430c879f471fd16c8c51397c1516b550f3eb /sys-libs/libhx
parentRemove old (diff)
downloadgentoo-2-6d3ee50f018f7c6af729bdf4a40c628e110fffa4.tar.gz
gentoo-2-6d3ee50f018f7c6af729bdf4a40c628e110fffa4.tar.bz2
gentoo-2-6d3ee50f018f7c6af729bdf4a40c628e110fffa4.zip
libhx bump
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'sys-libs/libhx')
-rw-r--r--sys-libs/libhx/ChangeLog9
-rw-r--r--sys-libs/libhx/libhx-2.2.ebuild23
2 files changed, 30 insertions, 2 deletions
diff --git a/sys-libs/libhx/ChangeLog b/sys-libs/libhx/ChangeLog
index 75b0c6164fe7..c8c99f44d27d 100644
--- a/sys-libs/libhx/ChangeLog
+++ b/sys-libs/libhx/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/libhx
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.8 2008/09/14 10:51:30 hanno Exp $
+# 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 $
+
+*libhx-2.2 (08 Jan 2009)
+
+ 08 Jan 2009; Hanno Boeck <hanno@gentoo.org> +libhx-2.2.ebuild:
+ Version bump.
*libhx-1.25 (14 Sep 2008)
diff --git a/sys-libs/libhx/libhx-2.2.ebuild b/sys-libs/libhx/libhx-2.2.ebuild
new file mode 100644
index 000000000000..b4017e6e4d42
--- /dev/null
+++ b/sys-libs/libhx/libhx-2.2.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.2.ebuild,v 1.1 2009/01/08 21:29:53 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
+}