diff options
author | 2009-02-18 18:28:19 +0000 | |
---|---|---|
committer | 2009-02-18 18:28:19 +0000 | |
commit | 49519547c82c38540315576895bf2264a555e8f0 (patch) | |
tree | a5845c9f576e3f905d0875d3173f8c6b0416e3c9 /app-arch/dpkg | |
parent | Marking proftpd-1.3.2-r1 ppc64 for bug 258450 (diff) | |
download | gentoo-2-49519547c82c38540315576895bf2264a555e8f0.tar.gz gentoo-2-49519547c82c38540315576895bf2264a555e8f0.tar.bz2 gentoo-2-49519547c82c38540315576895bf2264a555e8f0.zip |
Version bump (bug #259497).
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'app-arch/dpkg')
-rw-r--r-- | app-arch/dpkg/ChangeLog | 9 | ||||
-rw-r--r-- | app-arch/dpkg/dpkg-1.14.25.ebuild | 52 |
2 files changed, 59 insertions, 2 deletions
diff --git a/app-arch/dpkg/ChangeLog b/app-arch/dpkg/ChangeLog index a9eca44cd3ab..fa936c192175 100644 --- a/app-arch/dpkg/ChangeLog +++ b/app-arch/dpkg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/dpkg -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.79 2008/12/01 06:17:07 jer Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.80 2009/02/18 18:28:19 jer Exp $ + +*dpkg-1.14.25 (18 Feb 2009) + + 18 Feb 2009; Jeroen Roovers <jer@gentoo.org> +dpkg-1.14.25.ebuild: + Version bump (bug #259497). 01 Dec 2008; Jeroen Roovers <jer@gentoo.org> dpkg-1.14.22.ebuild: Stable for HPPA (bug #249063). diff --git a/app-arch/dpkg/dpkg-1.14.25.ebuild b/app-arch/dpkg/dpkg-1.14.25.ebuild new file mode 100644 index 000000000000..d61f2d4fbf51 --- /dev/null +++ b/app-arch/dpkg/dpkg-1.14.25.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.14.25.ebuild,v 1.1 2009/02/18 18:28:19 jer Exp $ + +inherit eutils multilib + +DESCRIPTION="Package maintenance system for Debian" +HOMEPAGE="http://packages.qa.debian.org/dpkg" +SRC_URI="mirror://debian/pool/main/d/dpkg/${P/-/_}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~s390 ~sh ~sparc ~x86" +IUSE="bzip2 nls selinux test unicode zlib" + +RDEPEND=">=dev-lang/perl-5.6.0 + dev-perl/TimeDate + >=sys-libs/ncurses-5.2-r7 + zlib? ( >=sys-libs/zlib-1.1.4 ) + bzip2? ( app-arch/bzip2 )" +DEPEND="${RDEPEND} + nls? ( app-text/po4a ) + test? ( dev-perl/Test-Pod )" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-1.14.12-nls.patch #192819 + if ! use unicode ; then + sed -i "s:ncursesw/::" dselect/{Makefile.in,dselect.h,main.cc} #217046 + export ac_cv_lib_ncursesw_initscr=no + fi +} + +src_compile() { + econf \ + $(use_with bzip2 bz2lib) \ + $(use_enable nls) \ + $(use_with selinux) \ + $(use_with zlib) \ + || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + rm "${D}"/usr/sbin/{install-info,start-stop-daemon} + rm "${D}"/usr/share/man/man?/{install-info,start-stop-daemon}.? + dodoc ChangeLog INSTALL THANKS TODO + keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} + keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates} +} |