blob: 5c859d4f8b5be7da99d21a7c4917cbc29c8b94fe (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cantus/cantus-1.0.3.ebuild,v 1.2 2002/10/21 04:35:30 mjc Exp $
# comprehensive list of any and all USE flags leveraged in the build,
# with the exception of any ARCH specific flags, i.e. ppc sparc sparc64
# x86 alpha - this is a required variable
IUSE=""
DESCRIPTION="Cantus is an easy to use tool for tagging and renaming MP3 and OGG/Vorbis files. It has many features including mass tagging and renaming of MP3s, the ability to generate a tag out of the filename, filter definitions for renaming, recursive actions, CDDB (Freedb) lookup (no CD needed), copy between ID3V1 and ID3V2 tags, and a lot more."
HOMEPAGE="http://software.manicsadness.com/?site=project&project=1"
SRC_URI="http://sam.homeunix.com/software.manicsadness.com-step2/releases/cantus/cantus-1.03-1.tar.gz"
LICENSE="gpl"
SLOT="0"
KEYWORDS="~x86"
DEPEND="vorbis? media-libs/libvorbis
vorbis? media-libs/libogg"
RDEPEND="$DEPEND"
S="${WORKDIR}/${PN}-1.03"
src_compile() {
cd ${S}
econf || die "configure failed"
make || die "make failed"
}
src_install() {
einstall || die "Install failed"
}
|