diff options
author | kris <kris@FreeBSD.org> | 2005-04-30 09:27:19 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-04-30 09:27:19 +0800 |
commit | 4ae9228697c57c4c9df700e2fe5d2b2c6b5a5fdd (patch) | |
tree | f1faef205a65ad669367ea69057340a3b27227db | |
parent | 6e65b10bbe8504455c909ae7a7d439b7591ad9ca (diff) | |
download | freebsd-ports-graphics-4ae9228697c57c4c9df700e2fe5d2b2c6b5a5fdd.tar.gz freebsd-ports-graphics-4ae9228697c57c4c9df700e2fe5d2b2c6b5a5fdd.tar.zst freebsd-ports-graphics-4ae9228697c57c4c9df700e2fe5d2b2c6b5a5fdd.zip |
BROKEN on 4.x: Incomplete pkg-plist
-rw-r--r-- | games/grhino/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/grhino/Makefile b/games/grhino/Makefile index 26c739469a3..4fb6657f446 100644 --- a/games/grhino/Makefile +++ b/games/grhino/Makefile @@ -24,8 +24,14 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" PLIST_SUB+= VERSION=${PORTVERSION} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Incomplete pkg-plist on 4.x" +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> |