blob: 30819288b1127b5210e591fce65d860bc75db936 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-sndfile/xmms-sndfile-1.2.ebuild,v 1.13 2005/03/19 19:45:28 kloeri Exp $
MY_PN=${PN/-/_}
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Xmms_sndfile is a libsndfile plugin for XMMS"
HOMEPAGE="http://www.mega-nerd.com/xmms_sndfile/"
SRC_URI="http://www.mega-nerd.com/xmms_sndfile/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 sparc x86"
IUSE=""
RDEPEND="media-libs/libsndfile
media-sound/xmms"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_install() {
make DESTDIR="${D}" libdir="$(xmms-config --input-plugin-dir)" install || die
dodoc AUTHORS NEWS README ChangeLog TODO
}
|