diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-01-11 04:08:22 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-01-11 04:08:22 +0000 |
commit | 485361cdef566c945fdbf9b01ee2af3954934b10 (patch) | |
tree | 63fcdcd299324cb1c7585b28831f48627dae484f /dev-tcltk | |
parent | fix a slight glitch (diff) | |
download | historical-485361cdef566c945fdbf9b01ee2af3954934b10.tar.gz historical-485361cdef566c945fdbf9b01ee2af3954934b10.tar.bz2 historical-485361cdef566c945fdbf9b01ee2af3954934b10.zip |
Initial commit, original ebuild by Christophe Radovcic <christophe.radovcic@laposte.net>, heavily updated by robbat2@gentoo.org
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tclcl/ChangeLog | 10 | ||||
-rw-r--r-- | dev-tcltk/tclcl/files/digest-tclcl-1.15 | 1 | ||||
-rw-r--r-- | dev-tcltk/tclcl/tclcl-1.15.ebuild | 34 |
3 files changed, 45 insertions, 0 deletions
diff --git a/dev-tcltk/tclcl/ChangeLog b/dev-tcltk/tclcl/ChangeLog new file mode 100644 index 000000000000..3eae9b9cafc5 --- /dev/null +++ b/dev-tcltk/tclcl/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-tcltk/tclcl +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclcl/ChangeLog,v 1.1 2004/01/11 04:08:22 robbat2 Exp $ + +*tclcl-1.15 (10 Jan 2004) + + 10 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> tclcl-1.15.ebuild: + Initial commit, original ebuild by Christophe Radovcic + <christophe.radovcic@laposte.net>, heavily updated by robbat2@gentoo.org + diff --git a/dev-tcltk/tclcl/files/digest-tclcl-1.15 b/dev-tcltk/tclcl/files/digest-tclcl-1.15 new file mode 100644 index 000000000000..9bcb39aab385 --- /dev/null +++ b/dev-tcltk/tclcl/files/digest-tclcl-1.15 @@ -0,0 +1 @@ +MD5 0b6403ea9303d776717855eb0828a408 tclcl-src-1.15.tar.gz 143000 diff --git a/dev-tcltk/tclcl/tclcl-1.15.ebuild b/dev-tcltk/tclcl/tclcl-1.15.ebuild new file mode 100644 index 000000000000..d84d09737f9c --- /dev/null +++ b/dev-tcltk/tclcl/tclcl-1.15.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclcl/tclcl-1.15.ebuild,v 1.1 2004/01/11 04:08:22 robbat2 Exp $ + +DESCRIPTION="tcl librairy" +SF_PN="otcl-tclcl" +HOMEPAGE="http://sourceforge.net/projects/${SF_PN}/" +MY_P="${PN}-src-${PV}" +SRC_URI="mirror://sourceforge/${SF_PN}/${MY_P}.tar.gz" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~sparc" +IUSE="" +DEPEND=">=dev-lang/tcl-8.3.2 + >=dev-lang/tk-8.3.2 + >=dev-tcltk/otcl-1.0.8" +S=${WORKDIR}/${P} + +src_compile() { + econf || die + sed 's|$(LIBRARY_TCL)/http/http.tcl|$(LIBRARY_TCL)/http2.4/http.tcl|g' -i Makefile + #sed s/http2.3/http2.4/ -i Makefile + emake || die +} + +src_install() { + dolib.a libtclcl.a + dobin tcl2c++ + dodir /usr/include + insinto /usr/include + doins *.h + dohtml CHANGES.html + dodoc FILES README VERSION +} |