summaryrefslogtreecommitdiff
blob: e52cc862b4a87d92607cff065cd9f4b39fb3f22e (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcl-sql/tcl-sql-20000114.ebuild,v 1.5 2007/07/15 03:37:38 mr_bones_ Exp $

inherit eutils

DESCRIPTION="A generic Tcl interface to SQL databases."
HOMEPAGE="http://www.parand.com/tcl-sql/"
SRC_URI="mirror://sourceforge/tcl-sql/${PN}-${PV}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""

DEPEND="dev-lang/tcl
	virtual/mysql"

S=${WORKDIR}/${PN}

src_unpack() {
	unpack ${A}
	cd ${S}

	chmod +w sql-mysql.cc
	epatch ${FILESDIR}/fix-const.patch
}

src_compile() {
	emake || die
}

src_install() {
	mkdir -p ${D}/usr/lib/tcl-sql
	cp sql.so ${D}/usr/lib/tcl-sql/libtcl-sql.so
	dodoc CHANGES.txt CODE_DESCRIPTION.txt LICENSE.txt docs/sample.full.txt docs/sample.simple.txt
	dohtml README.html docs/api.html
}