diff options
author | kris <kris@FreeBSD.org> | 2004-02-09 10:59:36 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-09 10:59:36 +0800 |
commit | 2bc0dbabfdb780dfecee77c91dde392c2dc01911 (patch) | |
tree | 7bed296905228d5f89ded93dd08c125e6e98c8d5 /ftp | |
parent | 70d342920af1a1c6a08f2ec10d91a829715de6b2 (diff) | |
download | freebsd-ports-gnome-2bc0dbabfdb780dfecee77c91dde392c2dc01911.tar.gz freebsd-ports-gnome-2bc0dbabfdb780dfecee77c91dde392c2dc01911.tar.zst freebsd-ports-gnome-2bc0dbabfdb780dfecee77c91dde392c2dc01911.zip |
BROKEN on 5.x: does not compile
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/curlpp/Makefile | 4 | ||||
-rw-r--r-- | ftp/ruby-curl/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/ftp/curlpp/Makefile b/ftp/curlpp/Makefile index 99e28b192bbc..c41cc1cbe649 100644 --- a/ftp/curlpp/Makefile +++ b/ftp/curlpp/Makefile @@ -25,6 +25,10 @@ INSTALLS_SHLIB= yes .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502000 +BROKEN= "Does not compile" +.endif + .if ${OSVERSION} < 500035 USE_GCC= 3.1 .else diff --git a/ftp/ruby-curl/Makefile b/ftp/ruby-curl/Makefile index e4790748f0c2..41eabe818af2 100644 --- a/ftp/ruby-curl/Makefile +++ b/ftp/ruby-curl/Makefile @@ -28,6 +28,12 @@ INSTALL_TARGET= site-install DOCS_EN= README TODO EXAMPLES_EN= example.rb +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502000 +BROKEN= "Does not compile" +.endif + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODEXAMPLESDIR} @@ -40,4 +46,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |