f01cba6e50
This is the first major release of FreePascal in nearly four years. There are a ton of new features, way more to list here. see: http://wiki.freepascal.org/FPC_New_Features_3.0 Several new unit ports were added, some were contracted. Most of those were absorbed into the main FPC packages, but two units are no longer supported: sndfile and matroshka. All 99 remaining ports (including Lazarus ports) were build tested on FreeBSD i386 and amd64 Release 10.2
24 lines
654 B
Makefile
24 lines
654 B
Makefile
# Created by: Alonso Cardenas Marquez <acm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
CATEGORIES= lang
|
|
PKGNAMESUFFIX= -utils
|
|
|
|
MAINTAINER= freebsd-fpc@FreeBSD.org
|
|
COMMENT= Free Pascal Compiler utilities
|
|
|
|
USE_FPC= chm fcl-base fcl-net fcl-passrc fcl-res fcl-xml fppkg \
|
|
libcurl fcl-json rtl-extra rtl-objpas openssl fcl-async \
|
|
fcl-web fcl-db ibase mysql odbc oracle postgres sqlite \
|
|
dblib pxlib fastcgi httpd22 httpd24
|
|
|
|
MASTERDIR= ${.CURDIR}/../../lang/fpc
|
|
WRKUNITDIR= ${FPCSRCDIR}/utils
|
|
EXTRACTUNITDIR= ${WRKUNITDIR} ${FPCSRCDIR}/rtl
|
|
|
|
post-install:
|
|
${RM} ${STAGEDIR}${PREFIX}/bin/fpcmake
|
|
${RM} ${STAGEDIR}${PREFIX}/bin/fpcmkcfg
|
|
|
|
.include "${MASTERDIR}/Makefile"
|