diff options
author | vanilla <vanilla@FreeBSD.org> | 2001-03-01 06:39:18 +0000 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2001-03-01 06:39:18 +0000 |
commit | 3e839fced03911e060519db070ef0b74a8f453d5 (patch) | |
tree | 58839ba4c2c0d7dad468b2a8f8430d225f909a6b /lang/p5-Tcl | |
parent | 8c1e758bbd2d733cd1522404a3cb69077926ee68 (diff) | |
download | FreeBSD-ports-3e839fced03911e060519db070ef0b74a8f453d5.zip FreeBSD-ports-3e839fced03911e060519db070ef0b74a8f453d5.tar.gz |
Remove do-configure section, use PERL_CONFIGURE now.
Diffstat (limited to 'lang/p5-Tcl')
-rw-r--r-- | lang/p5-Tcl/Makefile | 7 | ||||
-rw-r--r-- | lang/p5-Tcl/pkg-descr | 48 |
2 files changed, 25 insertions, 30 deletions
diff --git a/lang/p5-Tcl/Makefile b/lang/p5-Tcl/Makefile index f4e4cbc..fc2e25f 100644 --- a/lang/p5-Tcl/Makefile +++ b/lang/p5-Tcl/Makefile @@ -16,15 +16,10 @@ MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82 -USE_PERL5= yes - +PERL_CONFIGURE= yes WRKSRC= ${WRKDIR}/${PORTNAME} MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Tcl.3 -do-configure: - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ - CC="${CC}" CCFLAGS="${CFLAGS}" - .include <bsd.port.mk> diff --git a/lang/p5-Tcl/pkg-descr b/lang/p5-Tcl/pkg-descr index 8e1f32b..5142825 100644 --- a/lang/p5-Tcl/pkg-descr +++ b/lang/p5-Tcl/pkg-descr @@ -1,30 +1,30 @@ - The Tcl extension module gives access to the Tcl library - with functionality and interface similar to the C - functions of Tcl. In other words, you can +The Tcl extension module gives access to the Tcl library +with functionality and interface similar to the C +functions of Tcl. In other words, you can - create Tcl interpreters - The Tcl interpreters so created are Perl objects - whose destructors delete the interpreters cleanly - when appropriate. +create Tcl interpreters + The Tcl interpreters so created are Perl objects + whose destructors delete the interpreters cleanly + when appropriate. - execute Tcl code in an interpreter - The code can come from strings, files or Perl - filehandles. +execute Tcl code in an interpreter + The code can come from strings, files or Perl + filehandles. - bind in new Tcl procedures - The new procedures can be either C code (with - addresses presumably obtained using dl_open and - dl_find_symbol) or Perl subroutines (by name, - reference or as anonymous subs). The (optional) - deleteProc callback in the latter case is another - perl subroutine which is called when the command - is explicitly deleted by name or else when the - destructor for the interpreter object is - explicitly or implicitly called. +bind in new Tcl procedures + The new procedures can be either C code (with + addresses presumably obtained using dl_open and + dl_find_symbol) or Perl subroutines (by name, + reference or as anonymous subs). The (optional) + deleteProc callback in the latter case is another + perl subroutine which is called when the command + is explicitly deleted by name or else when the + destructor for the interpreter object is + explicitly or implicitly called. - Manipulate the result field of a Tcl interpreter +Manipulate the result field of a Tcl interpreter - Set and get values of variables in a Tcl interpreter +Set and get values of variables in a Tcl interpreter - Tie perl variables to variables in a Tcl interpreter - The variables can be either scalars or hashes. +Tie perl variables to variables in a Tcl interpreter + The variables can be either scalars or hashes. |