mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-22 22:28:03 +01:00
31 lines
757 B
Bash
31 lines
757 B
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# 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.14 2006/08/06 02:01:24 mcummings 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="mirror://cpan/authors/id/D/DO/DOUGM/${P}.tar.gz"
|
|
|
|
LICENSE="Artistic"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ia64 ppc sparc x86"
|
|
IUSE=""
|
|
|
|
DEPEND="media-sound/xmms
|
|
dev-perl/MP3-Info
|
|
dev-perl/Term-ReadLine-Perl
|
|
dev-lang/perl"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_unpack() {
|
|
unpack ${P}.tar.gz
|
|
|
|
cd ${S}
|
|
# MPEG::MP3Info was renamed to MP3::Info
|
|
epatch ${FILESDIR}/Xmms-Perl-0.12-MP3Info.diff
|
|
}
|
|
|
|
|