diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-09 02:59:36 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-09 02:59:36 +0000 |
commit | 1ac8a951f5a8ae9ede5b64642bd49840c9b37351 (patch) | |
tree | f8ddbd77399d8277997b81bbbed8fd0752b5bdb7 /ftp | |
parent | add libvncserver 0.6 (diff) |
BROKEN on 5.x: does not compile
Notes
Notes:
svn path=/head/; revision=100458
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> |