blob: c2c9aecc4a81abfb1cbd658b27ac0b1d815d79a0 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/gtkcdlabel/gtkcdlabel-1.0_pre3.ebuild,v 1.2 2004/03/12 12:02:37 mr_bones_ Exp $
MY_P=${P/_}
DESCRIPTION="A GTK+ frontend to cdlabelgen for easy and fast cd cover creation"
HOMEPAGE="http://gtkcdlabel.sourceforge.net/"
SRC_URI="mirror://sourceforge/gtkcdlabel/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
RDEPEND=">=app-cdr/cdlabelgen-2.3.0
>=media-libs/libcdaudio-0.99.6
>=x11-libs/gtk+-2
>=dev-util/glade-2
>=gnome-base/libgnomeui-2*"
S=${WORKDIR}/${MY_P}
src_compile() {
econf || die
emake || die "compile problem"
}
src_install() {
make DESTDIR=${D} install || die "install problem"
dodoc AUTHORS ChangeLog NEWS README
}
|