blob: 0b414f85c4f7da5d302f30be19bc31de36cc5932 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-find/xmms-find-0.5.1.ebuild,v 1.4 2006/05/19 17:57:06 corsair Exp $
inherit eutils
IUSE=""
MY_P=${PN/-/}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="An xmms plugin to allow regexp searching, enqueuing and playing of files"
HOMEPAGE="http://xmmsfind.sourceforge.net/"
SRC_URI="mirror://sourceforge/xmmsfind/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 sparc x86"
DEPEND=">=media-sound/xmms-1.2.8"
src_unpack() {
unpack ${A}
}
src_compile() {
emake || die "emake failed"
}
src_install() {
plugin_install_dir="${D}$(xmms-config --general-plugin-dir)"
make \
PLUGIN_INSTALL_DIR=${plugin_install_dir} \
REMOTE_INSTALL_DIR=${D}usr/bin install || die "install failed"
dodoc BUGS COPYING INSTALL README TODO VERSION
}
|