diff options
author | Nathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net> | 2011-06-27 04:22:57 +0000 |
---|---|---|
committer | Nathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net> | 2011-06-27 04:22:57 +0000 |
commit | 98fa2a711573dc182e415191d983eae4d6a50751 (patch) | |
tree | 406320314a95f4df11dc6383d0f82fe01366744a /dev-cpp | |
parent | dev-cpp/libcutl: Bump to libcutl-1.4.1 which uses autotools now instead of th... (diff) | |
download | sunrise-98fa2a711573dc182e415191d983eae4d6a50751.tar.gz sunrise-98fa2a711573dc182e415191d983eae4d6a50751.tar.bz2 sunrise-98fa2a711573dc182e415191d983eae4d6a50751.zip |
dev-cpp/cli: Respect LDFLAGS.
(Portage version: 2.2.0_alpha37-r1/svn/Linux x86_64)
svn path=/sunrise/; revision=12163
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/cli/ChangeLog | 8 | ||||
-rw-r--r-- | dev-cpp/cli/cli-1.1.0-r1.ebuild (renamed from dev-cpp/cli/cli-1.1.0.ebuild) | 12 |
2 files changed, 14 insertions, 6 deletions
diff --git a/dev-cpp/cli/ChangeLog b/dev-cpp/cli/ChangeLog index 59e66bac7..a247b18a5 100644 --- a/dev-cpp/cli/ChangeLog +++ b/dev-cpp/cli/ChangeLog @@ -1,7 +1,13 @@ # ChangeLog for dev-cpp/cli -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*cli-1.1.0-r1 (27 Jun 2011) + + 27 Jun 2011; Nathan Phillip Brink <binki@gentoo.org> -cli-1.1.0.ebuild, + +cli-1.1.0-r1.ebuild: + Respect LDFLAGS. + 04 Mar 2010; Nathan Phillip Brink (ohnobinki) <ohnobinki@ohnopublishing.net> +cli-1.1.0.ebuild, +metadata.xml: New ebuild for bug 301561, thanks to few, chiiph, hwoarang, et al. diff --git a/dev-cpp/cli/cli-1.1.0.ebuild b/dev-cpp/cli/cli-1.1.0-r1.ebuild index 5a3251336..cd480116a 100644 --- a/dev-cpp/cli/cli-1.1.0.ebuild +++ b/dev-cpp/cli/cli-1.1.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ @@ -24,10 +24,12 @@ src_configure() { mkdir -p build/cxx/gnu || die echo "cxx_id := gnu" > build/cxx/configuration-dynamic.make || die - cat <<EOF > build/cxx/gnu/configuration-dynamic.make || die -cxx_gnu := $(tc-getCXX) -cxx_gnu_libraries := /usr/$(get_libdir) -cxx_gnu_optimization_options := ${CXXFLAGS} + cat <<-EOF > build/cxx/gnu/configuration-dynamic.make || die + cxx_gnu := $(tc-getCXX) + cxx_gnu_libraries := /usr/$(get_libdir) + cxx_gnu_optimization_options := ${CXXFLAGS} + cxx_ld_extra_options := ${LDFLAGS} + cxx_pp_extra_options := ${CPPFLAGS} EOF echo "libcutl_installed := y" > build/import/libcutl/configuration-dynamic.make || die |