blob: 8c2b20d134ab209f70e3ff2e1374383247745142 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/koverartist/koverartist-0.5.ebuild,v 1.8 2007/12/22 11:32:30 armin76 Exp $
inherit kde eutils
S=${WORKDIR}/${PN}
DESCRIPTION="Koverartist is a KDE program for fast creation of covers for cd/dvd cases and boxes."
HOMEPAGE="http://www.kde-apps.org/content/show.php?content=38195"
SRC_URI="http://members.inode.at/499177/software/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="cddb"
DEPEND="!app-cdr/kover
cddb? ( || ( ( kde-base/libkcddb kde-base/kdemultimedia-kioslaves )
kde-base/kdemultimedia ) )"
need-kde 3.3
src_compile() {
if ! use cddb ; then
myconf="$myconf --without-audiocd"
fi
kde_src_compile
}
|