diff options
Diffstat (limited to 'ftp/gtm/Makefile')
-rw-r--r-- | ftp/gtm/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/ftp/gtm/Makefile b/ftp/gtm/Makefile new file mode 100644 index 0000000..fb24f2e --- /dev/null +++ b/ftp/gtm/Makefile @@ -0,0 +1,40 @@ +# Ports collection Makefile for: gtm +# Date created: 05/28/1999 +# Whom: nectar@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= gtm +PORTVERSION= 0.4.5 +CATEGORIES= ftp gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= nectar@FreeBSD.org + +LIB_DEPENDS= capplet.4:${PORTSDIR}/sysutils/gnomecontrolcenter \ + panel_applet.4:${PORTSDIR}/x11/gnomecore +BUILD_DEPENDS= wget:${PORTSDIR}/ftp/wget +RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget \ + gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter + +USE_X_PREFIX= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ + CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --datadir=${PREFIX}/share/gnome + +post-extract: + @${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' + +.include <bsd.port.mk> |