diff options
author | nox <nox@FreeBSD.org> | 2009-01-25 03:34:06 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2009-01-25 03:34:06 +0800 |
commit | 4a7b7b4ed4789036201f2fc1818790ce4c2d19bb (patch) | |
tree | 722fc168f654b7080345a2b4b3d85ed56fc5fd01 /games | |
parent | bdfb7a909ee99a92b6c01c981dc492863eb0084e (diff) | |
download | freebsd-ports-gnome-4a7b7b4ed4789036201f2fc1818790ce4c2d19bb.tar.gz freebsd-ports-gnome-4a7b7b4ed4789036201f2fc1818790ce4c2d19bb.tar.zst freebsd-ports-gnome-4a7b7b4ed4789036201f2fc1818790ce4c2d19bb.zip |
- Depend on tcl 8.4 instead of 8.2 since the latter is going to be removed
from ports
- Bump PORTREVISION
PR: ports/130877
Submitted by: mm
Diffstat (limited to 'games')
-rw-r--r-- | games/gracer/Makefile | 6 | ||||
-rw-r--r-- | games/gracer/files/patch-aa | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/games/gracer/Makefile b/games/gracer/Makefile index 6c6c31413149..b1049727400c 100644 --- a/games/gracer/Makefile +++ b/games/gracer/Makefile @@ -7,7 +7,7 @@ PORTNAME= gracer PORTVERSION= 0.1.5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= SF @@ -18,13 +18,13 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib LIB_DEPENDS= ungif.5:${PORTSDIR}/graphics/libungif \ png.5:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg \ - tcl82.1:${PORTSDIR}/lang/tcl82 + tcl84.1:${PORTSDIR}/lang/tcl84 USE_GL= glut USE_PERL5_BUILD=yes USE_AUTOTOOLS= autoconf:213 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ - -I${LOCALBASE}/include/tcl8.2 \ + -I${LOCALBASE}/include/tcl8.4 \ -I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib" USE_GMAKE= yes diff --git a/games/gracer/files/patch-aa b/games/gracer/files/patch-aa index 4de465a15269..737df1ee57b2 100644 --- a/games/gracer/files/patch-aa +++ b/games/gracer/files/patch-aa @@ -5,7 +5,7 @@ for tcl_prefix in $tcl_prefix $exec_prefix /usr/local /usr NONE; do - if test -r $tcl_prefix/lib/tclConfig.sh; then -+ if test -r $tcl_prefix/lib/tcl8.2/tclConfig.sh; then ++ if test -r $tcl_prefix/lib/tcl8.4/tclConfig.sh; then break; fi done @@ -14,12 +14,12 @@ fi -file=${tcl_prefix}/lib/tclConfig.sh -+file=${tcl_prefix}/lib/tcl8.2/tclConfig.sh ++file=${tcl_prefix}/lib/tcl8.4/tclConfig.sh if test ! -r ${file}; then AC_MSG_ERROR(tclConfig.sh doesn't exist) fi -AC_MSG_RESULT([use tclConfig.sh in $tcl_prefix/lib]) -+AC_MSG_RESULT([use tclConfig.sh in $tcl_prefix/lib/tcl8.2]) ++AC_MSG_RESULT([use tclConfig.sh in $tcl_prefix/lib/tcl8.4]) . $file if test $TCL_MAJOR_VERSION -lt 8; then @@ -27,7 +27,7 @@ fi -TCL_CFLAGS="-I$TCL_SRC_DIR" -+TCL_CFLAGS="-I$tcl_prefix/include/tcl8.2" ++TCL_CFLAGS="-I$tcl_prefix/include/tcl8.4" TCL_LDFLAGS="$TCL_LIB_SPEC" AC_SUBST(TCL_CFLAGS) AC_SUBST(TCL_LDFLAGS) |