# Copyright 1999-2003 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.10-r1.ebuild,v 1.3 2003/03/09 19:47:23 rac Exp $ inherit eutils S=${WORKDIR}/${P}-src DESCRIPTION="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-4.0.0" RDEPEND="" src_unpack() { unpack ${A} cd ${S}; epatch ${FILESDIR}/${P}-qmakespec.patch cd ${S}; epatch ${FILESDIR}/${P}-libmysqlclientac.patch } src_compile() { # The config.sub in this distribution appears to be very stale # so we replace it with one from a known better source. I am # not attached to using 1.4, but it seemed like it had the best # chance of compatibility. # Robert Coie 2003.03.03 if [ -e /usr/share/automake-1.4/config.sub ]; then cp /usr/share/automake-1.4/config.sub ${S} fi cd ${S}; autoreconf -f; if [ "`use ssl`" ]; then SUBLIBS="${SUBLIBS} -lssl" echo "libs now ${SUBLIBS}" fi QMAKESPEC="linux-g++" LIBS=${LIBS} econf --with-qt=${QTDIR} || die 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 }