diff options
author | ade <ade@FreeBSD.org> | 2003-06-26 22:58:32 +0000 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2003-06-26 22:58:32 +0000 |
commit | 9487d820b3247d8654d99544f8144188dcec810a (patch) | |
tree | 740462af7ed8e371913ea7f6b12533a99dd524ac /x11-toolkits/php-gtk | |
parent | dfe03c1be7cf9f1612091e1e697a7e74f7002416 (diff) | |
download | FreeBSD-ports-9487d820b3247d8654d99544f8144188dcec810a.zip FreeBSD-ports-9487d820b3247d8654d99544f8144188dcec810a.tar.gz |
libtool uber-patch
* kill devel/libtool and move to devel/libtool13, upgrading to 1.3.5
* upgrade repo-copied devel/libtool14 to 1.4.3
* break out libltdl into its own separate port
* move to version-numbered binaries/scripts (ie: there is *no* 'libtool'
any more -- USE_LIBTOOL and USE_LIBTOOL_VER are your friends)
Approved by: portmgr (kris) - for the bsd.port.mk hooks
Tested by: bento 4-exp builds (repeatedly)
Diffstat (limited to 'x11-toolkits/php-gtk')
-rw-r--r-- | x11-toolkits/php-gtk/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/x11-toolkits/php-gtk/Makefile b/x11-toolkits/php-gtk/Makefile index 320f684..12b53f9 100644 --- a/x11-toolkits/php-gtk/Makefile +++ b/x11-toolkits/php-gtk/Makefile @@ -7,7 +7,7 @@ PORTNAME= php-gtk PORTVERSION= 0.5.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits MASTER_SITES= http://gtk.php.net/distributions/ \ http://document-root.de/mirror/php-gtk/ @@ -27,6 +27,8 @@ RUN_DEPENDS= php:${PORTSDIR}/lang/php4-cli # Don't call autoconf directly, ./buildconf does this GNU_CONFIGURE= yes +USE_LIBTOOL= yes +LIBTOOLFILES= # none USE_AUTOCONF= no USE_GMAKE= yes USE_PERL5_BUILD=yes @@ -66,7 +68,7 @@ CONFIGURE_ENV= CPPFLAGS="${ENVSCE}" USE_REINPLACE= yes REINPLACE_ARGS= -i "" -PIC2FIX= acinclude.m4 aclocal.m4 autom4te.cache configure +PIC2FIX= acinclude.m4 aclocal.m4 configure EXAMPLES= combobutton.php fileselection.php gtk.php hello.php list.php \ piemenu.php scribble.php scrollpane.php spaned.php sqpane.php \ @@ -86,7 +88,7 @@ pre-everything:: pre-configure: @php ${SCRIPTDIR}/memlim.php @${ECHO_MSG} "===> Building configuration files for ${PKGNAME}" - @(cd ${WRKSRC} && ./buildconf) + @(cd ${WRKSRC} && ${SETENV} ${SCRIPTS_ENV} ./buildconf) .for FILE in ${PIC2FIX} @${REINPLACE_CMD} -e "s|-prefer-pic|${CFLAGS}|g" ${WRKSRC}/${FILE} .endfor |