diff options
author | Hannes Mehnert <hannes@gentoo.org> | 2002-10-24 20:41:08 +0000 |
---|---|---|
committer | Hannes Mehnert <hannes@gentoo.org> | 2002-10-24 20:41:08 +0000 |
commit | d5c4236cf50b9073bf3ed4675eb06db143fe91e8 (patch) | |
tree | 3323af74d494399eb20d89a5a2312b9354bdf6a7 /dev-db/mysqlnavigator | |
parent | rc5 is out (diff) | |
download | gentoo-2-d5c4236cf50b9073bf3ed4675eb06db143fe91e8.tar.gz gentoo-2-d5c4236cf50b9073bf3ed4675eb06db143fe91e8.tar.bz2 gentoo-2-d5c4236cf50b9073bf3ed4675eb06db143fe91e8.zip |
initial ebuild
Diffstat (limited to 'dev-db/mysqlnavigator')
-rw-r--r-- | dev-db/mysqlnavigator/ChangeLog | 9 | ||||
-rw-r--r-- | dev-db/mysqlnavigator/files/digest-mysqlnavigator-1.4.1 | 1 | ||||
-rw-r--r-- | dev-db/mysqlnavigator/mysqlnavigator-1.4.1.ebuild | 25 |
3 files changed, 35 insertions, 0 deletions
diff --git a/dev-db/mysqlnavigator/ChangeLog b/dev-db/mysqlnavigator/ChangeLog new file mode 100644 index 000000000000..ed67fa3fe6db --- /dev/null +++ b/dev-db/mysqlnavigator/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-db/mysqlnavigator +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysqlnavigator/ChangeLog,v 1.1 2002/10/24 20:41:08 hannes Exp $ + +*mysqlnavigator-1.4.1 (24 Oct 2002) + + 24 Oct 2002; Hannes Mehnert <hannes@gentoo.org> mysqlnavigator-1.4.1.ebuild, + ChangeLog: Initial ebuild. Thanks to malverian@hotmail.com (Philip Walls) + and max@endesis.com (Max Meschia) for submission (#7014 and #8996). diff --git a/dev-db/mysqlnavigator/files/digest-mysqlnavigator-1.4.1 b/dev-db/mysqlnavigator/files/digest-mysqlnavigator-1.4.1 new file mode 100644 index 000000000000..786d92b9bfc9 --- /dev/null +++ b/dev-db/mysqlnavigator/files/digest-mysqlnavigator-1.4.1 @@ -0,0 +1 @@ +MD5 3a315f00985db8ea224a16c1032d1511 mysqlnavigator-1.4.1.tar.gz 844298 diff --git a/dev-db/mysqlnavigator/mysqlnavigator-1.4.1.ebuild b/dev-db/mysqlnavigator/mysqlnavigator-1.4.1.ebuild new file mode 100644 index 000000000000..cf6c4c23dab4 --- /dev/null +++ b/dev-db/mysqlnavigator/mysqlnavigator-1.4.1.ebuild @@ -0,0 +1,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 +} |