diff options
author | Hanno Böck <hanno@gentoo.org> | 2015-01-04 10:06:11 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2015-01-04 10:06:11 +0000 |
commit | 5e7262ae418eff78507665afa78744cee8287083 (patch) | |
tree | 68f5bcea7617e693379abe1159478a5f48d1839e /sys-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-5e7262ae418eff78507665afa78744cee8287083.tar.gz gentoo-2-5e7262ae418eff78507665afa78744cee8287083.tar.bz2 gentoo-2-5e7262ae418eff78507665afa78744cee8287083.zip |
libhx bump
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key BBB51E42)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libhx/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/libhx/libhx-3.22.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/sys-libs/libhx/ChangeLog b/sys-libs/libhx/ChangeLog index 22fedb1c8e0e..a981a6386a07 100644 --- a/sys-libs/libhx/ChangeLog +++ b/sys-libs/libhx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libhx -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.48 2014/08/10 20:12:32 slyfox Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/ChangeLog,v 1.49 2015/01/04 10:06:11 hanno Exp $ + +*libhx-3.22 (04 Jan 2015) + + 04 Jan 2015; <hanno@gentoo.org> +libhx-3.22.ebuild: + Bump. 10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> libhx-3.16.ebuild: QA: drop trailing '.' from DESCRIPTION diff --git a/sys-libs/libhx/libhx-3.22.ebuild b/sys-libs/libhx/libhx-3.22.ebuild new file mode 100644 index 000000000000..2fd13feb2114 --- /dev/null +++ b/sys-libs/libhx/libhx-3.22.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libhx/libhx-3.22.ebuild,v 1.1 2015/01/04 10:06:11 hanno Exp $ + +EAPI=5 + +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}" +} + +src_install() { + default + dodoc doc/*.txt + prune_libtool_files --all +} |