blob: 5a1b0e78853f680da9ee868cc42f2833d913ac60 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Xmms-Perl/Xmms-Perl-0.12.ebuild,v 1.4 2004/05/04 21:16:25 kugelfang Exp $
inherit perl-module eutils
DESCRIPTION="A Perl extension interface to XMMS"
HOMEPAGE="http://www.cpan.org/modules/by-module/Xmms/${P}.readme"
SRC_URI="http://www.cpan.org/modules/by-module/Xmms/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha ~amd64"
DEPEND="media-sound/xmms
dev-perl/MP3-Info
dev-perl/Term-ReadLine-Perl"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
# MPEG::MP3Info was renamed to MP3::Info
epatch ${FILESDIR}/Xmms-Perl-0.12-MP3Info.diff
}
|