Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/dpkg: dpkg-1.16.0.1.ebuild ChangeLog
Date: Tue, 05 Apr 2011 14:56:16
Message-Id: 20110405145605.7440F20054@flycatcher.gentoo.org
1 jer 11/04/05 14:56:05
2
3 Modified: ChangeLog
4 Added: dpkg-1.16.0.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha29/cvs/Linux i686)
9
10 Revision Changes Path
11 1.160 app-arch/dpkg/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?rev=1.160&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?rev=1.160&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/ChangeLog?r1=1.159&r2=1.160
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v
20 retrieving revision 1.159
21 retrieving revision 1.160
22 diff -u -r1.159 -r1.160
23 --- ChangeLog 2 Apr 2011 14:26:20 -0000 1.159
24 +++ ChangeLog 5 Apr 2011 14:56:05 -0000 1.160
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-arch/dpkg
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.159 2011/04/02 14:26:20 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.160 2011/04/05 14:56:05 jer Exp $
30 +
31 +*dpkg-1.16.0.1 (05 Apr 2011)
32 +
33 + 05 Apr 2011; Jeroen Roovers <jer@g.o> +dpkg-1.16.0.1.ebuild:
34 + Version bump.
35
36 02 Apr 2011; Raúl Porcel <armin76@g.o> dpkg-1.15.8.10.ebuild:
37 arm/ia64/m68k/s390/sh/sparc stable wrt #359115
38
39
40
41 1.1 app-arch/dpkg/dpkg-1.16.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/dpkg-1.16.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/dpkg/dpkg-1.16.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dpkg-1.16.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.16.0.1.ebuild,v 1.1 2011/04/05 14:56:05 jer Exp $
51
52 EAPI=3
53
54 inherit eutils multilib autotools toolchain-funcs
55
56 DESCRIPTION="Package maintenance system for Debian"
57 HOMEPAGE="http://packages.qa.debian.org/dpkg"
58 SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
63 IUSE="bzip2 dselect nls test unicode zlib"
64
65 LANGS="sv de es ja fr hu pl ru"
66
67 for X in ${LANGS} ; do
68 IUSE="${IUSE} linguas_${X}"
69 done
70
71 RDEPEND=">=dev-lang/perl-5.6.0
72 dev-perl/TimeDate
73 >=sys-libs/ncurses-5.2-r7
74 zlib? ( >=sys-libs/zlib-1.1.4 )
75 bzip2? ( app-arch/bzip2 )"
76 DEPEND="${RDEPEND}
77 dev-util/pkgconfig
78 nls? ( app-text/po4a )
79 test? (
80 dev-perl/DateTime-Format-DateParse
81 dev-perl/IO-String
82 dev-perl/Test-Pod
83 )"
84
85 src_prepare() {
86 epatch "${FILESDIR}"/${PN}-1.15.5.6-bootstrap.patch
87
88 # don't mess with linker optimisation, respect user's flags (don't break!)
89 sed -i -e '/DPKG_LINKER_OPTIMISATIONS/d' configure.ac || die
90
91 # Force the use of the running bash for get-version (this file is never
92 # installed, so no need to worry about hardcoding a temporary bash)
93 sed -i -e '1c\#!'"${BASH}" get-version || die
94
95 # this test depends on a Debian only gzip extension that adds --rsyncable
96 # which will therefore always fail on Gentoo. (bug #310847).
97 sed -i scripts/Makefile.am \
98 -e '/850_Dpkg_Compression.t/d' \
99 || die "sed failed"
100
101 eautoreconf
102 }
103
104 src_configure() {
105 tc-export CC
106 local myconf
107 if use nls; then
108 myconf="--enable-nls $(use_with dselect)"
109 else
110 if use dselect; then
111 elog "Building dselect requires USE=nls - disabling USE=dselect..."
112 fi
113 myconf="--disable-nls --without-dselect"
114 fi
115 econf \
116 ${myconf} \
117 $(use_with bzip2 bz2) \
118 $(use_enable unicode) \
119 $(use_with zlib) \
120 --disable-compiler-warnings \
121 --without-selinux \
122 --without-start-stop-daemon
123 }
124
125 src_install() {
126 strip-linguas ${LANGS}
127 if [ -z "${LINGUAS}" ] ; then
128 LINGUAS=none
129 fi
130
131 emake DESTDIR="${D}" LINGUAS="${LINGUAS}" install || die "emake install failed"
132 rm "${ED}"/usr/sbin/install-info || die "rm install-info failed"
133 dodoc ChangeLog THANKS TODO
134 keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
135 keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
136 }