mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
31 lines
813 B
Makefile
31 lines
813 B
Makefile
# New ports collection makefile for: egcs
|
|
# Version required: 1.0.1
|
|
# Date created: 9 Jan 1998
|
|
# Whom: John Polstra <jdp@polstra.com>
|
|
#
|
|
# $Id: Makefile,v 1.1.1.1 1998/01/10 21:40:09 jdp Exp $
|
|
#
|
|
|
|
DISTNAME= egcs-1.0.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.cygnus.com/pub/egcs/releases/egcs-1.0.1/ \
|
|
ftp://cambridge.cygnus.com/pub/egcs/releases/egcs-1.0.1/ \
|
|
ftp://ftp.fu-berlin.de/unix/languages/egcs/releases/egcs-1.0.1/
|
|
|
|
MAINTAINER= jdp@polstra.com
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ARGS= i386-unknown-freebsd
|
|
MAN1= cccp.1 g++.1 g77.1 gcc.1
|
|
|
|
post-install:
|
|
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.mk>
|