blob: 5ccbee62bb953f73b4135162a9f8c2cf2f4411c2 (
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 Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/kaptain/kaptain-0.71.ebuild,v 1.3 2004/06/23 20:47:54 dholm Exp $
inherit kde eutils
DESCRIPTION="A universal graphical front-end for command line programs"
HOMEPAGE="http://kaptain.sourceforge.net/"
SRC_URI="mirror://sourceforge/kaptain/kaptain-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~x86 ~ppc"
DEPEND=">=x11-libs/qt-2.3.1-r1"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-assert.patch
}
src_compile() {
econf || die "kaptain config failed."
emake || die
}
src_install() {
einstall datadir=${D}/usr/share || die
dodoc README ChangeLog TODO AUTHORS
}
|