diff options
author | Mike Pagano <mpagano@gentoo.org> | 2009-01-03 21:38:23 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2009-01-03 21:38:23 +0000 |
commit | e1f37aa3443782a8a1771d8258968fa6369c0474 (patch) | |
tree | 3800f21b951250ff0c66294a0b68bd1e295f914e /net-misc | |
parent | Add DBD-mysql-2.9007 again, because www-apps/bugzilla-2.20.6 depends on it (diff) | |
download | gentoo-2-e1f37aa3443782a8a1771d8258968fa6369c0474.tar.gz gentoo-2-e1f37aa3443782a8a1771d8258968fa6369c0474.tar.bz2 gentoo-2-e1f37aa3443782a8a1771d8258968fa6369c0474.zip |
Removing the stripping of a binary as per bug #240934
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo i686)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/getdate/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/getdate/getdate-1.2.ebuild | 16 |
2 files changed, 17 insertions, 6 deletions
diff --git a/net-misc/getdate/ChangeLog b/net-misc/getdate/ChangeLog index 76295259fac2..a5ffe8119ba1 100644 --- a/net-misc/getdate/ChangeLog +++ b/net-misc/getdate/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/getdate -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/getdate/ChangeLog,v 1.11 2008/04/21 17:56:55 phreak Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/getdate/ChangeLog,v 1.12 2009/01/03 21:38:23 mpagano Exp $ + + 03 Jan 2009; Mike Pagano <mpagano@gentoo.org> getdate-1.2.ebuild: + Removing the prestripping of a binary as per bug #240934 21 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml: Fix up metadata.xml. If there's no maintainer for the package, the metadata diff --git a/net-misc/getdate/getdate-1.2.ebuild b/net-misc/getdate/getdate-1.2.ebuild index 29e47364c156..8f75ffdb28e3 100644 --- a/net-misc/getdate/getdate-1.2.ebuild +++ b/net-misc/getdate/getdate-1.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 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/getdate/getdate-1.2.ebuild,v 1.9 2005/07/30 17:57:36 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/getdate/getdate-1.2.ebuild,v 1.10 2009/01/03 21:38:23 mpagano Exp $ inherit toolchain-funcs @@ -20,12 +20,20 @@ KEYWORDS="x86 ~mips ppc" DEPEND="virtual/libc" RDEPEND="${DEPEND}" +src_unpack() { + unpack ${A} + cd "${S}" + + #remove prestripped binary as per bug #240934 + sed -i -e "s:install -s:install:" Makefile +} + src_compile() { - $(tc-getCC) ${CFLAGS} -DHAVE_ADJTIME -s -o getdate getdate.c || die + $(tc-getCC) ${CFLAGS} -DHAVE_ADJTIME -o getdate getdate.c || die } src_install() { - dobin getdate + dobin getdate || die "dobin failed" doman getdate.8 dodoc README getdate-cron } |