diff options
author | 2004-05-16 23:20:56 +0000 | |
---|---|---|
committer | 2004-05-16 23:20:56 +0000 | |
commit | 53156cca20c1b584dbc983e7dae683ab94b90614 (patch) | |
tree | 08089b031ed88cd4fe22c83caca2db32a51baa83 /dev-tcltk | |
parent | Initial import (Manifest recommit) (diff) | |
download | gentoo-2-53156cca20c1b584dbc983e7dae683ab94b90614.tar.gz gentoo-2-53156cca20c1b584dbc983e7dae683ab94b90614.tar.bz2 gentoo-2-53156cca20c1b584dbc983e7dae683ab94b90614.zip |
Initial import
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tclpython/ChangeLog | 9 | ||||
-rw-r--r-- | dev-tcltk/tclpython/Manifest | 2 | ||||
-rw-r--r-- | dev-tcltk/tclpython/files/digest-tclpython-3.1 | 1 | ||||
-rw-r--r-- | dev-tcltk/tclpython/metadata.xml | 5 | ||||
-rw-r--r-- | dev-tcltk/tclpython/tclpython-3.1.ebuild | 31 |
5 files changed, 48 insertions, 0 deletions
diff --git a/dev-tcltk/tclpython/ChangeLog b/dev-tcltk/tclpython/ChangeLog new file mode 100644 index 000000000000..fc561355a7c4 --- /dev/null +++ b/dev-tcltk/tclpython/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-tcltk/tclpython +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/ChangeLog,v 1.1 2004/05/16 23:20:56 matsuu Exp $ + +*tclpython-3.1 (17 May 2004) + + 17 May 2004; <matsuu@gentoo.org> +tclpython-3.1.ebuild: + Initial import. + diff --git a/dev-tcltk/tclpython/Manifest b/dev-tcltk/tclpython/Manifest new file mode 100644 index 000000000000..4faf41e1006b --- /dev/null +++ b/dev-tcltk/tclpython/Manifest @@ -0,0 +1,2 @@ +MD5 a5c9211abc1aef6385eff616be23d5a6 tclpython-3.1.ebuild 723 +MD5 5c569f146cf737cefa30e7f583b306a2 files/digest-tclpython-3.1 63 diff --git a/dev-tcltk/tclpython/files/digest-tclpython-3.1 b/dev-tcltk/tclpython/files/digest-tclpython-3.1 new file mode 100644 index 000000000000..83b2f60eb579 --- /dev/null +++ b/dev-tcltk/tclpython/files/digest-tclpython-3.1 @@ -0,0 +1 @@ +MD5 50988559d6c8902a481d27378a52e19e tclpython-3.1.tar.gz 6242 diff --git a/dev-tcltk/tclpython/metadata.xml b/dev-tcltk/tclpython/metadata.xml new file mode 100644 index 000000000000..20ce219711a2 --- /dev/null +++ b/dev-tcltk/tclpython/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +</pkgmetadata> diff --git a/dev-tcltk/tclpython/tclpython-3.1.ebuild b/dev-tcltk/tclpython/tclpython-3.1.ebuild new file mode 100644 index 000000000000..77e06a3f085c --- /dev/null +++ b/dev-tcltk/tclpython/tclpython-3.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/tclpython-3.1.ebuild,v 1.1 2004/05/16 23:20:56 matsuu Exp $ + +inherit distutils + +DESCRIPTION="a Python package for Tcl" +HOMEPAGE="http://jfontain.free.fr/tclperl.htm" +SRC_URI="http://jfontain.free.fr/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64" +SLOT="0" +IUSE="" + +DEPEND=">=dev-lang/tcl-8.0 + >=virtual/python-2.2" + +src_compile() { + distutils_python_version + ${CC} -shared -o tclpython.so.${PV} -s -fPIC ${CFLAGS} -Wall -I/usr/include/python${PYVER} tclpython.c `python-config` -lpthread -lutil || die +} + +src_install() { + insinto /usr/lib/tclpython + doins tclpython.so.${PV} + doins pkgIndex.tcl + + dodoc CHANGES INSTALL README + dohtml tclpython.htm +} |