svn commit: r309739 - head/lang/intercal

Johan van Selst johans at FreeBSD.org
Mon Dec 31 13:34:43 UTC 2012


Author: johans
Date: Mon Dec 31 13:34:42 2012
New Revision: 309739
URL: http://svnweb.freebsd.org/changeset/ports/309739

Log:
  - Force use of modern GCC (4.6+) on FreeBSD 8.x and older
    Otherwise, an unusable binary would be produced
  - Bump PR
  
  PR:		ports/174837
  Submitted by:	Klaus Aehlig <aehlig at linta.de>

Modified:
  head/lang/intercal/Makefile

Modified: head/lang/intercal/Makefile
==============================================================================
--- head/lang/intercal/Makefile	Mon Dec 31 13:11:02 2012	(r309738)
+++ head/lang/intercal/Makefile	Mon Dec 31 13:34:42 2012	(r309739)
@@ -1,12 +1,9 @@
-# New ports collection makefile for:	intercal
-# Date created:        20 March 1998
-# Whom:                Matthew Hunt <mph at freebsd.org>
-#
+# Created by: Matthew Hunt <mph at freebsd.org>
 # $FreeBSD$
-#
 
 PORTNAME=	intercal
 PORTVERSION=	0.29
+PORTREVISION=	1
 CATEGORIES=	lang
 MASTER_SITES=	http://www.catb.org/~esr/intercal/
 
@@ -25,4 +22,10 @@ post-patch:
 	@${REINPLACE_CMD} -e '/ICK_SPECIFIC_SUBDIR/s/- at PACKAGE_VERSION@// ' \
 		${WRKSRC}/buildaux/Makefile.in
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 900000
+USE_GCC=	4.6+
+.endif
+
+.include <bsd.port.post.mk>


More information about the svn-ports-all mailing list