aboutsummaryrefslogtreecommitdiffstats
path: root/devel/ccache
diff options
context:
space:
mode:
authorahze <ahze@FreeBSD.org>2008-04-08 09:45:41 +0800
committerahze <ahze@FreeBSD.org>2008-04-08 09:45:41 +0800
commit6bb247400eb2512caba18caa22f866fa73243f6a (patch)
tree744df586be92ac51bbfac75f45ac832897b78b6a /devel/ccache
parent76c7c3c7dbbc4863640e3b502ac64fdf443bc022 (diff)
downloadfreebsd-ports-gnome-6bb247400eb2512caba18caa22f866fa73243f6a.tar.gz
freebsd-ports-gnome-6bb247400eb2512caba18caa22f866fa73243f6a.tar.zst
freebsd-ports-gnome-6bb247400eb2512caba18caa22f866fa73243f6a.zip
Add links to gcc44 and gcc-ooo, only add links to gcc295 on i386 and alpha
Diffstat (limited to 'devel/ccache')
-rw-r--r--devel/ccache/Makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile
index b2368bbea3c2..b9fef20116b1 100644
--- a/devel/ccache/Makefile
+++ b/devel/ccache/Makefile
@@ -7,7 +7,7 @@
PORTNAME= ccache
PORTVERSION= 2.4
-PORTREVISION= 6
+PORTREVISION= 7
CATEGORIES= devel
MASTER_SITES= http://samba.org/ftp/ccache/
@@ -34,11 +34,14 @@ SUB_FILES= ${HOWTO} pkg-message
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_COMPILER_LINKS)
-GNU_COMPILERS= 295 32 33 34 40 41 42 43
-CCACHE_COMPILERS= cc c++ gcc g++ ${GNU_COMPILERS:S|^|gcc|} ${GNU_COMPILERS:S|^|g++|}
+.if ${ARCH}=="i386" || ${ARCH}=="alpha"
+GNU_COMPILERS+= 295
+.endif
.if ${ARCH}=="i386"
-CCACHE_COMPILERS+= icc icpc
+CCACHE_COMPILERS+= icc icpc
.endif
+GNU_COMPILERS+= 32 33 34 40 41 42 43 44 -ooo
+CCACHE_COMPILERS+= cc c++ gcc g++ ${GNU_COMPILERS:S|^|gcc|} ${GNU_COMPILERS:S|^|g++|}
.if defined(EXTRA_COMPILERS)
CCACHE_COMPILERS+= ${EXTRA_COMPILERS}
.endif