blob: c4a96e1fae3c2b3f2bbe287939a5c3ebddf3681b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/gmyclient/gmyclient-0.3.ebuild,v 1.12 2004/12/05 01:11:40 dragonheart Exp $
inherit eutils
DESCRIPTION="Gnome based mysql client"
SRC_URI="http://${PN}.sourceforge.net/download/${P}.tar.gz"
HOMEPAGE="http://gmyclient.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE="nls"
DEPEND=">=gnome-base/gnome-libs-1.2
>=dev-db/mysql-3
=gnome-base/libglade-0*"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-fix.patch || die "patch failed"
}
src_compile() {
econf `use_enable nls` || die "econf failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die "installed failed"
dodoc AUTHORS COPYING README
mv ${D}/usr/share/gmyclient/doc ${D}/usr/share/doc/${PF}/html
}
|