mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
3610257e24
gcc is 4.6.3 binutils is 2.21.1a Feature safe: yes
106 lines
3.1 KiB
Makefile
106 lines
3.1 KiB
Makefile
# New ports collection makefile for: msp430-gcc
|
|
# Date created: 15 October 2002
|
|
# Whom: Lev Serebryakov <lev@serebryakov.spb.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gcc
|
|
PORTVERSION= ${GCCVERSION}.${LTSVERSION}
|
|
PORTREVISION= 0
|
|
PORTEPOCH= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEWARE} \
|
|
SF/mspgcc/mspgcc:mspgcc
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${PORTNAME}-${GCCVERSION}
|
|
PKGNAMEPREFIX= msp430-
|
|
DISTNAME= ${PORTNAME}-${GCCVERSION}
|
|
DISTFILES= ${PORTNAME}-core-${GCCVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}-g++-${GCCVERSION}${EXTRACT_SUFX} \
|
|
mspgcc-${LTSVERSION}${EXTRACT_SUFX}:mspgcc
|
|
|
|
PATCH_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
PATCH_SITE_SUBDIR= mspgcc/Patches/LTS/${LTSVERSION}
|
|
PATCHFILES= ${LTS_PATCHES}
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER= lev@FreeBSD.org
|
|
COMMENT= FSF gcc-4.5 for TI's msp430 MCUs cross-development
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= ${PKGNAMEPREFIX}as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils \
|
|
${PKGNAMEPREFIX}ld:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils
|
|
RUN_DEPENDS= ${PKGNAMEPREFIX}as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils \
|
|
${PKGNAMEPREFIX}ld:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils
|
|
LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp \
|
|
mpfr.4:${PORTSDIR}/math/mpfr \
|
|
mpc.2:${PORTSDIR}/math/mpc
|
|
|
|
CONFLICTS= msp430-gcc-3.*
|
|
|
|
GCCVERSION= 4.6.3
|
|
LTSVERSION= 20120406
|
|
PATCHVERSION= 20120406
|
|
BUGS_FIXED= # For future use
|
|
LTS_PATCHES!= for bugid in ${BUGS_FIXED} ; do echo ${PKGNAMEPREFIX}${PORTNAME}-${GCCVERSION}-${PATCHVERSION}-sf$${bugid}.patch ; done
|
|
|
|
SRCDIR= ${WRKDIR}/${PORTNAME}-${GCCVERSION}
|
|
WRKSRC= ${WRKDIR}/build
|
|
PATCH_WRKSRC= ${SRCDIR}
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_BISON= build
|
|
USE_ICONV= yes
|
|
USE_PERL5_BUILD=yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT=../${SRCDIR:S/${WRKDIR}\///}/configure
|
|
CONFIGURE_ARGS+=--target=${PKGNAMEPREFIX:S/-$//} \
|
|
--enable-languages=c,c++ \
|
|
--enable-lto \
|
|
--with-gmp=${LOCALBASE} --with-mpfr=${LOCALBASE} \
|
|
--with-mpc=${LOCALBASE} --with-libiconv-prefix=${LOCALBASE} \
|
|
--with-system-zlib --disable-nls \
|
|
--with-pkgversion="MSPGCC_${LTSVERSION}"
|
|
INFO_PATH= ${PKGNAMEPREFIX:S/-$//}/info
|
|
MAKE_ENV= PATH=${PREFIX}/bin:${PATH}
|
|
MAN1= ${PKGNAMEPREFIX}gcc.1 ${PKGNAMEPREFIX}g++.1 \
|
|
${PKGNAMEPREFIX}cpp.1 ${PKGNAMEPREFIX}gcov.1
|
|
|
|
PLIST_SUB+= PORTVERSION=${PORTVERSION} GCC_TARG=${PKGNAMEPREFIX:S/-$//} \
|
|
GCC_REV=${GCCVERSION}
|
|
|
|
INFO= cpp cppinternals gcc gccinstall gccint libquadmath
|
|
INFO_PATH= ${PKGNAMEPREFIX:S/-$//}/info
|
|
|
|
BINARIES= gcc gcc-${GCCVERSION} c++ g++ gcov cpp
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL}
|
|
.else
|
|
CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL}
|
|
.endif
|
|
|
|
pre-patch:
|
|
@cd ${SRCDIR} && ${PATCH} -s -p1 < ../mspgcc-${LTSVERSION}/${PKGNAMEPREFIX}${PORTNAME}-${GCCVERSION}-${PATCHVERSION}.patch
|
|
|
|
pre-configure:
|
|
cd ${SRCDIR} ; contrib/gcc_update --touch
|
|
@${MKDIR} ${CONFIGURE_WRKSRC}
|
|
|
|
post-configure:
|
|
@${PERL} -pi.bak -e 's,^(TARGET_CONFIGDIRS\s*=).+$$,\1,' ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
.for F in ${BINARIES}
|
|
@${LN} -f ${PREFIX}/bin/${PKGNAMEPREFIX}$F \
|
|
${PREFIX}/${PKGNAMEPREFIX:S/-$//}/bin/$F
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|