mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
a334cf60ed
- Give maintainership to submitter "Unfortunately FreeBSD 5.x uses the GNU C extension __attribute__((__aligned__(x))) in a couple of system headers (<machine/npx.h>, <machine/signal.h> and <machine/ucontext.h> for i386). To avoid a syntax error __aligned(x) is removed by a #define, but programs that use struct sigcontext, struct savexmm or mcontext_t probably won't work." PR: 52619 Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org>
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: TenDRA
|
|
# Date created: 7 Apr 1998
|
|
# Whom: Robert Nordier <rnordier@iafrica.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= TenDRA
|
|
PORTVERSION= 4.20030526
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.tendra.org/pub/snapshot/
|
|
DISTNAME= ${PORTNAME:L}-${PORTVERSION:S/4.//}
|
|
|
|
MAINTAINER= stefan@fafoe.dyndns.org
|
|
COMMENT= A portable but mostly-unsupported C/C++ compiler
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME:L}
|
|
USE_BZIP2= yes
|
|
USE_PERL5_BUILD= yes
|
|
ALL_TARGET= # nada
|
|
|
|
TENDRA_OSREL!= uname -r
|
|
TENDRA_ARCH= 80x86
|
|
TENDRA_VER= 5.0.0
|
|
TENDRA_PATH= ${TENDRA_VER}/FreeBSD/${TENDRA_OSREL}/${TENDRA_ARCH}
|
|
PLIST_SUB+= TENDRA_VER=${TENDRA_VER} TENDRA_OSREL=${TENDRA_OSREL} \
|
|
TENDRA_PATH=${TENDRA_PATH}
|
|
|
|
MAN1= calculus.1 disp.1 lexi.1 pl.1 sid.1 tcc.1 tchk.1 \
|
|
tcpplus.1 tdfc2.1 tld.1 tnc.1 trans.1 tspec.1
|
|
MAN5= tccenv.5
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && make PREFIX=${PREFIX} freebsd
|
|
|
|
# Remove empty directory that is ugly to handle with pkg-plist
|
|
post-install:
|
|
rmdir ${PREFIX}/lib/TenDRA/${TENDRA_PATH}/lib/machines/tokens
|
|
|
|
.include <bsd.port.mk>
|