diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-01-11 04:07:36 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-01-11 04:07:36 +0000 |
commit | 0deb9ec2dd921d8af2d14b9085f1ad56d747868d (patch) | |
tree | bdefb0c2a2324f1eaf1556b36d31a4db6093be69 /dev-tcltk/otcl | |
parent | initial ebuild #34340 (diff) | |
download | historical-0deb9ec2dd921d8af2d14b9085f1ad56d747868d.tar.gz historical-0deb9ec2dd921d8af2d14b9085f1ad56d747868d.tar.bz2 historical-0deb9ec2dd921d8af2d14b9085f1ad56d747868d.zip |
fix a slight glitch
Diffstat (limited to 'dev-tcltk/otcl')
-rw-r--r-- | dev-tcltk/otcl/ChangeLog | 5 | ||||
-rw-r--r-- | dev-tcltk/otcl/Manifest | 4 | ||||
-rw-r--r-- | dev-tcltk/otcl/otcl-1.8.ebuild | 8 |
3 files changed, 10 insertions, 7 deletions
diff --git a/dev-tcltk/otcl/ChangeLog b/dev-tcltk/otcl/ChangeLog index 8febb20c0df5..a4c4d195dc22 100644 --- a/dev-tcltk/otcl/ChangeLog +++ b/dev-tcltk/otcl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-tcltk/otcl # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/otcl/ChangeLog,v 1.1 2004/01/11 03:52:40 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/otcl/ChangeLog,v 1.2 2004/01/11 04:07:36 robbat2 Exp $ + + 10 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> otcl-1.8.ebuild: + fix a slight glitch *otcl-1.8 (10 Jan 2004) diff --git a/dev-tcltk/otcl/Manifest b/dev-tcltk/otcl/Manifest index b5575bcd10c5..43dc1ce86ca0 100644 --- a/dev-tcltk/otcl/Manifest +++ b/dev-tcltk/otcl/Manifest @@ -1,3 +1,3 @@ -MD5 b99e14e885e92bb21706a5e76de0ee86 otcl-1.8.ebuild 990 -MD5 f1fea1dfeb0a2dc0d0cb0757514ad4bc ChangeLog 438 +MD5 d3d79d2f2b425800b8c8f62caa8f820e otcl-1.8.ebuild 979 +MD5 730399359a47a3287513d04633021250 ChangeLog 531 MD5 64a71b4bb60017c2d8802e771d31cedc files/digest-otcl-1.8 60 diff --git a/dev-tcltk/otcl/otcl-1.8.ebuild b/dev-tcltk/otcl/otcl-1.8.ebuild index 3cb4777205ba..11b45e5e0237 100644 --- a/dev-tcltk/otcl/otcl-1.8.ebuild +++ b/dev-tcltk/otcl/otcl-1.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/otcl/otcl-1.8.ebuild,v 1.1 2004/01/11 03:52:40 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/otcl/otcl-1.8.ebuild,v 1.2 2004/01/11 04:07:36 robbat2 Exp $ DESCRIPTION="MIT Object extention to Tcl" SF_PN="otcl-tclcl" @@ -17,10 +17,10 @@ S=${WORKDIR}/${P} src_compile() { #local myconf="--with-tcl=/usr/lib --enable-shared" local myconf="--enable-shared" - econf ${myconf} CFLAGS="${CFLAGS} -I`ls /usr/lib/tcl8.*/include/generic/tclInt.h | tail -n1 | xargs dirname`" - emake CFLAGS="${CFLAGS}" all || die - emake libotcl.so + econf ${myconf} + emake all || die + emake libotcl.so || die } src_install() { |