diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-05 08:55:58 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-05 08:55:58 +0000 |
commit | 3e51ae1efd02e30d9bbbd535a54ade5007ab976b (patch) | |
tree | 4eb0c64533c975c4061d848675e956822a01f3dd /media-libs/daaplib | |
parent | Added to ~amd64. (Manifest recommit) (diff) | |
download | gentoo-2-3e51ae1efd02e30d9bbbd535a54ade5007ab976b.tar.gz gentoo-2-3e51ae1efd02e30d9bbbd535a54ade5007ab976b.tar.bz2 gentoo-2-3e51ae1efd02e30d9bbbd535a54ade5007ab976b.zip |
multilib support.
Diffstat (limited to 'media-libs/daaplib')
-rw-r--r-- | media-libs/daaplib/ChangeLog | 4 | ||||
-rw-r--r-- | media-libs/daaplib/daaplib-0.1.1a.ebuild | 9 |
2 files changed, 8 insertions, 5 deletions
diff --git a/media-libs/daaplib/ChangeLog b/media-libs/daaplib/ChangeLog index 0ded77f36c61..7e917bb7ef16 100644 --- a/media-libs/daaplib/ChangeLog +++ b/media-libs/daaplib/ChangeLog @@ -1,10 +1,10 @@ # ChangeLog for media-libs/daaplib # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/daaplib/ChangeLog,v 1.6 2004/10/05 08:50:54 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/daaplib/ChangeLog,v 1.7 2004/10/05 08:55:58 eradicator Exp $ 05 Oct 2004; Jeremy Huddleston <eradicator@gentoo.org> daaplib-0.1.1a.ebuild: - Added to ~amd64. + Added to ~amd64. get_libdir fixups. 25 Apr 2004; Jeremy Huddleston <eradicator@gentoo.org> daaplib-0.1.1a.ebuild: diff --git a/media-libs/daaplib/daaplib-0.1.1a.ebuild b/media-libs/daaplib/daaplib-0.1.1a.ebuild index 3450f06a2b37..5ffc6d7b9dc7 100644 --- a/media-libs/daaplib/daaplib-0.1.1a.ebuild +++ b/media-libs/daaplib/daaplib-0.1.1a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/daaplib/daaplib-0.1.1a.ebuild,v 1.6 2004/10/05 08:50:54 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/daaplib/daaplib-0.1.1a.ebuild,v 1.7 2004/10/05 08:55:58 eradicator Exp $ IUSE="static" @@ -33,8 +33,11 @@ src_compile() { } src_install() { - make DESTDIR="${D}" PREFIX=/usr install - use static || rm ${D}/usr/lib/libdaaplib.a + make DESTDIR="${D}" \ + PREFIX="/usr" \ + LIBDEPLOY="/usr/$(get_libdir)" install || die + + use static || rm ${D}/usr/$(get_libdir)/libdaaplib.a dodoc ../../COPYING ../../README } |