diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-10-11 11:05:01 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-10-11 11:05:01 +0000 |
commit | fbc824594b50e3ec7fcb8cdd6a1ce1c3369432b0 (patch) | |
tree | 99f8a18b59e3a8b7d9259b1eb4ef5e0a0878794d /dev-libs/libtar | |
parent | Stable on amd64 and x86, wrt bug #487334 (diff) | |
download | gentoo-2-fbc824594b50e3ec7fcb8cdd6a1ce1c3369432b0.tar.gz gentoo-2-fbc824594b50e3ec7fcb8cdd6a1ce1c3369432b0.tar.bz2 gentoo-2-fbc824594b50e3ec7fcb8cdd6a1ce1c3369432b0.zip |
Version bump, wrt bug #487420
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'dev-libs/libtar')
-rw-r--r-- | dev-libs/libtar/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libtar/libtar-1.2.20.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/dev-libs/libtar/ChangeLog b/dev-libs/libtar/ChangeLog index d3b152870f49..a51346828016 100644 --- a/dev-libs/libtar/ChangeLog +++ b/dev-libs/libtar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libtar # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtar/ChangeLog,v 1.29 2013/07/09 16:37:19 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtar/ChangeLog,v 1.30 2013/10/11 11:05:01 pinkbyte Exp $ + +*libtar-1.2.20 (11 Oct 2013) + + 11 Oct 2013; Sergey Popov <pinkbyte@gentoo.org> +libtar-1.2.20.ebuild: + Version bump, wrt bug #487420 09 Jul 2013; Michael Palimaka <kensington@gentoo.org> -libtar-1.2.11-r4.ebuild: diff --git a/dev-libs/libtar/libtar-1.2.20.ebuild b/dev-libs/libtar/libtar-1.2.20.ebuild new file mode 100644 index 000000000000..dac0b05726c4 --- /dev/null +++ b/dev-libs/libtar/libtar-1.2.20.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtar/libtar-1.2.20.ebuild,v 1.1 2013/10/11 11:05:01 pinkbyte Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=1 +inherit autotools-utils + +DESCRIPTION="C library for manipulating tar archives" +HOMEPAGE="http://www.feep.net/libtar/ http://repo.or.cz/w/libtar.git/" +SRC_URI="http://repo.or.cz/w/libtar.git/snapshot/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="static-libs zlib" + +RDEPEND="zlib? ( sys-libs/zlib ) + !zlib? ( app-arch/gzip )" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${PN}" + +PATCHES=( + "${FILESDIR}/${PN}-1.2.11-free.patch" + "${FILESDIR}/${PN}-1.2.11-impl-dec.patch" +) + +src_prepare() { + sed -i \ + -e '/INSTALL_PROGRAM/s:-s::' \ + {doc,lib{,tar}}/Makefile.in || die + + autotools-utils_src_prepare +} + +src_configure() { + local myeconfargs=( + --disable-encap + --disable-epkg-install + $(use_with zlib) + ) + + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + + dodoc ChangeLog* README TODO + newdoc compat/README README.compat + newdoc compat/TODO TODO.compat + newdoc listhash/TODO TODO.listhash +} |