summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2009-02-12 20:37:12 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2009-02-12 20:37:12 +0000
commit52ea64741cf8706e0fec3faeefac173f771adcee (patch)
treed6394b22b03dccaddc8ecbd752a3d0a01c457ad6 /net-misc/pump
parentStable for HPPA (bug #258230). (diff)
downloadgentoo-2-52ea64741cf8706e0fec3faeefac173f771adcee.tar.gz
gentoo-2-52ea64741cf8706e0fec3faeefac173f771adcee.tar.bz2
gentoo-2-52ea64741cf8706e0fec3faeefac173f771adcee.zip
Revision bump, see bug #258582. Changed maintainer.
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/pump')
-rw-r--r--net-misc/pump/ChangeLog10
-rw-r--r--net-misc/pump/metadata.xml2
-rw-r--r--net-misc/pump/pump-0.8.24-r2.ebuild (renamed from net-misc/pump/pump-0.8.24-r1.ebuild)30
3 files changed, 24 insertions, 18 deletions
diff --git a/net-misc/pump/ChangeLog b/net-misc/pump/ChangeLog
index 73ff76e45797..75a6057a58a5 100644
--- a/net-misc/pump/ChangeLog
+++ b/net-misc/pump/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/pump
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/pump/ChangeLog,v 1.40 2008/12/23 16:30:51 mpagano Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/pump/ChangeLog,v 1.41 2009/02/12 20:37:12 nelchael Exp $
+
+*pump-0.8.24-r2 (12 Feb 2009)
+
+ 12 Feb 2009; Krzysiek Pawlik <nelchael@gentoo.org> metadata.xml,
+ -pump-0.8.24-r1.ebuild, +pump-0.8.24-r2.ebuild:
+ Revision bump, see bug #258582. Changed maintainer.
*pump-0.8.24-r1 (23 Dec 2008)
diff --git a/net-misc/pump/metadata.xml b/net-misc/pump/metadata.xml
index 3646b7c84d32..650d98155434 100644
--- a/net-misc/pump/metadata.xml
+++ b/net-misc/pump/metadata.xml
@@ -3,7 +3,7 @@
<pkgmetadata>
<herd>no-herd</herd>
<maintainer>
- <email>maintainer-needed@gentoo.org</email>
+ <email>nelchael@gentoo.org</email>
</maintainer>
<longdescription lang="en">
A DHCP/BOOTP client
diff --git a/net-misc/pump/pump-0.8.24-r1.ebuild b/net-misc/pump/pump-0.8.24-r2.ebuild
index d8d77eaa0c59..fbe1f3ab5588 100644
--- a/net-misc/pump/pump-0.8.24-r1.ebuild
+++ b/net-misc/pump/pump-0.8.24-r2.ebuild
@@ -1,15 +1,16 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/pump/pump-0.8.24-r1.ebuild,v 1.1 2008/12/23 16:30:51 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/pump/pump-0.8.24-r2.ebuild,v 1.1 2009/02/12 20:37:12 nelchael Exp $
-inherit eutils
+inherit eutils toolchain-funcs
PATCHLEVEL="5"
DESCRIPTION="This is the DHCP/BOOTP client written by RedHat"
HOMEPAGE="http://ftp.debian.org/debian/pool/main/p/pump/"
SRC_URI="mirror://debian/pool/main/p/${PN}/${PN}_${PV}.orig.tar.gz
- mirror://debian/pool/main/p/${PN}/${PN}_${PV}-${PATCHLEVEL}.diff.gz"
+ mirror://debian/pool/main/p/${PN}/${PN}_${PV}-${PATCHLEVEL}.diff.gz
+ mirror://gentoo/${P}-patches.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
@@ -17,24 +18,23 @@ KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND=">=dev-libs/popt-1.5"
+RDEPEND="${DEPEND}"
PROVIDE="virtual/dhcpc"
src_unpack() {
- cd "${WORKDIR}"
- unpack "${PN}_${PV}.orig.tar.gz"
+ unpack ${A}
cd "${S}"
# Apply Debians pump patchset - they fix things good :)
- epatch "${DISTDIR}/${PN}_${PV}-${PATCHLEVEL}.diff.gz"
+ epatch "${WORKDIR}/${PN}_${PV}-${PATCHLEVEL}.diff"
- # Enable the -m (--route-metric) option to specify the default
- # metric applied to routes
- # Enable the --keep-up option to keep interfaces up when we release
- # Enable the creation of /etc/ntp.conf and the --no-ntp option
- epatch "${FILESDIR}/pump-${PV}-gentoo.patch"
+ for i in "${WORKDIR}/${PV}/"*; do
+ epatch "${i}"
+ done
- # Add an if defined around the definition of foo, just like in popt.h
- epatch "${FILESDIR}/${P}-redefinition.patch"
+ sed -i \
+ -e 's,-Werror -g,,' \
+ Makefile || die "sed failed"
# Only install specific po files if LINGUAS is set
if [[ -n ${LINGUAS} ]]; then
@@ -47,7 +47,7 @@ src_unpack() {
}
src_compile() {
- make DEB_CFLAGS="-fPIC ${CFLAGS}" pump || die
+ make CC="$(tc-getCC)" DEB_CFLAGS="-fPIC ${CFLAGS}" pump || die
}
src_install() {