diff options
author | 2001-09-11 18:50:23 +0000 | |
---|---|---|
committer | 2001-09-11 18:50:23 +0000 | |
commit | 1729558f3ea145a07ba385d84ed228059d0ce198 (patch) | |
tree | 79345444e35a5690646eb774ea24880d05b0ffea /dev-db/xmysqladmin | |
parent | launched emacs script (diff) | |
download | historical-1729558f3ea145a07ba385d84ed228059d0ce198.tar.gz historical-1729558f3ea145a07ba385d84ed228059d0ce198.tar.bz2 historical-1729558f3ea145a07ba385d84ed228059d0ce198.zip |
xforms based mysql admin tool
Diffstat (limited to 'dev-db/xmysqladmin')
-rw-r--r-- | dev-db/xmysqladmin/files/digest-xmysqladmin-1.0 | 1 | ||||
-rw-r--r-- | dev-db/xmysqladmin/xmysqladmin-1.0.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-db/xmysqladmin/files/digest-xmysqladmin-1.0 b/dev-db/xmysqladmin/files/digest-xmysqladmin-1.0 new file mode 100644 index 000000000000..b6300cadc623 --- /dev/null +++ b/dev-db/xmysqladmin/files/digest-xmysqladmin-1.0 @@ -0,0 +1 @@ +MD5 d02b7e52d034f2f41b6f43ced3cb8e21 xmysqladmin-1.0.tar.gz diff --git a/dev-db/xmysqladmin/xmysqladmin-1.0.ebuild b/dev-db/xmysqladmin/xmysqladmin-1.0.ebuild new file mode 100644 index 000000000000..3b260fcc2418 --- /dev/null +++ b/dev-db/xmysqladmin/xmysqladmin-1.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ben Lutgens <lamer@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-db/xmysqladmin/xmysqladmin-1.0.ebuild,v 1.1 2001/09/11 18:50:23 lamer Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="xforms based front end to mysql" +SRC_URI="ftp://ftp.mysql.com/Contrib/${P}.tar.gz" +HOMEPAGE="http://www.mysql.org" +DEPEND="virtual/x11 + >=x11-libs/xforms-089" + +#RDEPEND="" + +src_unpack() { + unpack ${A} + cd ${S} + sed -e 's:^INSTALLPATH.*:INSTALLPATH = /usr/bin:g' -e \ + 's:^PIXMAPPATH.*:PIXMAPPATH = /usr/share/pixmaps:g' -e \ + 's:^MYSQLINC.*:MYSQLINC = -I/usr/include/mysql:g' -e \ + 's:^MYSQLDBDIR.*:MYSQLDBDIR = -DMYSQLDBDIR=\\\"/var/mysql\\\":g' -e \ + 's:^MYSQLLOAD.*:MYSQLLOAD = \-Wl\,\-R/usr/lib/mysql \-L/usr/lib/mysql \-lmysqlclient:g' -e \ + 's:\./$(PROGRAM)::g' Makefile > Makefile.gentoo +} + +src_compile() { + + make -f Makefile.gentoo || die +} + +src_install () { + + dodir /usr/bin + dodir /usr/share/pixmaps + try make INSTALLPATH=${D}/usr/bin PIXMAPPATH=${D}/usr/share/pixmaps install + dodoc README INSTALL CHANGES ANNOUNCE TODO +} + |