diff options
author | pav <pav@FreeBSD.org> | 2011-12-06 01:29:39 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2011-12-06 01:29:39 +0800 |
commit | 9389b4cb2f5aaa7a057745c7693837939d062a99 (patch) | |
tree | 67a9d19d905c8877d39b7c6ef1484f6d8b66d67a /multimedia/k9copy | |
parent | 4005db7670d64b39035c37ccd66a0c2ad5e39efe (diff) | |
download | freebsd-ports-gnome-9389b4cb2f5aaa7a057745c7693837939d062a99.tar.gz freebsd-ports-gnome-9389b4cb2f5aaa7a057745c7693837939d062a99.tar.zst freebsd-ports-gnome-9389b4cb2f5aaa7a057745c7693837939d062a99.zip |
- Mark BROKEN on FreeBSD 9.X:
k3bscsicommand_bsd.cpp:96: error: 'struct scsi_sense_data' has no member named 'flags'
k3bscsicommand_bsd.cpp:97: error: 'struct scsi_sense_data' has no member named 'add_sense_code'
k3bscsicommand_bsd.cpp:98: error: 'struct scsi_sense_data' has no member named 'add_sense_code_qual'
[..]
Reported by: pointyhat
Feature safe: yes
Diffstat (limited to 'multimedia/k9copy')
-rw-r--r-- | multimedia/k9copy/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/multimedia/k9copy/Makefile b/multimedia/k9copy/Makefile index 139477d790c3..1c56248449b6 100644 --- a/multimedia/k9copy/Makefile +++ b/multimedia/k9copy/Makefile @@ -25,6 +25,12 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_LDCONFIG= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 900044 +BROKEN= does not compile on FreeBSD 9.X +.endif + post-patch: @${REINPLACE_CMD} -e 's,-O2,,g ; \ s,-lpthread,${PTHREAD_LIBS},g' ${WRKSRC}/${CONFIGURE_SCRIPT} @@ -35,4 +41,4 @@ post-patch: 's,^kde includedir,# kde includedir,' \ ${WRKSRC}/libk9copy/Makefile.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |