diff options
author | Mamoru Komachi <usata@gentoo.org> | 2006-12-30 12:22:08 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2006-12-30 12:22:08 +0000 |
commit | a0eb085265a327572402db6a9bb6583cf4646506 (patch) | |
tree | b378d36d828253e0f788147dcf473b450c042308 /media-libs/vflib | |
parent | Create mutlilib dirs and symlinks. (diff) | |
download | gentoo-2-a0eb085265a327572402db6a9bb6583cf4646506.tar.gz gentoo-2-a0eb085265a327572402db6a9bb6583cf4646506.tar.bz2 gentoo-2-a0eb085265a327572402db6a9bb6583cf4646506.zip |
Avoid hardcoded libdir; bug #119140
(Portage version: 2.1.1-r2)
Diffstat (limited to 'media-libs/vflib')
-rw-r--r-- | media-libs/vflib/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/vflib/vflib-3.6.14.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/media-libs/vflib/ChangeLog b/media-libs/vflib/ChangeLog index 9aad9fd72cc8..d8cebd06a4a2 100644 --- a/media-libs/vflib/ChangeLog +++ b/media-libs/vflib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/vflib # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/vflib/ChangeLog,v 1.7 2006/11/04 18:06:12 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/vflib/ChangeLog,v 1.8 2006/12/30 12:22:08 usata Exp $ + + 30 Dec 2006; Mamoru KOMACHI <usata@gentoo.org> vflib-3.6.14.ebuild: + Avoid hardcoded libdir; bug #119140. *vflib-3.6.14 (04 Nov 2006) diff --git a/media-libs/vflib/vflib-3.6.14.ebuild b/media-libs/vflib/vflib-3.6.14.ebuild index a9161ac970ef..e4cb99110bbf 100644 --- a/media-libs/vflib/vflib-3.6.14.ebuild +++ b/media-libs/vflib/vflib-3.6.14.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/vflib/vflib-3.6.14.ebuild,v 1.1 2006/11/04 18:06:12 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/vflib/vflib-3.6.14.ebuild,v 1.2 2006/12/30 12:22:08 usata Exp $ inherit libtool eutils @@ -53,13 +53,13 @@ src_compile () { econf \ --with-kpathsea \ --with-kpathsea-include=/usr/include \ - --with-kpathsea-libdir=/usr/lib \ + --with-kpathsea-libdir=/usr/$(get_libdir) \ --with-freetype \ --with-freetype-includedir=/usr/include/freetype \ - --with-freetype-libdir=/usr/lib \ + --with-freetype-libdir=/usr/$(get_libdir) \ --with-t1lib \ --with-t1lib-includedir=/usr/include \ - --with-t1lib-libdir=/usr/lib || die + --with-t1lib-libdir=/usr/$(get_libdir) || die emake -j1 \ CDEBUGFLAGS="${CFLAGS}" \ |