diff options
Diffstat (limited to 'dev-db/mysqlcc/mysqlcc-0.8.6a.ebuild')
-rw-r--r-- | dev-db/mysqlcc/mysqlcc-0.8.6a.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-db/mysqlcc/mysqlcc-0.8.6a.ebuild b/dev-db/mysqlcc/mysqlcc-0.8.6a.ebuild new file mode 100644 index 000000000000..3981119fa985 --- /dev/null +++ b/dev-db/mysqlcc/mysqlcc-0.8.6a.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysqlcc/mysqlcc-0.8.6a.ebuild,v 1.1 2002/12/05 00:37:04 rphillips Exp $ + +S=${WORKDIR}/${PN}-0.8.6a-src +DESCRIPTION="This is a MySQL GUI Client" +HOMEPAGE="http://www.mysql.com/" +SRC_URI="ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MyCC/${PN}-0.8.6a-src.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="X qt" +DEPEND="virtual/glibc + x11-libs/qt + dev-db/mysql" +RDEPEND="" + +src_unpack() { + unpack ${PN}-0.8.6a-src.tar.gz ; cd ${S} +} + +src_compile() { + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + QTDIR=$QTDIR + emake || die +} + +src_install() { + dobin mysqlcc + dodir /usr/share/mysqlcc + insinto /usr/share/mysqlcc + doins warning.wav information.wav error.wav syntax.txt + dodir /usr/share/mysqlcc/translations + insinto /usr/share/mysqlcc/translations + doins translations/Espanol.qm translations/Espanol.ts translations/Russian.qm translations/Russian.ts +} |