diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-06-05 06:51:11 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-06-05 06:51:11 +0000 |
commit | 967769e78a0ec892a6a2d91165ebe76b9ac42df1 (patch) | |
tree | 93e06d9b3785abf5e5e83d48b80f34ae2e26c5d7 /dev-tcltk/mysqltcl | |
parent | initial import (diff) | |
download | historical-967769e78a0ec892a6a2d91165ebe76b9ac42df1.tar.gz historical-967769e78a0ec892a6a2d91165ebe76b9ac42df1.tar.bz2 historical-967769e78a0ec892a6a2d91165ebe76b9ac42df1.zip |
initial import
Diffstat (limited to 'dev-tcltk/mysqltcl')
-rw-r--r-- | dev-tcltk/mysqltcl/Manifest | 5 | ||||
-rw-r--r-- | dev-tcltk/mysqltcl/files/digest-mysqltcl-2.14 | 1 | ||||
-rw-r--r-- | dev-tcltk/mysqltcl/mysqltcl-2.14.ebuild | 30 |
3 files changed, 33 insertions, 3 deletions
diff --git a/dev-tcltk/mysqltcl/Manifest b/dev-tcltk/mysqltcl/Manifest index 7255d419faad..f76cf32fbe73 100644 --- a/dev-tcltk/mysqltcl/Manifest +++ b/dev-tcltk/mysqltcl/Manifest @@ -1,4 +1,3 @@ -MD5 50bf3c165985d6326610b308508e949a mysqltcl-2.14.ebuild~ 523 -MD5 95b09a0c87f81e4ae6752ceccd5e834d ChangeLog 297 -MD5 36aaeef4e085127e266e79c1cbdd3c49 mysqltcl-2.14.ebuild 537 +MD5 3fd86ef4c9864563f816f74249d415b1 ChangeLog 389 +MD5 ee6655059147125db2dd2652da68b655 mysqltcl-2.14.ebuild 720 MD5 21eee820fbcf55b57c7b11f9338b6b28 files/digest-mysqltcl-2.14 65 diff --git a/dev-tcltk/mysqltcl/files/digest-mysqltcl-2.14 b/dev-tcltk/mysqltcl/files/digest-mysqltcl-2.14 new file mode 100644 index 000000000000..e74307c3a6fa --- /dev/null +++ b/dev-tcltk/mysqltcl/files/digest-mysqltcl-2.14 @@ -0,0 +1 @@ +MD5 9de2de463abd28968692ebb32b012e9d mysqltcl-2.14.tar.gz 107812 diff --git a/dev-tcltk/mysqltcl/mysqltcl-2.14.ebuild b/dev-tcltk/mysqltcl/mysqltcl-2.14.ebuild new file mode 100644 index 000000000000..ada89cbb181f --- /dev/null +++ b/dev-tcltk/mysqltcl/mysqltcl-2.14.ebuild @@ -0,0 +1,30 @@ +# Copyright 2000-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2. +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/mysqltcl/mysqltcl-2.14.ebuild,v 1.1 2003/06/05 06:51:07 robbat2 Exp $ + +DESCRIPTION="TCL MySQL Interface" +HOMEPAGE="http://www.xdobry.de/mysqltcl/" + +DEPEND=" + >=dev-lang/tcl-8.1.0 + >=dev-lang/tk-8.1.0 + dev-db/mysql" +RDEPEND="${DEPEND}" +IUSE="" +LICENSE="as-is" +KEYWORDS="~x86" +SLOT="0" +SRC_URI="http://www.xdobry.de/mysqltcl/${P}.tar.gz" +S=${WORKDIR}/${P} + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING README README-msqltcl ChangeLog + dohtml doc/mysqltcl.html + prepalldocs +} |