diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2008-07-20 19:43:45 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2008-07-20 19:43:45 +0000 |
commit | e09c7f6bbc7b025dce14668dabee8cf3ec51dcf8 (patch) | |
tree | 7240555571be9b3615a27f69d1dd1e9ca8753158 | |
parent | d45fa2843898a039d83027ce8704a2596030b4c4 (diff) |
IGNORE this on FreeBSD 8 and above. On the way, clean up download settings
and set COMMENT unconditionally since we no longer serve as a master port.
Notes
Notes:
svn path=/head/; revision=217216
-rw-r--r-- | lang/gcc33/Makefile | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/lang/gcc33/Makefile b/lang/gcc33/Makefile index 04330c3cbf5a..9d935638d301 100644 --- a/lang/gcc33/Makefile +++ b/lang/gcc33/Makefile @@ -11,17 +11,16 @@ PORTVERSION= 3.3.6 PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= lang -VERSIONSTRING= ${PORTVERSION} MASTER_SITES= ${MASTER_SITE_GCC} -MASTER_SITE_SUBDIR= releases/gcc-${VERSIONSTRING} -DISTFILES= gcc-core-${VERSIONSTRING}${EXTRACT_SUFX} \ - gcc-g++-${VERSIONSTRING}${EXTRACT_SUFX} \ - gcc-g77-${VERSIONSTRING}${EXTRACT_SUFX} \ - gcc-objc-${VERSIONSTRING}${EXTRACT_SUFX} \ - gcc-testsuite-${VERSIONSTRING}${EXTRACT_SUFX} +MASTER_SITE_SUBDIR= releases/gcc-${PORTVERSION} +DISTFILES= gcc-core-${PORTVERSION}${EXTRACT_SUFX} \ + gcc-g++-${PORTVERSION}${EXTRACT_SUFX} \ + gcc-g77-${PORTVERSION}${EXTRACT_SUFX} \ + gcc-objc-${PORTVERSION}${EXTRACT_SUFX} \ + gcc-testsuite-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER?= gerald@FreeBSD.org -COMMENT?= GNU Compiler Collection 3.3 +COMMENT= GNU Compiler Collection 3.3 SUFFIX= 33 LATEST_LINK?= gcc${SUFFIX}${PKGNAMESUFFIX} @@ -37,13 +36,17 @@ NOMANCOMPRESS= yes # too hard to deal with differences on 5-cur and releng4 .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 800000 +IGNORE= does not support FreeBSD 8 and above +.endif + .if ${ARCH} == "amd64" CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} .else CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} .endif -SRCDIR= ${WRKDIR}/gcc-${VERSIONSTRING} +SRCDIR= ${WRKDIR}/gcc-${PORTVERSION} WRKSRC= ${WRKDIR}/build TARGLIB= ${PREFIX}/lib/gcc-lib/${CONFIGURE_TARGET}/${PORTVERSION} GNU_CONFIGURE= yes |