diff options
author | kris <kris@FreeBSD.org> | 2004-09-19 01:49:31 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-09-19 01:49:31 +0800 |
commit | e6af723b427131278badc3dc020fee3cfef66d18 (patch) | |
tree | dc1bf7a770ac357f185dc978d61310d4d01b4bc4 /comms | |
parent | 8d05912892b859574e72655b0987937be881b688 (diff) | |
download | freebsd-ports-gnome-e6af723b427131278badc3dc020fee3cfef66d18.tar.gz freebsd-ports-gnome-e6af723b427131278badc3dc020fee3cfef66d18.tar.zst freebsd-ports-gnome-e6af723b427131278badc3dc020fee3cfef66d18.zip |
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
Diffstat (limited to 'comms')
-rw-r--r-- | comms/ghfaxviewer/Makefile | 8 | ||||
-rw-r--r-- | comms/gmfsk/Makefile | 8 | ||||
-rw-r--r-- | comms/grig/Makefile | 8 | ||||
-rw-r--r-- | comms/hamfax/Makefile | 8 |
4 files changed, 28 insertions, 4 deletions
diff --git a/comms/ghfaxviewer/Makefile b/comms/ghfaxviewer/Makefile index 8ba762cc7b88..0f0fdfe51de4 100644 --- a/comms/ghfaxviewer/Makefile +++ b/comms/ghfaxviewer/Makefile @@ -29,6 +29,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= halifax.1 ghfaxviewer.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + pre-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @@ -36,4 +42,4 @@ pre-patch: 's|\(\$$(datadir)/\)gnome/|\1|g ; \ s|\$$(datadir)/locale|$$(prefix)/share/locale|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/comms/gmfsk/Makefile b/comms/gmfsk/Makefile index cc76b4ddefe7..355617fe187c 100644 --- a/comms/gmfsk/Makefile +++ b/comms/gmfsk/Makefile @@ -26,7 +26,13 @@ USE_GMAKE= yes USE_AUTOCONF_VER= 253 USE_GNOME= libgnomeui +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-install: @${CAT} pkg-message -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/comms/grig/Makefile b/comms/grig/Makefile index 6994d7745848..d8610828580e 100644 --- a/comms/grig/Makefile +++ b/comms/grig/Makefile @@ -25,7 +25,13 @@ CONFIGURE_ARGS= --disable-nls # nls not supported yet CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -e 's|GCONF_LIBS="`|GCONF_LIBS="-lgconf-gtk-1 `|' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/comms/hamfax/Makefile b/comms/hamfax/Makefile index 34287f87543b..ec415f8910d9 100644 --- a/comms/hamfax/Makefile +++ b/comms/hamfax/Makefile @@ -26,4 +26,10 @@ CONFIGURE_ARGS= --with-Qt-dir=${X11BASE} CXX="g++ ${PTHREAD_CFLAGS}" \ USE_GMAKE= yes USE_BZIP2= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + +.include <bsd.port.post.mk> |