blob: cf6c4c23dab484bad18a387a7d428d5943d13278 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysqlnavigator/mysqlnavigator-1.4.1.ebuild,v 1.1 2002/10/24 20:41:08 hannes Exp $
IUSE=""
DESCRIPTION="Advanced Qt based front end to mysql"
SRC_URI="http://sql.kldp.org/snapshots/source/${P}.tar.gz"
HOMEPAGE="http://sql.kldp.org/mysql"
SLOT="0"
LICENSE="GPL"
KEYWORDS="~x86"
DEPEND=">=dev-db/mysql-3.23.49
>=x11-libs/qt-3.0.3"
src_compile() {
myconf="--with-mysql-includes=/usr/include/mysql"
econf ${myconf}
emake
}
src_install() {
einstall
}
|