blob: f1f163b19198daad7cb94957523c0814fc9baf2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/dev-util/kdbg/kdbg-1.2.2.ebuild,v 1.2 2001/11/10 12:45:09 hallski Exp $
. /usr/portage/eclass/inherit.eclass || die
inherit kde-base || die
DESCRIPTION="A Graphical Debugger Interface to gdb"
SRC_URI="http://prdownloads.sourceforge.net/kdbg/${P}.tar.gz"
HOMEPAGE="http://members.nextra.at/johsixt/kdbg.html"
DEPEND="$DEPEND >=kde-base/kdelibs-2.0.1"
RDEPEND="$RDEPEND >=kde-base/kdelibs-2.0.1"
src_compile() {
kde_src_compile myconf
myconf="$myconf --with-kde-version=2"
kde_src_compile configure make
}
|