diff options
Diffstat (limited to 'x11-libs/fltk')
-rw-r--r-- | x11-libs/fltk/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/fltk/fltk-1.3.2.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/x11-libs/fltk/ChangeLog b/x11-libs/fltk/ChangeLog index 8ca919220150..92a1a78d9006 100644 --- a/x11-libs/fltk/ChangeLog +++ b/x11-libs/fltk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-libs/fltk # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/ChangeLog,v 1.227 2013/08/27 15:07:24 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/ChangeLog,v 1.228 2013/09/19 04:07:13 bicatali Exp $ + + 19 Sep 2013; SĂ©bastien Fabbro <bicatali@gentoo.org> fltk-1.3.2.ebuild: + Fix rpath linking for prefix (first time installs) 27 Aug 2013; Michael Palimaka <kensington@gentoo.org> fltk-1.3.0-r1.ebuild, fltk-1.3.1.ebuild, fltk-1.3.2.ebuild: diff --git a/x11-libs/fltk/fltk-1.3.2.ebuild b/x11-libs/fltk/fltk-1.3.2.ebuild index f941873f2513..429731788259 100644 --- a/x11-libs/fltk/fltk-1.3.2.ebuild +++ b/x11-libs/fltk/fltk-1.3.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.3.2.ebuild,v 1.2 2013/08/27 15:07:24 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.3.2.ebuild,v 1.3 2013/09/19 04:07:13 bicatali Exp $ EAPI=4 @@ -67,7 +67,7 @@ src_prepare() { sed -e "s/7/$(get_version_component_range 3)/" \ "${FILESDIR}"/FLTKConfig.cmake > CMake/FLTKConfig.cmake sed -e 's:-Os::g' -i configure.in || die - use prefix && append-ldflags -Wl,-rpath "${LIBDIR}" + use prefix && append-ldflags -Wl,-rpath -Wl,"${LIBDIR}" eautoconf } |