diff options
author | reg <reg@FreeBSD.org> | 2000-10-05 15:10:50 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-10-05 15:10:50 +0800 |
commit | 30fb8569371544b140cbfbe9d8d545a551b7a815 (patch) | |
tree | cf43db91e2cefcf20de68716f427d533c59601f6 /games/gno3dtet/Makefile | |
parent | cea38f8422a3eeac06b3ce4a5828580a5812d2cc (diff) | |
download | freebsd-ports-gnome-30fb8569371544b140cbfbe9d8d545a551b7a815.tar.gz freebsd-ports-gnome-30fb8569371544b140cbfbe9d8d545a551b7a815.tar.zst freebsd-ports-gnome-30fb8569371544b140cbfbe9d8d545a551b7a815.zip |
Implement USE_GNOME, part 1.
Diffstat (limited to 'games/gno3dtet/Makefile')
-rw-r--r-- | games/gno3dtet/Makefile | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/games/gno3dtet/Makefile b/games/gno3dtet/Makefile index 7a72dc3ac81d..a40d496f624a 100644 --- a/games/gno3dtet/Makefile +++ b/games/gno3dtet/Makefile @@ -13,14 +13,19 @@ EXTRACT_SUFX= .tgz MAINTAINER= will@FreeBSD.org -LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs - -GNOME_CONFIG?= ${X11BASE}/bin/gnome-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config -GNU_CONFIGURE= yes -CONFIGURE_ENV= GNOME_CONFIG=${GNOME_CONFIG} GTK_CONFIG=${GTK_CONFIG} USE_X_PREFIX= yes USE_GMAKE= yes +USE_GNOME= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" + +pre-patch: + @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \ + s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g' pre-configure: @${RM} -f ${WRKSRC}/config.cache @@ -28,7 +33,7 @@ pre-configure: post-install: ${CHOWN} root:games ${PREFIX}/bin/gno3dtet ${CHMOD} 2555 ${PREFIX}/bin/gno3dtet - ${CHOWN} root:games ${PREFIX}/var/games/gno3dtet.hof - ${CHMOD} 664 ${PREFIX}/var/games/gno3dtet.hof + ${CHOWN} root:games ${PREFIX}/share/gnome/games/gno3dtet.hof + ${CHMOD} 664 ${PREFIX}/share/gnome/games/gno3dtet.hof .include <bsd.port.mk> |