diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-07-25 08:40:59 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-07-25 08:40:59 +0000 |
commit | a0f8a501a98132f40c363371d22fe032998a6352 (patch) | |
tree | 7b9d86102e9e29482c68d47d85e29c5bdaeccd41 /ftp/gtm/Makefile | |
parent | 5bf23acfa3d1199f84b4c6c743a57a096a694add (diff) | |
download | FreeBSD-ports-a0f8a501a98132f40c363371d22fe032998a6352.zip FreeBSD-ports-a0f8a501a98132f40c363371d22fe032998a6352.tar.gz |
Revive gtm - it's now hosted on Sourceforge and update it to 0.4.5.
Other fixes/cleanups:
- use two perl regexs to replace dozen one-line patches;
- use installed linintl instead of port's own;
- correct WWW and MASTER_SITES to reflect new location of the project;
- add gnomecc to RUN_DEPENDS to ensure correct removal of the package.
Obtained from: http://www.gnome.org/
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> |