summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Birchinger <joker@gentoo.org>2006-06-22 21:00:22 +0000
committerChristian Birchinger <joker@gentoo.org>2006-06-22 21:00:22 +0000
commit2ee643aaa9746c1487bd1df88e041d0a7324bc56 (patch)
tree2dc3e5a5802e9aefab6b525f41f54bae35f3bb5d /media-libs/dumb
parentAdded pmount to use.mask for bug #136866. (diff)
downloadgentoo-2-2ee643aaa9746c1487bd1df88e041d0a7324bc56.tar.gz
gentoo-2-2ee643aaa9746c1487bd1df88e041d0a7324bc56.tar.bz2
gentoo-2-2ee643aaa9746c1487bd1df88e041d0a7324bc56.zip
Remove the -s LDFLAGS to prevent striping at link time (#137591)
(Portage version: 2.1)
Diffstat (limited to 'media-libs/dumb')
-rw-r--r--media-libs/dumb/ChangeLog7
-rw-r--r--media-libs/dumb/dumb-0.9.3.ebuild7
2 files changed, 10 insertions, 4 deletions
diff --git a/media-libs/dumb/ChangeLog b/media-libs/dumb/ChangeLog
index 64bd5353adaa..ae39ca90e281 100644
--- a/media-libs/dumb/ChangeLog
+++ b/media-libs/dumb/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/dumb
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/dumb/ChangeLog,v 1.21 2006/06/06 19:03:33 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/dumb/ChangeLog,v 1.22 2006/06/22 21:00:22 joker Exp $
+
+ 22 Jun 2006; Christian Birchinger <joker@gentoo.org> dumb-0.9.3.ebuild:
+ Remove the -s LDFLAGS to prevent striping at link time (#137591)
+ with a patch provided by Tristan Heaven <tristanheaven@gmail.com>.
+ It hardly affects current users so no revision bump done.
06 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org> dumb-0.9.3.ebuild:
ppc stable, bug #134990
diff --git a/media-libs/dumb/dumb-0.9.3.ebuild b/media-libs/dumb/dumb-0.9.3.ebuild
index 2b7e93c7b792..132b8d4ef07f 100644
--- a/media-libs/dumb/dumb-0.9.3.ebuild
+++ b/media-libs/dumb/dumb-0.9.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/dumb/dumb-0.9.3.ebuild,v 1.6 2006/06/06 19:03:33 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/dumb/dumb-0.9.3.ebuild,v 1.7 2006/06/22 21:00:22 joker Exp $
IUSE="debug"
@@ -18,14 +18,15 @@ DEPEND=""
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
cat << EOF > make/config.txt
include make/unix.inc
ALL_TARGETS := core core-examples core-headers
PREFIX := /usr
EOF
- epatch ${FILESDIR}/${PN}-0.9.2-PIC.patch
+ epatch "${FILESDIR}"/${PN}-0.9.2-PIC.patch
+ sed -i '/= -s/d' Makefile || die "sed failed"
cp Makefile Makefile.rdy
}