diff options
author | gerald <gerald@FreeBSD.org> | 2005-12-12 06:49:57 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2005-12-12 06:49:57 +0800 |
commit | b1816e0299ce1df6d9d0a9e6bbf34061a5649a54 (patch) | |
tree | ed2a908ad3b9ea06c7aeefd90cd78b18890576d5 /lang/gcc48/Makefile | |
parent | f1b3eae28b8fcc740a9aae2c155cad7a0aa6791f (diff) | |
download | freebsd-ports-gnome-b1816e0299ce1df6d9d0a9e6bbf34061a5649a54.tar.gz freebsd-ports-gnome-b1816e0299ce1df6d9d0a9e6bbf34061a5649a54.tar.zst freebsd-ports-gnome-b1816e0299ce1df6d9d0a9e6bbf34061a5649a54.zip |
Complete the repocopy of lang/gcc41 to lang/gcc42 and update to the 20051210
snapshot of GCC 4.2.0.
Change pkg-plist to avoid hardcoding any version number.
PR: 90253
Diffstat (limited to 'lang/gcc48/Makefile')
-rw-r--r-- | lang/gcc48/Makefile | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/lang/gcc48/Makefile b/lang/gcc48/Makefile index 08e9dfa2924a..a64e4e4a00d3 100644 --- a/lang/gcc48/Makefile +++ b/lang/gcc48/Makefile @@ -7,10 +7,10 @@ # PORTNAME= gcc -PORTVERSION= 4.1.0 -PORTREVISION= 20051202 +PORTVERSION= 4.2.0 +PORTREVISION= 20051210 CATEGORIES= lang java -VERSIONSTRING= 4.1-${PORTREVISION} +VERSIONSTRING= 4.2-${PORTREVISION} MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${VERSIONSTRING} DISTFILES= gcc-core-${VERSIONSTRING}${EXTRACT_SUFX} \ @@ -19,15 +19,15 @@ DISTFILES= gcc-core-${VERSIONSTRING}${EXTRACT_SUFX} \ gcc-testsuite-${VERSIONSTRING}${EXTRACT_SUFX} MAINTAINER= gerald@FreeBSD.org -COMMENT= GNU Compiler Collection 4.1 +COMMENT= GNU Compiler Collection 4.2 .if defined(WITH_FORTRAN) LIB_DEPENDS= gmp.6:${PORTSDIR}/math/libgmp4 BUILD_DEPENDS= ${LOCALBASE}/lib/libmpfr.a:${PORTSDIR}/math/mpfr .endif -CONFLICTS= gcc-3.3.* gcc-3.4.* gcc-4.0.* -LATEST_LINK?= gcc41${PKGNAMESUFFIX} +CONFLICTS= gcc-3.3.* gcc-3.4.* gcc-4.0.* gcc-4.1.* +LATEST_LINK?= gcc42${PKGNAMESUFFIX} NOT_FOR_ARCHS= alpha USE_BISON= yes USE_BZIP2= yes @@ -61,7 +61,7 @@ CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} SRCDIR= ${WRKDIR}/gcc-${VERSIONSTRING} WRKSRC= ${WRKDIR}/build -SUFFIX= 41 +SUFFIX= 42 TARGLIB= ${PREFIX}/lib/gcc/${CONFIGURE_TARGET}/${PORTVERSION} GNU_CONFIGURE= yes CONFIGURE_ARGS+= --disable-nls \ @@ -84,7 +84,8 @@ LDCONFIG_DIRS= ${TARGLIB} CONFIGURE_ARGS+= --disable-shared .endif ALL_TARGET= bootstrap-lean -PLIST_SUB= GCC_VER=${PORTVERSION} GNU_HOST=${CONFIGURE_TARGET} +PLIST_SUB= GCC_VER=${PORTVERSION} GNU_HOST=${CONFIGURE_TARGET} \ + SUFFIX=${SUFFIX} MAN1= cpp${SUFFIX}.1 \ g++${SUFFIX}.1 \ gcc${SUFFIX}.1 \ @@ -185,7 +186,7 @@ post-install: cklatest: .for SITE in ftp://gcc.gnu.org/pub/gcc/snapshots/ - @-ncftpls -l ${SITE} | ${GREP} 'LATEST.*4\.1' + @-ncftpls -l ${SITE} | ${GREP} 'LATEST.*4\.2' .endfor .include <bsd.port.post.mk> |