diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-05-21 21:00:22 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-05-21 21:00:22 +0000 |
commit | b5bb9647d85b1844735f572c53d36b779086223e (patch) | |
tree | df970bbe92a6a098ba378e79a12038a46785e038 /app-arch/dpkg | |
parent | stable ppc, bug 268474 (diff) | |
download | gentoo-2-b5bb9647d85b1844735f572c53d36b779086223e.tar.gz gentoo-2-b5bb9647d85b1844735f572c53d36b779086223e.tar.bz2 gentoo-2-b5bb9647d85b1844735f572c53d36b779086223e.zip |
Version bump. Rewritten -nls.patch. Drop -start-stop-daemon.8.patch as that is fixed upstream now.
(Portage version: 2.2_rc33/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.15.1.ebuild | 54 | ||||
-rw-r--r-- | app-arch/dpkg/files/dpkg-1.15.1-nls.patch | 19 |
3 files changed, 81 insertions, 1 deletions
diff --git a/app-arch/dpkg/ChangeLog b/app-arch/dpkg/ChangeLog index 7199e5ed58ed..322be4a5d58c 100644 --- a/app-arch/dpkg/ChangeLog +++ b/app-arch/dpkg/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-arch/dpkg # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.87 2009/05/04 16:34:30 yvasilev Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.88 2009/05/21 21:00:22 jer Exp $ + +*dpkg-1.15.1 (21 May 2009) + + 21 May 2009; Jeroen Roovers <jer@gentoo.org> +dpkg-1.15.1.ebuild, + +files/dpkg-1.15.1-nls.patch: + Version bump. Rewritten -nls.patch. Drop -start-stop-daemon.8.patch as + that is fixed upstream now. 04 May 2009; <yvasilev@gentoo.org> files/dpkg-1.14.25-start-stop-daemon.8.patch: diff --git a/app-arch/dpkg/dpkg-1.15.1.ebuild b/app-arch/dpkg/dpkg-1.15.1.ebuild new file mode 100644 index 000000000000..70859eeee314 --- /dev/null +++ b/app-arch/dpkg/dpkg-1.15.1.ebuild @@ -0,0 +1,54 @@ +# 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.15.1.ebuild,v 1.1 2009/05/21 21:00:22 jer Exp $ + +inherit eutils multilib autotools + +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}"/${P}-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 + eautoreconf +} + +src_compile() { + econf \ + $(use_with bzip2 bz2) \ + $(use_enable nls) \ + $(use_with selinux) \ + $(use_with zlib) \ + --without-start-stop-daemon \ + || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + rm "${D}"/usr/sbin/install-info + rm "${D}"/usr/share/man/man?/install-info.? + dodoc ChangeLog INSTALL THANKS TODO + keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} + keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates} +} diff --git a/app-arch/dpkg/files/dpkg-1.15.1-nls.patch b/app-arch/dpkg/files/dpkg-1.15.1-nls.patch new file mode 100644 index 000000000000..cbf876b53ac3 --- /dev/null +++ b/app-arch/dpkg/files/dpkg-1.15.1-nls.patch @@ -0,0 +1,19 @@ +respect the configure nls flag + +http://bugs.gentoo.org/192819 + + +--- dpkg-1.15.1/man/Makefile.in.orig 2009-05-21 06:49:55.000000000 +0200 ++++ dpkg-1.15.1/man/Makefile.in 2009-05-21 22:42:28.000000000 +0200 +@@ -197,7 +197,11 @@ + top_srcdir = @top_srcdir@ + + # Extract the list of languages from the po4a config file. ++ifeq ($(USE_NLS),yes) + LINGUAS = `sed -ne 's/^.*\[po4a_langs\] \(.*\)$$/\1/p' $(srcdir)/po/po4a.cfg` ++else ++LINGUAS = ++endif + dist_man_MANS = deb-control.5 deb-version.5 deb-shlibs.5 \ + deb-substvars.5 deb-symbols.5 deb-triggers.5 deb-old.5 \ + deb-override.5 deb.5 dpkg-architecture.1 dpkg-buildpackage.1 \ |