diff options
Diffstat (limited to 'dev-lang/tcl/tcl-8.3.3-r3.ebuild')
-rw-r--r-- | dev-lang/tcl/tcl-8.3.3-r3.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev-lang/tcl/tcl-8.3.3-r3.ebuild b/dev-lang/tcl/tcl-8.3.3-r3.ebuild index 6fcb2905f814..08791797e95f 100644 --- a/dev-lang/tcl/tcl-8.3.3-r3.ebuild +++ b/dev-lang/tcl/tcl-8.3.3-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.3.3-r3.ebuild,v 1.12 2003/02/13 10:31:24 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.3.3-r3.ebuild,v 1.13 2003/09/06 22:27:51 msterret Exp $ S=${WORKDIR}/${PN}${PV} @@ -27,9 +27,9 @@ src_compile() { --prefix=/usr \ --mandir=/usr/share/man \ || die - # threading is not recommended as it breaks some packages + # threading is not recommended as it breaks some packages # --enable-threads \ - + emake CFLAGS="${CFLAGS}" || die } @@ -39,10 +39,10 @@ src_install() { #short version number local v1 v1=${PV%.*} - + cd ${S}/unix make INSTALL_ROOT=${D} MAN_INSTALL_DIR=${D}/usr/share/man install || die - + # fix the tclConfig.sh to eliminate refs to the build directory sed -e "s,^TCL_BUILD_LIB_SPEC='-L${S}/unix,TCL_BUILD_LIB_SPEC='-L/usr/lib," \ -e "s,^TCL_SRC_DIR='${S}',TCL_SRC_DIR='/usr/lib/tcl${v1}/include'," \ @@ -51,7 +51,7 @@ src_install() { -e "s,^TCL_LIB_FILE='libtcl8.3..TCL_DBGX..so',TCL_LIB_FILE=\"libtcl8.3\$\{TCL_DBGX\}.so\"," \ ${D}/usr/lib/tclConfig.sh > ${D}/usr/lib/tclConfig.sh.new mv ${D}/usr/lib/tclConfig.sh.new ${D}/usr/lib/tclConfig.sh - + # install private headers dodir /usr/lib/tcl${v1}/include/unix install -c -m0644 ${S}/unix/*.h ${D}/usr/lib/tcl${v1}/include/unix @@ -59,14 +59,14 @@ src_install() { install -c -m0644 ${S}/generic/*.h ${D}/usr/lib/tcl${v1}/include/generic rm -f ${D}/usr/lib/tcl${v1}/include/generic/tcl.h rm -f ${D}/usr/lib/tcl${v1}/include/generic/tclDecls.h - rm -f ${D}/usr/lib/tcl${v1}/include/generic/tclPlatDecls.h + rm -f ${D}/usr/lib/tcl${v1}/include/generic/tclPlatDecls.h # install symlink for libraries dosym /usr/lib/libtcl${v1}.so /usr/lib/libtcl.so dosym /usr/lib/libtclstub${v1}.a /usr/lib/libtclstub.a - + ln -sf tclsh${v1} ${D}/usr/bin/tclsh - + cd ${S} dodoc README changes license.terms |