summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2005-02-12 00:45:26 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2005-02-12 00:45:26 +0000
commitda739d0f11903a9150c268ce17468248871fa59e (patch)
treead5f02db80e49c22eb199202309fd6c165209983 /eclass
parentpunt macos cruft (diff)
downloadhistorical-da739d0f11903a9150c268ce17468248871fa59e.tar.gz
historical-da739d0f11903a9150c268ce17468248871fa59e.tar.bz2
historical-da739d0f11903a9150c268ce17468248871fa59e.zip
Typo fix
Diffstat (limited to 'eclass')
-rw-r--r--eclass/xmms-plugin.eclass8
1 files changed, 3 insertions, 5 deletions
diff --git a/eclass/xmms-plugin.eclass b/eclass/xmms-plugin.eclass
index 2ce0c28e5332..ebe703298857 100644
--- a/eclass/xmms-plugin.eclass
+++ b/eclass/xmms-plugin.eclass
@@ -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/eclass/xmms-plugin.eclass,v 1.12 2005/02/12 00:31:09 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/xmms-plugin.eclass,v 1.13 2005/02/12 00:45:26 eradicator Exp $
#
# Jeremy Huddleston <eradicator@gentoo.org>
@@ -23,7 +23,7 @@
# Example:
# SONAME="libmpg123.so"
-inherit eutils multilib
+inherit eutils
ECLASS=xmms-plugin
INHERITED="${INHERITED} ${ECLASS}"
@@ -60,7 +60,7 @@ xmms-plugin_src_unpack() {
libtoolize --force --copy || die "libtoolize --force --copy failed"
[[ ! -f ltmain.sh ]] && ln -s ../ltmain.sh
- aclocal -I ${PATCHDIR}/m4 || die "aclocal failed"
+ aclocal -I ${WORKDIR}/patches/m4 || die "aclocal failed"
autoheader || die "autoheader failed"
automake --gnu --add-missing --include-deps --force-missing --copy || die "automake failed"
autoconf || die "autoconf failed"
@@ -84,8 +84,6 @@ xmms-plugin_src_compile() {
xmms-plugin_src_install() {
cd ${S}/${PLUGIN_PATH}
make DESTDIR="${D}" install || die
-# exeinto $(xmms-config --plugin-dir)"/"${PLUGIN_PATH%%/*}
-# doexe ${SONAME} || die
}
EXPORT_FUNCTIONS src_unpack src_compile src_install