diff options
Diffstat (limited to '')
-rw-r--r-- | audio/ruby-shout/Makefile | 4 | ||||
-rw-r--r-- | audio/snd/Makefile | 10 | ||||
-rw-r--r-- | graphics/batik/Makefile | 8 | ||||
-rw-r--r-- | lang/gcl/Makefile | 8 | ||||
-rw-r--r-- | net/gsk/Makefile | 10 |
5 files changed, 16 insertions, 24 deletions
diff --git a/audio/ruby-shout/Makefile b/audio/ruby-shout/Makefile index c6e882eedd01..1663ade8fa66 100644 --- a/audio/ruby-shout/Makefile +++ b/audio/ruby-shout/Makefile @@ -29,10 +29,6 @@ DOCS= README doc .include <bsd.port.pre.mk> -.if ${OSVERSION} <= 500000 -BROKEN= Does not compile -.endif - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODEXAMPLESDIR} diff --git a/audio/snd/Makefile b/audio/snd/Makefile index 05d8529cc839..1f9065b378ad 100644 --- a/audio/snd/Makefile +++ b/audio/snd/Makefile @@ -17,8 +17,6 @@ COMMENT= Multitracking sound editor and utilities LIB_DEPENDS= gsl.6:${PORTSDIR}/math/gsl -BROKEN= "Does not install" - ALL_TARGET= audinfo snd sndinfo sndplay sndrecord sndsine CONFIGURE_ARGS= --with-float-samples \ --with-multifile @@ -82,6 +80,12 @@ USE_X_PREFIX= yes USE_XLIB= yes .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 503000 +BROKEN= "Does not install on FreeBSD >= 5.x" +.endif + post-build: ${MV} ${WRKSRC}/sndinfo ${WRKSRC}/snd-info @@ -153,4 +157,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/*.scm ${DATADIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/graphics/batik/Makefile b/graphics/batik/Makefile index 1fa48d2fb8dd..ce82732f54ee 100644 --- a/graphics/batik/Makefile +++ b/graphics/batik/Makefile @@ -31,12 +31,6 @@ TARGET_DIR= ${WRKSRC}/${PORTNAME}-${PORTVERSION} ALL_TARGET+= html .endif -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -BROKEN= "Does not compile on 4.x" -.endif - do-install: cd ${TARGET_DIR} \ && ${FIND} . -type d -exec ${MKDIR} ${DATADIR}/{} \; \ @@ -48,4 +42,4 @@ post-install: @${FIND} -s -d ${TARGET_DIR} -type d | \ ${SED} -e 's,^${TARGET_DIR},@dirrm ${DATADIR:S,${PREFIX}/,,},' >> ${TMPPLIST} -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/lang/gcl/Makefile b/lang/gcl/Makefile index 504e42e68ab3..0ce7e7b382ed 100644 --- a/lang/gcl/Makefile +++ b/lang/gcl/Makefile @@ -44,12 +44,6 @@ INFO= gcl-si gcl-tk PLIST_SUB= GCL_VER=${PORTVERSION} -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -BROKEN= "Does not compile on FreeBSD 4.x" -.endif - pre-configure: ${RM} -f ${WRKSRC}/configure ${SED} -i '' \ @@ -57,4 +51,4 @@ pre-configure: -e 's|@@LOCALLIBS@@|-L${LOCALBASE}/lib -lgmp -lm -lreadline|' \ ${WRKSRC}/h/FreeBSD.defs -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/net/gsk/Makefile b/net/gsk/Makefile index 33581a09198b..76703f729d0b 100644 --- a/net/gsk/Makefile +++ b/net/gsk/Makefile @@ -16,8 +16,6 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= A C library for writing servers -BROKEN= Does not build - USE_GNOME= glib20 gnomehack gnometarget USE_PERL5= yes USE_GMAKE= yes @@ -33,4 +31,10 @@ USE_OPENSSL= yes PLIST_SUB+= OPENSSL="" .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 503000 +BROKEN= "Does not build on FreeBSD >= 5.x" +.endif + +.include <bsd.port.post.mk> |