blob: 2fdcc666c893c1c7a5ea5ef5e190f454d6ac5e9a (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.8 2004/04/25 23:33:28 agriffis Exp $
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_compile() {
econf `use_enable nls` || die "econf failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die "installed failed"
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
mv ${D}/usr/share/gmyclient/doc ${D}/usr/share/doc/${PF}/html
}
|