Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 31 Dec 2012 13:34:42 +0000 (UTC)
From:      Johan van Selst <johans@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309739 - head/lang/intercal
Message-ID:  <201212311334.qBVDYgOs041017@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@freebsd.org>
-#
+# Created by: Matthew Hunt <mph@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/-@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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212311334.qBVDYgOs041017>