blob: 3055590bc560c26e442a5378a54a5f613b59d3bd (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3butler/mp3butler-1.2.ebuild,v 1.7 2004/07/13 08:01:17 eradicator Exp $
IUSE=""
MY_P="${PN/mp3}-${PV}"
DESCRIPTION="Tool for organizing MP3 Collections"
SRC_URI="http://illuzionz.org/pub/mp3butler/${MY_P}.tar.gz"
HOMEPAGE="http://babblica.net/mp3butler"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc ~amd64"
DEPEND="media-sound/id3"
S=${WORKDIR}/${MY_P}
src_compile () {
cd ${S}
./mkdocs
}
src_install () {
insinto ${D}
dobin albumbutler.pl mp3butler.pl minibutler.pl
doman mp3butler.1.gz
dodoc sample.butlerrc
dodoc AUTHORS COPYING ChangeLog RANT README
}
|