blob: 12157d727b00859808becac7a1bc33145d74b4c6 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cantus/cantus-1.07.ebuild,v 1.12 2005/12/26 14:45:22 lu_zero Exp $
DESCRIPTION="easy to use tool for tagging and renaming MP3 and OGG/Vorbis files"
HOMEPAGE="http://software.manicsadness.com/?site=project&project=3"
SRC_URI="http://sam.homeunix.com/software.manicsadness.com-step3/releases/cantus/${P}-1.tar.gz"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="x86 amd64"
IUSE="vorbis"
DEPEND="vorbis? ( media-libs/libvorbis )
gnome-base/libgnome
=x11-libs/gtk+-1.2*"
src_compile() {
econf || die "configure failed"
make || die "make failed"
}
src_install() {
einstall || die "Install failed"
}
|