mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
1464e9906b
CFLAGS. At least on 4.9, the new changes to bsd.port.mk don't like if _CPUCFLAGS is empty.
83 lines
2.5 KiB
Makefile
83 lines
2.5 KiB
Makefile
# New ports collection makefile for: i386-rtems-g77
|
|
# Date created: 9 June 2000
|
|
# Whom: James Housley <jim@thehousleys.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= g77
|
|
PORTVERSION= 3.2.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEWARE} \
|
|
${MASTER_SITE_GNU:S/$/:gcc/}
|
|
MASTER_SITE_SUBDIR= newlib \
|
|
gcc/${GCCNAME}/:gcc
|
|
DISTFILES= ${NEWLIBNAME}.tar.gz \
|
|
${G77NAME}.tar.gz:gcc
|
|
PATCHFILES= ${G77NAME}-rtems-20030507a.diff \
|
|
${NEWLIBNAME}-rtems-20030605.diff
|
|
PATCH_SITES= ftp://ftp.rtems.com/pub/rtems/snapshots/c_tools/source/ \
|
|
http://rtems.thehousleys.net/
|
|
|
|
MAINTAINER= jeh@FreeBSD.org
|
|
COMMENT= FSF F77-gcc-3.2.3 base-port for RTEMS development
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
LCLTARGET?= i386-rtems
|
|
|
|
GCCVERSION= 3.2.3
|
|
G77NAME= gcc-${GCCVERSION}
|
|
PLIST_SUB+= "GCCVERSION=${GCCVERSION}"
|
|
NEWLIBNAME= newlib-1.11.0
|
|
PLIST= ${PKGDIR}/pkg-plist.${LCLTARGET}
|
|
|
|
# autoheader is used by the port but autoconf is not, setting USE_AUTOCONF
|
|
# will break the port. Since USE_AUTOHEADER sets USE_AUTOCONF, this is
|
|
# likely to break the port also.
|
|
BUILD_DEPENDS= autoheader:${PORTSDIR}/devel/autoconf \
|
|
${LCLTARGET}-gcc:${PORTSDIR}/devel/${LCLTARGET}-gcc
|
|
RUN_DEPENDS= ${LCLTARGET}-gcc:${PORTSDIR}/devel/${LCLTARGET}-gcc
|
|
|
|
PKGNAMEPREFIX= ${LCLTARGET}-
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
ALL_TARGET= all info
|
|
|
|
CONFIGURE_TARGET?= --target=${LCLTARGET}
|
|
CONFIGURE_ARGS?= --with-gnu-as --with-gnu-ld --with-newlib --verbose \
|
|
--enable-languages="f77" \
|
|
--with-libiconv-prefix=${LOCALBASE} \
|
|
--without-included-gettext
|
|
CONFIGURE_WRKSRC?= ${WRKDIR}/build-${LCLTARGET}
|
|
CONFIGURE_SCRIPT?= ../${G77NAME}/configure
|
|
|
|
PATCH_WRKSRC= ${WRKDIR}
|
|
PATCH_STRIP= -p
|
|
|
|
NO_CPU_FLAGS= true
|
|
MAKE_FLAGS= LANGUAGES="f77"
|
|
MAKE_ENV= MACHINE_ARCH=${RTEMS_ARCH} NO_CPU_CFLAGS=true
|
|
# Since once mk/bsd.cpu.mk adds the _CPUCFLAGS they can't be removed
|
|
# by NO_CPU_FLAGS, and since they are added long before here we are
|
|
# stuck with this hack.
|
|
CFLAGS:= ${CFLAGS:C/-mcpu=[^ ]*//:C/-march=[^ ]*//:C/-mtune=[^ ]*//}
|
|
CXXFLAGS:= ${CXXFLAGS:C/-mcpu=[^ ]*//:C/-march=[^ ]*//:C/-mtune=[^ ]*//}
|
|
|
|
pre-configure:
|
|
@(cd ${WRKDIR} ; \
|
|
cd ${G77NAME} ; ${LN} -fs ../${NEWLIBNAME}/newlib . ; \
|
|
cd .. ; \
|
|
${MKDIR} build-${LCLTARGET})
|
|
|
|
do-build:
|
|
@(cd ${WRKDIR}/build-${LCLTARGET} ; \
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
|
|
do-install:
|
|
@(cd ${WRKDIR}/build-${LCLTARGET} && \
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
|
|
|
|
.include <bsd.port.post.mk>
|