summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2010-05-28 23:00:54 +0000
committerJustin Lecher <jlec@gentoo.org>2010-05-28 23:00:54 +0000
commit4abb0ecdb0d2e178c01579363401548bdbb41e44 (patch)
tree8ad88714d764fe6c9c4b4b3d4454c4f76a2a5f12 /dev-tcltk/tclperl
parentUpdate libattica deps - bug 314539, add mimetypes patch - bug 261446 (no revb... (diff)
downloadhistorical-4abb0ecdb0d2e178c01579363401548bdbb41e44.tar.gz
historical-4abb0ecdb0d2e178c01579363401548bdbb41e44.tar.bz2
historical-4abb0ecdb0d2e178c01579363401548bdbb41e44.zip
Added missing LDFLAGS #247189
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'dev-tcltk/tclperl')
-rw-r--r--dev-tcltk/tclperl/ChangeLog7
-rw-r--r--dev-tcltk/tclperl/tclperl-3.2.ebuild6
2 files changed, 8 insertions, 5 deletions
diff --git a/dev-tcltk/tclperl/ChangeLog b/dev-tcltk/tclperl/ChangeLog
index 94ab2f375b34..768aaadbdf57 100644
--- a/dev-tcltk/tclperl/ChangeLog
+++ b/dev-tcltk/tclperl/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/tclperl
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclperl/ChangeLog,v 1.7 2007/05/01 23:43:09 matsuu Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclperl/ChangeLog,v 1.8 2010/05/28 23:00:54 jlec Exp $
+
+ 28 May 2010; Justin Lecher <jlec@gentoo.org> tclperl-3.2.ebuild:
+ Added missing LDFLAGS #247189
*tclperl-3.2 (01 May 2007)
diff --git a/dev-tcltk/tclperl/tclperl-3.2.ebuild b/dev-tcltk/tclperl/tclperl-3.2.ebuild
index 914899c6039c..a698565074a0 100644
--- a/dev-tcltk/tclperl/tclperl-3.2.ebuild
+++ b/dev-tcltk/tclperl/tclperl-3.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclperl/tclperl-3.2.ebuild,v 1.1 2007/05/01 23:43:09 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclperl/tclperl-3.2.ebuild,v 1.2 2010/05/28 23:00:54 jlec Exp $
inherit flag-o-matic multilib toolchain-funcs
@@ -23,7 +23,7 @@ src_compile() {
perl Makefile.PL || die
make OPTIMIZE="${CFLAGS}" Tcl.o || die
- $(tc-getCC) -shared ${CFLAGS} -o tclperl.so.${PV} -DUSE_TCL_STUBS \
+ $(tc-getCC) -shared ${LDFLAGS} ${CFLAGS} -o tclperl.so.${PV} -DUSE_TCL_STUBS \
tclperl.c tclthread.c `perl -MExtUtils::Embed -e ccopts -e ldopts` \
/usr/$(get_libdir)/libtclstub`echo 'puts $tcl_version' | tclsh`.a Tcl.o || die
}