diff options
Diffstat (limited to 'games/gcompris2/Makefile')
-rw-r--r-- | games/gcompris2/Makefile | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/games/gcompris2/Makefile b/games/gcompris2/Makefile index 370ee96880db..a6d5bbb2fdfb 100644 --- a/games/gcompris2/Makefile +++ b/games/gcompris2/Makefile @@ -15,29 +15,23 @@ EXTRACT_SUFX= .tgz MAINTAINER= sobomax@FreeBSD.org BUILD_DEPENDS= ${LOCALBASE}/share/automake/install-sh:${PORTSDIR}/devel/automake -LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs -RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \ - ${X11BASE}/share/gnome/sounds/login.wav:${PORTSDIR}/audio/gnomeaudio USE_X_PREFIX= yes USE_GMAKE= yes +USE_GNOME= yes GNU_CONFIGURE= yes - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - -CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" \ - CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" post-extract: @${LN} -sf ${LOCALBASE}/share/automake/install-sh ${WRKSRC}/install-sh @${LN} -sf ${LOCALBASE}/share/automake/mkinstalldirs ${WRKSRC}/mkinstalldirs - @${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/configure + +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\)/pixmaps|\$\(datadir\)/gnome/pixmaps|g ; \ - s|\$\(datadir\)/sounds|\$\(datadir\)/gnome/sounds|g ; \ - s|\$\(localstatedir\)/games|\$\(datadir\)/gnome/games|g' + 's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \ + s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g' .include <bsd.port.mk> |