summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2001-02-03 04:58:56 +0000
committerDaniel Robbins <drobbins@gentoo.org>2001-02-03 04:58:56 +0000
commitd0efb8a7bb822163f2ac8396fd5768910850f980 (patch)
treebca685ff60fa0699d9e554d0eb637f958491e574 /media-sound/xmms-shn
parent*** empty log message *** (diff)
downloadhistorical-d0efb8a7bb822163f2ac8396fd5768910850f980.tar.gz
historical-d0efb8a7bb822163f2ac8396fd5768910850f980.tar.bz2
historical-d0efb8a7bb822163f2ac8396fd5768910850f980.zip
new pkg
Diffstat (limited to 'media-sound/xmms-shn')
-rw-r--r--media-sound/xmms-shn/xmms-shn-2.2.3.ebuild11
1 files changed, 5 insertions, 6 deletions
diff --git a/media-sound/xmms-shn/xmms-shn-2.2.3.ebuild b/media-sound/xmms-shn/xmms-shn-2.2.3.ebuild
index 3a0b5b993867..f8f39acbd196 100644
--- a/media-sound/xmms-shn/xmms-shn-2.2.3.ebuild
+++ b/media-sound/xmms-shn/xmms-shn-2.2.3.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Daniel Robbins <drobbins@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xmms-shn/xmms-shn-2.2.3.ebuild,v 1.1 2001/02/03 04:15:51 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xmms-shn/xmms-shn-2.2.3.ebuild,v 1.2 2001/02/03 04:58:56 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="This input plugin allows xmms to play .shn compressed (lossless) files"
@@ -14,19 +14,18 @@ src_unpack() {
}
src_compile() {
- local myconf
if [ "`use gnome`" ]
then
- myconf="--prefix=/opt/gnome"
+ echo /opt/gnome > ${T}/mydest
else
- myconf="--prefix=/usr/X11R6"
+ echo /usr/X11R6 > ${T}/mydest
fi
- try ./configure $myconf --host=${CHOST}
+ try ./configure --prefix=`cat ${T}/mydest` --host=${CHOST}
try make
}
src_install() {
- try make DESTDIR=${D} install
+ try make DESTDIR=${D} libdir=`cat ${T}/mydest`/lib/xmms/Input install
dodoc AUTHORS COPYING NEWS README
}