blob: ca271589f96b89be54d11c5d0f04274360ea6d6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# 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.7-r1.ebuild,v 1.2 2003/06/12 20:29:57 msterret Exp $
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"
RDEPEND=""
inherit eutils
src_unpack() {
unpack ${P}-src.tar.gz ; cd ${S}
epatch ${FILESDIR}/${P}-qmakespec.patch
epatch ${FILESDIR}/${P}-configperms.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 <rac@gentoo.org> 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;
econf || 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
}
|