diff options
author | kris <kris@FreeBSD.org> | 2004-02-07 23:16:25 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-07 23:16:25 +0000 |
commit | 8edf75e8cfc473b0247ab8b90c5f6e00d6e147ac (patch) | |
tree | e33a24f9f8342d1ed1a137e7d6109d17a4d6c61c | |
parent | 101221e5ca0e717808738059d68a28f307a67c73 (diff) | |
download | FreeBSD-ports-8edf75e8cfc473b0247ab8b90c5f6e00d6e147ac.zip FreeBSD-ports-8edf75e8cfc473b0247ab8b90c5f6e00d6e147ac.tar.gz |
BROKEN on 5.x: broken plist
-rw-r--r-- | emulators/wine-devel/Makefile | 4 | ||||
-rw-r--r-- | emulators/wine/Makefile | 4 | ||||
-rw-r--r-- | graphics/dri-devel/Makefile | 8 |
3 files changed, 15 insertions, 1 deletions
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index cf24784..ddd2aa4 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -38,6 +38,10 @@ USE_GCC= 3.3 BROKEN= "Not supported on systems prior to FreeBSD 4.x" .endif +.if ${OSVERSION} >= 502000 +BROKEN= "Broken pkg-plist" +.endif + .if defined(DEBUG) STRIP= .else diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index cf24784..ddd2aa4 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -38,6 +38,10 @@ USE_GCC= 3.3 BROKEN= "Not supported on systems prior to FreeBSD 4.x" .endif +.if ${OSVERSION} >= 502000 +BROKEN= "Broken pkg-plist" +.endif + .if defined(DEBUG) STRIP= .else diff --git a/graphics/dri-devel/Makefile b/graphics/dri-devel/Makefile index 83775fc..aa0fa5c 100644 --- a/graphics/dri-devel/Makefile +++ b/graphics/dri-devel/Makefile @@ -29,6 +29,12 @@ DRILIST= gamma/gamma_dri.so i810/i810_dri.so i830/i830_dri.so \ ONLY_FOR_ARCHS= alpha i386 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502000 +BROKEN= "Broken pkg-plist" +.endif + do-configure: @${RM} -f ${WRKSRC}/config/cf/version.def @${RM} -f ${WRKSRC}/config/cf/date.def @@ -49,4 +55,4 @@ do-install: ${PREFIX}/lib/modules/dri .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> |