blob: 11ce9b34f5d3e7bb800a33c7345e665f541b19fe (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlguipart/sqlguipart-0.4.ebuild,v 1.1 2002/08/21 20:02:21 danarmak Exp $
inherit kde-base
need-kde 3
newdepend ">=dev-db/mysql-3.23.38 >=kde-base/kdebase-3"
DESCRIPTION="kpart for administering a mysql db. dev-db/sqlgui is a gui for it."
SRC_URI="http://www.sqlgui.de/download/sqlgui-0.4.0.tar.gz"
HOMEPAGE="http://www.sqlgui.de/"
LICENSE="GPL-2"
KEYWORDS="x86"
S=$WORKDIR/sqlgui-0.4.0/$P
myconf="$myconf --with-extra-includes=/usr/include/mysql"
src_unpack() {
cd $WORKDIR
unpack sqlgui-0.4.0.tar.gz
cd sqlgui-0.4.0
tar -xvzpf $P.tar.gz
cd $S
patch -p0 < $FILESDIR/$P-gcc3.diff
patch -p0 < $FILESDIR/$P-gentoo.diff
need-autoconf 2.1
make -f Makefile.dist
need-autoconf 2.5
}
|