summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2011-08-14 18:28:29 +0000
committerHanno Böck <hanno@gentoo.org>2011-08-14 18:28:29 +0000
commit22454b473ad1ddc7688f4df64bc7b190210d3b09 (patch)
treec85edf4aba708379b72301d93a2468a275c26902 /sys-libs/libhx
parentarm stable, bug #355085 (diff)
downloadgentoo-2-22454b473ad1ddc7688f4df64bc7b190210d3b09.tar.gz
gentoo-2-22454b473ad1ddc7688f4df64bc7b190210d3b09.tar.bz2
gentoo-2-22454b473ad1ddc7688f4df64bc7b190210d3b09.zip
libhx bump
(Portage version: 2.1.10.11/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.11.ebuild31
2 files changed, 37 insertions, 1 deletions
diff --git a/sys-libs/libhx/ChangeLog b/sys-libs/libhx/ChangeLog
index 528b44dec2b6..949b6f85cda1 100644
--- a/sys-libs/libhx/ChangeLog
+++ b/sys-libs/libhx/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/libhx
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.31 2011/04/17 00:56:22 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.32 2011/08/14 18:28:29 hanno Exp $
+
+*libhx-3.11 (14 Aug 2011)
+
+ 14 Aug 2011; Hanno Boeck <hanno@gentoo.org> +libhx-3.11.ebuild:
+ Version bump.
*libhx-3.10.1 (17 Apr 2011)
diff --git a/sys-libs/libhx/libhx-3.11.ebuild b/sys-libs/libhx/libhx-3.11.ebuild
new file mode 100644
index 000000000000..d5fa7930a928
--- /dev/null
+++ b/sys-libs/libhx/libhx-3.11.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/libhx-3.11.ebuild,v 1.1 2011/08/14 18:28:29 hanno Exp $
+
+EAPI=3
+
+inherit eutils
+
+DESCRIPTION="Platform independent library providing basic system functions."
+HOMEPAGE="http://libhx.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/libHX-${PV}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="app-arch/xz-utils"
+RDEPEND=""
+
+S="${WORKDIR}/libHX-${PV}"
+
+src_configure() {
+ econf --docdir="/usr/share/doc/${PF}" || die "econf failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc doc/*.txt || die
+ find "${D}" -name '*.la' -delete
+}