diff options
author | gerald <gerald@FreeBSD.org> | 2013-11-24 23:11:10 +0000 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2013-11-24 23:11:10 +0000 |
commit | 0773d6a8d429487bede61121ce76ccd7e9d37f4f (patch) | |
tree | d5aa0465890eb84efe24bd5e09bd582e4a96dfc3 | |
parent | f5a486f7b6871e33fa7980bd2cb9574bc8abf343 (diff) | |
download | FreeBSD-ports-0773d6a8d429487bede61121ce76ccd7e9d37f4f.zip FreeBSD-ports-0773d6a8d429487bede61121ce76ccd7e9d37f4f.tar.gz |
Change PORTNAME from gcc to gcc44 to match the actual name of this
port and avoid a package name collision with other GCC ports. This
also allows us to remove LATEST_LINK.
Move to the new LIB_DEPENDS standard.
Sync the debugging output in pre-everything with later GCC ports.
-rw-r--r-- | lang/gcc44/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/gcc44/Makefile b/lang/gcc44/Makefile index 12df9dc..12ccbd9 100644 --- a/lang/gcc44/Makefile +++ b/lang/gcc44/Makefile @@ -1,25 +1,25 @@ # Created by: Gerald Pfeifer <gerald@FreeBSD.org> # $FreeBSD$ -PORTNAME= gcc +PORTNAME= gcc47 PORTVERSION= 4.4.7 PORTEPOCH= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= releases/gcc-${VERSIONSTRING} +DISTNAME= gcc-${DISTVERSION} MAINTAINER= gerald@FreeBSD.org COMMENT= GNU Compiler Collection 4.4 -LIB_DEPENDS= gmp:${PORTSDIR}/math/gmp \ - mpfr:${PORTSDIR}/math/mpfr +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ + libmpfr.so:${PORTSDIR}/math/mpfr RUN_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils DEPRECATED= Superseded by GCC 4.6, only kept for the sake of cad/salome VERSIONSTRING= ${PORTVERSION} SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/} -LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX} ONLY_FOR_ARCHS= amd64 i386 sparc64 USE_BINUTILS= yes USES= bison gmake iconv perl5 @@ -78,7 +78,7 @@ INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/libgomp pre-everything:: - @${ECHO_MSG} "Making GCC ${PORTVERSION} for ${OPSYS} ${OSREL} target=${CONFIGURE_TARGET}" + @${ECHO_MSG} "Making GCC ${PORTVERSION} for ${CONFIGURE_TARGET} [${LANGUAGES}]" pre-configure: cd ${SRCDIR} ; contrib/gcc_update --touch |