diff options
author | Jeroen Roovers <jer@gentoo.org> | 2016-01-11 12:07:26 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2016-01-11 12:07:26 +0100 |
commit | 39f2877461f2024b0303e29093546e3044e6a850 (patch) | |
tree | ba9205aec7b52e5a4378d61b15398b196f99b0bb /app-arch/dpkg | |
parent | dev-python/rsa: amd64 stable wrt bug #570990 (diff) | |
download | gentoo-39f2877461f2024b0303e29093546e3044e6a850.tar.gz gentoo-39f2877461f2024b0303e29093546e3044e6a850.tar.bz2 gentoo-39f2877461f2024b0303e29093546e3044e6a850.zip |
app-arch/dpkg: Old.
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-arch/dpkg')
-rw-r--r-- | app-arch/dpkg/Manifest | 1 | ||||
-rw-r--r-- | app-arch/dpkg/dpkg-1.17.25.ebuild | 98 |
2 files changed, 0 insertions, 99 deletions
diff --git a/app-arch/dpkg/Manifest b/app-arch/dpkg/Manifest index a62d6219717f..5944211e2f67 100644 --- a/app-arch/dpkg/Manifest +++ b/app-arch/dpkg/Manifest @@ -1,3 +1,2 @@ -DIST dpkg_1.17.25.tar.xz 4407792 SHA256 07019d38ae98fb107c79dbb3690cfadff877f153b8c4970e3a30d2e59aa66baa SHA512 6a4b45c0f59cd11fc104d954ab790dd7e11e650cd6dde303a664023a04bf6fbc49c878eaf00e27dd7f9bf5e79a92b3a5f5923d003942436758a3027364a0b7c7 WHIRLPOOL 6ed2d8a645787a83f431803214cce9b1c7516c4083ffe651deb7c2f8b641b85d3a17271030286155a985dfd0046fbd584d2d750ab8954e8e5af74085d7651bd2 DIST dpkg_1.17.26.tar.xz 4410860 SHA256 aa4e758752cdfd7ecb118d7a7d31139a0c090c92aa494aa2e46603006deb1ec8 SHA512 4d2f2a7691dd34d47b62ec1f602d9bab612b151f05362607ec8e31037c4ba0baf5d609c46352240e9806e5781db8df9781e8a0ee9fd24faf54f8b43244a7e538 WHIRLPOOL 56decf0774f2d4405fb0934415c50749230c06fe9112e0ebb4458a8917538c83644eadb885d24350bbf713a6250dd5687956b70d47e22c06cf39ff87cb2d5a23 DIST dpkg_1.18.4.tar.xz 4377024 SHA256 fe89243868888ce715bf45861f26264f767d4e4dbd0d6f1a26ce60bbbbf106da SHA512 047a1b38b685d48557aaf8baa847042d7b4ef38de1bcc069108a7b12f29fd84c16caccaeb79c9a1f6445ea8a3327f5d81ff692dfadd0151a0c8e2ed4e24b5f45 WHIRLPOOL 9dee8af7762b8b581758d1def871fe5b2151982c486cd15bc73b2fdd5895e6b483acc3a44035225e436e4c1534234ea95da53611876fd45b352b7491e902d98a diff --git a/app-arch/dpkg/dpkg-1.17.25.ebuild b/app-arch/dpkg/dpkg-1.17.25.ebuild deleted file mode 100644 index 369cfc9ace6b..000000000000 --- a/app-arch/dpkg/dpkg-1.17.25.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit eutils multilib autotools toolchain-funcs - -DESCRIPTION="Package maintenance system for Debian" -HOMEPAGE="http://packages.qa.debian.org/dpkg" -SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris" -IUSE="+bzip2 +lzma nls selinux test unicode +update-alternatives +zlib" - -RDEPEND=" - >=dev-lang/perl-5.6.0:= - dev-perl/TimeDate - >=sys-libs/ncurses-5.2-r7 - bzip2? ( app-arch/bzip2 ) - lzma? ( app-arch/xz-utils ) - selinux? ( sys-libs/libselinux ) - zlib? ( >=sys-libs/zlib-1.1.4 ) -" -DEPEND=" - ${RDEPEND} - app-arch/xz-utils - sys-devel/flex - virtual/pkgconfig - nls? ( - app-text/po4a - >=sys-devel/gettext-0.18.2 - ) - test? ( - dev-perl/DateTime-Format-DateParse - dev-perl/IO-String - dev-perl/Test-Pod - virtual/perl-Test-Harness - ) -" - -DOCS=( ChangeLog THANKS TODO ) - -src_prepare() { - # do not expect Debian's gzip --rsyncable extension - epatch "${FILESDIR}"/${PN}-1.17.0-gzip-rsyncable.patch - - epatch "${FILESDIR}"/${PN}-1.17.1-flags.patch - - # Force the use of the running bash for get-version (this file is never - # installed, so no need to worry about hardcoding a temporary bash) - sed -i -e '1c\#!'"${BASH}" get-version || die - - if [[ ${CHOST} == mips64*-linux-gnu ]] ; then - # Debian targets use custom full tuples. Map the default one - # based on the ABI we're using. - local abi - if [[ ${ABI} == "n64" ]] ; then - abi="mips64" - else - abi="mipsn32" - fi - printf "gnu-linux-mips64 ${abi}\ngnu-linux-mips64el ${abi}el\n" >> triplettable - fi - - use nls && strip-linguas -i po - - eautoreconf -} - -src_configure() { - tc-export CC - econf \ - $(use_enable nls) \ - $(use_enable unicode) \ - $(use_enable update-alternatives) \ - $(use_with bzip2 bz2) \ - $(use_with lzma liblzma) \ - $(use_with selinux) \ - $(use_with zlib) \ - --disable-compiler-warnings \ - --disable-dselect \ - --disable-silent-rules \ - --disable-start-stop-daemon \ - --localstatedir="${EPREFIX}"/var -} - -src_compile() { - emake AR=$(tc-getAR) -} - -src_install() { - default - - keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} - keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates} -} |