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
28 lines
767 B
Makefile
28 lines
767 B
Makefile
# Created by: John Merryweather Cooper
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= docs
|
|
PORTVERSION= 3.0.0
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.freepascal.org/pub/fpc/dist/${PORTVERSION}/docs/ \
|
|
ftp://freepascal.stack.nl/pub/fpc/dist/${PORTVERSION}/docs/
|
|
PKGNAMEPREFIX= fpc-
|
|
DISTNAME= ${PORTNAME:S/s//}-pdf
|
|
DIST_SUBDIR= freepascal/${PORTVERSION}
|
|
|
|
MAINTAINER= freebsd-fpc@FreeBSD.org
|
|
COMMENT= Free Pascal compiler Adobe Acrobat(tm) documentation
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
NO_BUILD= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/fpdocs-${PORTVERSION}
|
|
PORTDOCS= chart.pdf fcl.pdf fclres.pdf fpdoc.pdf prog.pdf ref.pdf \
|
|
rtl.pdf user.pdf
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKDIR}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|