You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
932 B

# Copyright 1999-2014 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-r2.ebuild,v 1.3 2014/08/10 21:26:08 slyfox Exp $
EAPI="3"
inherit eutils multilib toolchain-funcs
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="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="
dev-lang/tcl
virtual/mysql"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${PN}
src_prepare() {
find . -type f -exec chmod 644 '{}' \; || die
epatch \
"${FILESDIR}"/fix-const.patch \
"${FILESDIR}"/ldflags.patch
tc-export CXX
}
src_install() {
exeinto /usr/$(get_libdir)/${P}
doexe sql.so || die
dodoc CHANGES.txt CODE_DESCRIPTION.txt docs/sample.full.txt docs/sample.simple.txt || die
dohtml README.html docs/api.html || die
}