summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2010-01-10 15:28:41 +0000
committerHanno Böck <hanno@gentoo.org>2010-01-10 15:28:41 +0000
commit800637c0fe736f83935d6c17e844e59a7b70d594 (patch)
treed02fc1888556954ae73578ff92f60ac402ee4339 /sys-libs
parentAdd linguas_en as a USE dep for tesseract. (diff)
downloadgentoo-2-800637c0fe736f83935d6c17e844e59a7b70d594.tar.gz
gentoo-2-800637c0fe736f83935d6c17e844e59a7b70d594.tar.bz2
gentoo-2-800637c0fe736f83935d6c17e844e59a7b70d594.zip
libhx bump
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libhx/ChangeLog9
-rw-r--r--sys-libs/libhx/libhx-3.2.ebuild24
2 files changed, 31 insertions, 2 deletions
diff --git a/sys-libs/libhx/ChangeLog b/sys-libs/libhx/ChangeLog
index b45cb474b364..f67c862d3fcc 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.17 2009/09/24 10:06:28 hanno Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.18 2010/01/10 15:28:41 hanno Exp $
+
+*libhx-3.2 (10 Jan 2010)
+
+ 10 Jan 2010; Hanno Boeck <hanno@gentoo.org> +libhx-3.2.ebuild:
+ Version bump.
*libhx-3.1 (24 Sep 2009)
diff --git a/sys-libs/libhx/libhx-3.2.ebuild b/sys-libs/libhx/libhx-3.2.ebuild
new file mode 100644
index 000000000000..22bfb0b31d93
--- /dev/null
+++ b/sys-libs/libhx/libhx-3.2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/libhx-3.2.ebuild,v 1.1 2010/01/10 15:28:41 hanno 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
+}