diff options
-rw-r--r-- | audio/xmms-kj/Makefile | 8 | ||||
-rw-r--r-- | chinese/chinput3/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/audio/xmms-kj/Makefile b/audio/xmms-kj/Makefile index 7ed8b26a6610..14ea7dc27a28 100644 --- a/audio/xmms-kj/Makefile +++ b/audio/xmms-kj/Makefile @@ -24,10 +24,16 @@ WRKSRC= ${WRKDIR}/${PORTNAME} USE_X_PREFIX= yes USE_GNOME= gtk12 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502102 +FORBIDDEN= "Does not respect PTHREAD_{CFLAGS,LIBS}" +.endif + do-build: cd ${WRKSRC} && make do-install: cd ${WRKSRC} && make install -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/chinese/chinput3/Makefile b/chinese/chinput3/Makefile index 956673f1d0fd..85c513667670 100644 --- a/chinese/chinput3/Makefile +++ b/chinese/chinput3/Makefile @@ -21,8 +21,14 @@ USE_GNOME= gtk12 imlib MSG_FILE= ${.CURDIR}/pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502102 +FORBIDDEN= "Does not respect PTHREAD_{CFLAGS,LIBS}" +.endif + post-install: @${SED} -e 's,%%X11BASE%%,${X11BASE},g' ${MSG_FILE} > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |