blob: 4abd1e4e1d4dd19bf496f900123a78d430a722d0 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/koverartist/koverartist-0.4.4.ebuild,v 1.3 2006/10/09 20:35:21 fuzzyray 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 ) )"
need-kde 3.3
src_compile() {
if ! use cddb ; then
myconf="$myconf --without-audiocd"
fi
kde_src_compile
}
|