mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
f1e20b513d
Note that the 1.1 versions are an older code base (egcs rev 2.91.x) vs. the snapshot this is replacing (egcs rev 2.92.x). However people have reported less problems with 1.1.1-prerel than the current snapshots.
80 lines
2.6 KiB
Makefile
80 lines
2.6 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: egcs
|
|
# Version required: 1998-09-14
|
|
# Date created: 9 Jan 1998
|
|
# Whom: John Polstra <jdp@polstra.com>
|
|
#
|
|
# $Id: Makefile,v 1.35 1998/10/01 21:40:03 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= egcs-1.1.1-prerelease-3
|
|
PKGNAME= egcs-1.1.1b3
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://go.cygnus.com/pub/ftp.cygnus.com/egcs/snapshots/1.1.1-prerelease/ \
|
|
ftp://egcs.cygnus.com/pub/egcs/snapshots/1.1.1-prerelease/ \
|
|
ftp://ftp.fu-berlin.de/unix/languages/egcs/snapshots/1.1.1-prerelease/ \
|
|
ftp://cambridge.cygnus.com/pub/egcs/snapshots/1.1.1-prerelease/
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
EGCS_REV= egcs-2.91.59
|
|
LIBSTDCPP_REV= 2.9.0
|
|
|
|
.if ${PORTOBJFORMAT} == "elf"
|
|
GNUHOST= ${ARCH}-unknown-freebsdelf
|
|
.else
|
|
GNUHOST= ${ARCH}-unknown-freebsd
|
|
.endif
|
|
|
|
PLIST_SUB= EGCS_REV=${EGCS_REV} GNU_HOST=${GNUHOST}
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ARGS= --with-gnu-as --with-gnu-ld ${GNUHOST} \
|
|
--with-gxx-include-dir=${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}/include/g++
|
|
ALL_TARGET= bootstrap
|
|
MAN1= cccp.1 g++.1 g77.1 gcc.1
|
|
|
|
pre-configure:
|
|
@(cd ${WRKSRC}/gcc/config/${ARCH}/ ; \
|
|
MAJ=`sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
|
${MV} freebsd.h freebsd.h.in ; \
|
|
${SED} -e "s:__FreeBSD__:__FreeBSD__=$${MAJ}:" freebsd.h.in >freebsd.h ; \
|
|
${MV} freebsd-elf.h freebsd-elf.h.in ; \
|
|
${SED} -e "s:__FreeBSD__:__FreeBSD__=$${MAJ}:" freebsd-elf.h.in >freebsd-elf.h)
|
|
|
|
pre-install:
|
|
${MKDIR} ${PREFIX}/info
|
|
touch ${PREFIX}/info/dir
|
|
|
|
post-install:
|
|
@${RM} -f ${PREFIX}/bin/c++
|
|
@${MV} -f ${PREFIX}/bin/c++filt ${PREFIX}/bin/g++filt
|
|
@(for prog in ${PREFIX}/bin/gcc ${PREFIX}/bin/g++ \
|
|
${PREFIX}/bin/g++filt ${PREFIX}/bin/g77 ${PREFIX}/bin/gcov \
|
|
${PREFIX}/bin/protoize ${PREFIX}/bin/unprotoize \
|
|
${PREFIX}/bin/${GNUHOST}-gcc \
|
|
${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}/cc1 \
|
|
${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}/cc1obj \
|
|
${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}/cc1plus \
|
|
${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}/cpp \
|
|
${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}/collect2 \
|
|
${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}/f771 ; \
|
|
do strip $$prog ; \
|
|
done)
|
|
ln -f ${PREFIX}/bin/gcc ${PREFIX}/bin/egcc
|
|
ln -f ${PREFIX}/bin/g++ ${PREFIX}/bin/eg++
|
|
${MV} ${PREFIX}/lib/libiberty.a \
|
|
${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}
|
|
${MV} -f ${PREFIX}/lib/libstdc++.a \
|
|
${PREFIX}/lib/gcc-lib/${GNUHOST}/${EGCS_REV}/libstdc++.a
|
|
if [ ! -f ${PREFIX}/info/dir ]; then \
|
|
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
|
|
fi
|
|
.for info in cpp g77 gcc
|
|
install-info ${PREFIX}/info/${info}.info ${PREFIX}/info/dir
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|