blob: 11f732e26685faa1ce52712b72a6a66764f236e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/mysqltcl/mysqltcl-3.02.ebuild,v 1.1 2006/06/04 02:49:37 matsuu Exp $
DESCRIPTION="TCL MySQL Interface"
HOMEPAGE="http://www.xdobry.de/mysqltcl/"
SRC_URI="http://www.xdobry.de/mysqltcl/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=dev-lang/tcl-8.1.0
>=dev-db/mysql-4.1"
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS COPYING README README-msqltcl ChangeLog
dohtml doc/mysqltcl.html
prepalldocs
}
|