blob: a2bb59b0ce7cd3dd43810347d57e88c23bf11b0b (
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
31
32
33
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/kiso/kiso-0.6.ebuild,v 1.1 2004/09/19 18:22:06 caleb Exp $
inherit kde
DEPEND="app-cdr/cdrtools
app-admin/sudo"
RDEPEND="dev-libs/libcdio"
need-kde 3.2
RESTRICT="nomirror"
DESCRIPTION="KIso is a fronted for KDE to make it as easy as possible to create manipulate and extract CD Image files."
HOMEPAGE="http://kiso.sourceforge.net/"
SRC_URI="mirror://sourceforge/kiso/kiso-${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64 ~ppc"
SLOT="0"
IUSE=""
src_compile() {
addwrite $QTDIR/etc/settings
econf || die
emake || die
}
src_install() {
addwrite $QTDIR/etc/settings
einstall || die
}
|