summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2011-01-20 04:08:59 +0000
committerMatt Turner <mattst88@gentoo.org>2011-01-20 04:08:59 +0000
commitfee40678e4fabb82a1161f1cb191ca98541ba643 (patch)
treeb3a5148bb902b6ec83b2d72692cbe51fcd449c92 /sys-libs
parentallow files matching a `file` string to fall back to colorization if there ar... (diff)
downloadgentoo-2-fee40678e4fabb82a1161f1cb191ca98541ba643.tar.gz
gentoo-2-fee40678e4fabb82a1161f1cb191ca98541ba643.tar.bz2
gentoo-2-fee40678e4fabb82a1161f1cb191ca98541ba643.zip
Version Bump to 3.8.
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libhx/ChangeLog9
-rw-r--r--sys-libs/libhx/libhx-3.8.ebuild30
2 files changed, 37 insertions, 2 deletions
diff --git a/sys-libs/libhx/ChangeLog b/sys-libs/libhx/ChangeLog
index 3a93777fa9da..ec87c1b3630f 100644
--- a/sys-libs/libhx/ChangeLog
+++ b/sys-libs/libhx/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-libs/libhx
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.28 2010/10/05 11:22:39 hanno Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.29 2011/01/20 04:08:59 mattst88 Exp $
+
+*libhx-3.8 (20 Jan 2011)
+
+ 20 Jan 2011; Matt Turner <mattst88@gentoo.org> +libhx-3.8.ebuild:
+ Version Bump.
*libhx-3.6 (05 Oct 2010)
diff --git a/sys-libs/libhx/libhx-3.8.ebuild b/sys-libs/libhx/libhx-3.8.ebuild
new file mode 100644
index 000000000000..ea69d42c847c
--- /dev/null
+++ b/sys-libs/libhx/libhx-3.8.ebuild
@@ -0,0 +1,30 @@
+# 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.8.ebuild,v 1.1 2011/01/20 04:08:59 mattst88 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
+}