mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
6befa538a2
Libraries for the Portable C Compiler. WWW: http://pcc.ludd.ltu.se/ In preparation of lang/pcc upgrade... PR: 196642 Submitted by: Sender Ghost <lightside@gmx.com> Approved by: joel (maintainer lang/pcc)
37 lines
936 B
Makefile
37 lines
936 B
Makefile
# Created by: lightside <lightside@gmx.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pcc-libs
|
|
PORTVERSION= 1.1.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://pcc.ludd.ltu.se/pub/pcc-releases/ \
|
|
http://pcc.ludd.ltu.se/ftp/pub/pcc-releases/
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= Libraries for the Portable C Compiler
|
|
|
|
LICENSE= BSDCOMPATIBLE BSD2CLAUSE BSD3CLAUSE
|
|
LICENSE_COMB= multi
|
|
LICENSE_NAME_BSDCOMPATIBLE= BSD-style compatible licenses
|
|
LICENSE_TEXT_BSDCOMPATIBLE= The license: BSDCOMPATIBLE (${LICENSE_NAME_BSDCOMPATIBLE}),\
|
|
please read from the web: http://pcc.ludd.ltu.se/licenses/
|
|
LICENSE_PERMS_BSDCOMPATIBLE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
USES= gmake tar:tgz
|
|
GNU_CONFIGURE= yes
|
|
|
|
DATADIR= ${PREFIX}/lib/pcc
|
|
PORTDATA= *
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
.if ${OPSYS} == FreeBSD
|
|
@${REINPLACE_CMD} -e '/targmach=amd64/s/x86_64/amd64/' \
|
|
${WRKSRC}/configure
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|