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 | 96fd46ecb095fb1bb165eac4d4528392c35c757c (patch) | |
tree | 57bd73a3ee4b173feadb9531f22cfdcc6549eaec /dev-tcltk | |
parent | initial import (diff) | |
download | gentoo-2-96fd46ecb095fb1bb165eac4d4528392c35c757c.tar.gz gentoo-2-96fd46ecb095fb1bb165eac4d4528392c35c757c.tar.bz2 gentoo-2-96fd46ecb095fb1bb165eac4d4528392c35c757c.zip |
initial import
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/mysqltcl/ChangeLog | 8 | ||||
-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 |
4 files changed, 41 insertions, 3 deletions
diff --git a/dev-tcltk/mysqltcl/ChangeLog b/dev-tcltk/mysqltcl/ChangeLog new file mode 100644 index 000000000000..a2e042316e08 --- /dev/null +++ b/dev-tcltk/mysqltcl/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-tcltk/mysqltcl +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/mysqltcl/ChangeLog,v 1.1 2003/06/05 06:51:07 robbat2 Exp $ + +*mysqltcl-2.14 (04 Jun 2003) + + 14 Apr 2003; Robin Johnson <robbat2@gentoo.org> mysqltcl-2.14.ebuild: + Initial import. Ebuild submitted by Sean Woods <yoda@etoyoc.com>. 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 +} |