diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-12-14 23:25:51 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-12-14 23:25:51 +0000 |
commit | d3efc99647d1dd129619597baf7acfe23f3b49b0 (patch) | |
tree | 7506f1614895179fec31db8b6a5b6664a40c513d /dev-db | |
parent | New version. x86 masked (diff) | |
download | gentoo-2-d3efc99647d1dd129619597baf7acfe23f3b49b0.tar.gz gentoo-2-d3efc99647d1dd129619597baf7acfe23f3b49b0.tar.bz2 gentoo-2-d3efc99647d1dd129619597baf7acfe23f3b49b0.zip |
New version. Fixes #12093
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/mysqlcc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-db/mysqlcc/files/digest-mysqlcc-0.8.7 | 1 | ||||
-rw-r--r-- | dev-db/mysqlcc/mysqlcc-0.8.7.ebuild | 45 |
3 files changed, 52 insertions, 1 deletions
diff --git a/dev-db/mysqlcc/ChangeLog b/dev-db/mysqlcc/ChangeLog index b7921bbb09b7..16661233f65b 100644 --- a/dev-db/mysqlcc/ChangeLog +++ b/dev-db/mysqlcc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/mysqlcc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysqlcc/ChangeLog,v 1.1 2002/12/05 00:37:04 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysqlcc/ChangeLog,v 1.2 2002/12/14 23:25:51 rphillips Exp $ + +*mysqlcc-0.8.7 (14 Dec 2002) + + 14 Dec 2002; Ryan Phillips <rphillips@gentoo.org> mysqlcc-0.8.7.ebuild : + New version. Submitted by Quequero *mysqlcc-0.8.6a (17 Nov 2002) diff --git a/dev-db/mysqlcc/files/digest-mysqlcc-0.8.7 b/dev-db/mysqlcc/files/digest-mysqlcc-0.8.7 new file mode 100644 index 000000000000..1ae841bca8d1 --- /dev/null +++ b/dev-db/mysqlcc/files/digest-mysqlcc-0.8.7 @@ -0,0 +1 @@ +MD5 f6069be95adbf5049e9088610eed8c2e mysqlcc-0.8.7-src.tar.gz 404997 diff --git a/dev-db/mysqlcc/mysqlcc-0.8.7.ebuild b/dev-db/mysqlcc/mysqlcc-0.8.7.ebuild new file mode 100644 index 000000000000..a5c78f70eeb8 --- /dev/null +++ b/dev-db/mysqlcc/mysqlcc-0.8.7.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +S=${WORKDIR}/${P}-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/${P}-src.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="X qt" +DEPEND="virtual/glibc + >=x11-libs/qt-3.0.5 + dev-db/mysql" +RDEPEND="" + +src_unpack() { + unpack ${P}-src.tar.gz ; cd ${S} +} + +src_compile() { + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + + cp Makefile Makefile.orig + sed -e "s:CFLAGS = -pipe -Wall -W -g:CFLAGS = ${CFLAGS}:" \ + -e "s:CXXFLAGS = -pipe -Wall -W -g:CXXFLAGS = ${CXXFLAGS}:" \ + Makefile.orig > Makefile + + 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 +} |