diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-02-17 11:31:19 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-02-17 14:37:20 +0100 |
commit | 7a3a82593f009ed288306f47b62a7e088a37db6d (patch) | |
tree | f59a8f6af3a761d1d12e490927e8de3a7632b61a /dev-libs/libtar | |
parent | dev-python/basemap: Strip mpltoolkits/__init__.py correctly (diff) | |
download | gentoo-7a3a82593f009ed288306f47b62a7e088a37db6d.tar.gz gentoo-7a3a82593f009ed288306f47b62a7e088a37db6d.tar.bz2 gentoo-7a3a82593f009ed288306f47b62a7e088a37db6d.zip |
dev-libs/libtar: Security cleanup 2 years after the fact
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-libs/libtar')
-rw-r--r-- | dev-libs/libtar/libtar-1.2.20-r2.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/dev-libs/libtar/libtar-1.2.20-r2.ebuild b/dev-libs/libtar/libtar-1.2.20-r2.ebuild deleted file mode 100644 index 926bb060d8d5..000000000000 --- a/dev-libs/libtar/libtar-1.2.20-r2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -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="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${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 -} |