mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
cfccf82ceb
PR: ports/74072 Submitted by: Masanori OZAWA (ozawa@ongs.co.jp)
106 lines
2.9 KiB
Makefile
106 lines
2.9 KiB
Makefile
# New ports collection makefile for: D Front End for GCC
|
||
# Date created: 18 November 2004
|
||
# Whom: Masanori OZAWA (ozawa@ongs.co.jp)
|
||
#
|
||
# $FreeBSD$
|
||
#
|
||
|
||
PORTNAME= gdc
|
||
PORTVERSION= 0.8
|
||
CATEGORIES= lang
|
||
MASTER_SITES= ${MASTER_SITE_GCC} \
|
||
http://home.earthlink.net/~dvdfrdmn/d/:gdc \
|
||
http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/:boehm
|
||
MASTER_SITE_SUBDIR= snapshots/${GCC_VERSIONSTRING}
|
||
DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.bz2:gdc \
|
||
gcc-core-${GCC_VERSIONSTRING}.tar.bz2 \
|
||
gcc-g++-${GCC_VERSIONSTRING}.tar.bz2 \
|
||
gc6.3.tar.gz:boehm
|
||
EXTRACT_ONLY= gcc-core-${GCC_VERSIONSTRING}.tar.bz2 \
|
||
gcc-g++-${GCC_VERSIONSTRING}.tar.bz2
|
||
|
||
MAINTAINER= daichi@FreeBSD.org
|
||
COMMENT= D Front End for GCC
|
||
|
||
BUILD_DEPENDS= gcc34:${PORTSDIR}/lang/gcc34
|
||
RUN_DEPENDS= gcc34:${PORTSDIR}/lang/gcc34
|
||
|
||
ONLY_FOR_ARCHS= i386 amd64 alpha
|
||
|
||
USE_GMAKE= yes
|
||
USE_BZIP2= yes
|
||
USE_REINPLACE= yes
|
||
|
||
GCC_VERSION= 3.4.4
|
||
GCC_REVISION= 20041112
|
||
GCC_VERSIONSTRING= 3.4-${GCC_REVISION}
|
||
|
||
.include <bsd.port.pre.mk>
|
||
|
||
.if ${OSVERSION} < 500000
|
||
IGNORE= "It is supported on FreeBSD 5.x and later"
|
||
.endif |