blob: 68025b9edd9ddfc40b153b7d45305d0576990c2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
#
# $FreeBSD$
#
# bsd.fpc.mk - Support for FreePascal based ports.
#
# Created by: Alonso Cardenas Marquez <acm@FreeBSD.org>
#
# For FreeBSD committers:
# Please send all suggested changes to the maintainer instead of committing
# them to CVS yourself.
#
# USE_FPC - If you set this to "yes", this automatically will install
# free pascal compiler, if you need install additional fpc
# units, they can be listed there (USE_FPC= gtk x11 opengl).
#
# WANT_FPC_BASE - If you set this to "yes", this automatically will install
# all base units of fpc (gdbint graph ibase libasync hash
# httpd mysql netdb odbc oracle pasjpeg paszlib pthreads
# postgres regexpr and sqlite).
#
# WANT_FPC_ALL - If you set this to "yes", this automatically will install
# all free pascal units.
#
#
.if !defined(_POSTMKINCLUDED) && !defined(_FPCMKINCLUDED)
_FPCMKINCLUDED= yes
FPC_Include_MAINTAINER= acm@FreeBSD.org
FPC_Pre_Include= bsd.fpc.mk
DEFAULT_FPC_VER= 2.2.0
FPC_VER= ${DEFAULT_FPC_VER}
.if exists(${LOCALBASE}/bin/fpc)
FPC_CURRENT_VER!= ${LOCALBASE}/bin/fpc -iV
. if ${FPC_CURRENT_VER} != ${FPC_VER}
IGNORE= incompatible fpc ${FPC_CURRENT_VER} compiler, please install ${FPC_VER} version
. endif
.endif
BUILD_DEPENDS= ppc386:${PORTSDIR}/lang/fpc
BUILDNAME= ${ARCH}-freebsd
UNITSDIR= ${LOCALBASE}/lib/fpc/${FPC_VER}/units/${BUILDNAME}
fpc-check-install:
check-makevars::
@${ECHO_CMD} "#################################################################"
@${ECHO_CMD} ""
@${ECHO_CMD} " The following freepascal unit will be installed in your system: "
@${ECHO_CMD} ""
@${ECHO_CMD} " * ${UNITPREFIX}${PKGNAMESUFFIX:S/-//} "
@${ECHO_CMD} ""
@${ECHO_CMD} "#################################################################"
_FPC_BASE_UNITS=gdbint graph ibase libasync hash httpd mysql netdb odbc oracle \
pasjpeg paszlib pthreads postgres regexpr sqlite
_FPC_ALL_UNITS=${_FPC_BASE_UNITS} bfd cairo fcl-base fcl-db fcl-fpcunit fcl-image \
fcl-net fcl-passrc fcl-registry fcl-web fcl-xml fftw fpmkunit \
forms fpgtk fv gconf gdbm ggi gnome gtk gtk2 imlib libcurl \
libgd libpng ncurses opengl openssl pcap svgalib syslog tcl \
unzip utmp x11 zlib zvt
.if defined(WANT_FPC_BASE)
. if ${WANT_FPC_BASE:L} == "yes"
USE_FPC= ${_FPC_BASE_UNITS}
. else
IGNORE= unknown value, please use "yes" instead of
. endif
.endif
.if defined(WANT_FPC_ALL)
. if ${WANT_FPC_ALL:L} == "yes"
USE_FPC= ${_FPC_ALL_UNITS}
. else
IGNORE= unknown value, please use "yes" instead of
. endif
.endif
.if ${USE_FPC:L} != "yes"
. for UNITS in ${USE_FPC}
. if ${_FPC_ALL_UNITS:M${UNITS}}==""
IGNORE= cannot install: unknown FPC unit ${UNITS}
. endif
. endfor
# Base units
gdbint_UNIT= devel/fpc-gdbint
graph_UNIT= graphics/fpc-graph
ibase_UNIT= databases/fpc-ibase
libasync_UNIT= net/fpc-libasync
hash_UNIT= security/fpc-hash
httpd_UNIT= www/fpc-httpd
mysql_UNIT= databases/fpc-mysql
netdb_UNIT= net/fpc-netdb
odbc_UNIT= databases/fpc-odbc
oracle_UNIT= databases/fpc-oracle
pasjpeg_UNIT= graphics/fpc-pasjpeg
paszlib_UNIT= archivers/fpc-paszlib
pthreads_UNIT= devel/fpc-pthreads
postgres_UNIT= databases/fpc-postgres
regexpr_UNIT= devel/fpc-regexpr
sqlite_UNIT= databases/fpc-sqlite
# Extra units
bfd_UNIT= devel/fpc-bfd
cairo_UNIT= graphics/fpc-cairo
fcl_base_UNIT= devel/fpc-fcl-base
fcl_db_UNIT= devel/fpc-fcl-db
fcl_fpcunit_UNIT= devel/fpc-fcl-fpcunit
fcl_image_UNIT= devel/fpc-fcl-image
fcl_net_UNIT= devel/fpc-fcl-net
fcl_passrc_UNIT= devel/fpc-fcl-passrc
fcl_registry_UNIT= devel/fpc-fcl-registry
fcl_web_UNIT= devel/fpc-fcl-web
fcl_xml_UNIT= devel/fpc-fcl-xml
fftw_UNIT= math/fpc-fftw
fpmkunit_UNIT= devel/fpc-fpmkunit
forms_UNIT= x11-toolkits/fpc-forms
fpgtk_UNIT= graphics/fpc-fpgtk
fv_UNIT= devel/fpc-fv
gconf_UNIT= devel/fpc-gconf
gdbm_UNIT= databases/fpc-gdbm
ggi_UNIT= graphics/fpc-ggi
gnome_UNIT= x11-toolkits/fpc-gnome
gtk_UNIT= x11-toolkits/fpc-gtk
gtk2_UNIT= x11-toolkits/fpc-gtk2
httpd_UNIT= www/fpc-httpd
imlib_UNIT= graphics/fpc-imlib
libcurl_UNIT= ftp/fpc-libcurl
libgd_UNIT= graphics/fpc-libgd
libpng_UNIT= graphics/fpc-libpng
ncurses_UNIT= graphics/fpc-ncurses
opengl_UNIT= graphics/fpc-opengl
openssl_UNIT= security/fpc-openssl
pcap_UNIT= net/fpc-pcap
svgalib_UNIT= graphics/fpc-svgalib
syslog_UNIT= sysutils/fpc-syslog
tcl_UNIT= lang/fpc-tcl
unzip_UNIT= archivers/fpc-unzip
utmp_UNIT= sysutils/fpc-utmp
x11_UNIT= x11/fpc-x11
zlib_UNIT= devel/fpc-zlib
zvt_UNIT= x11-toolkits/fpc-zvt
. for UNITS in ${USE_FPC}
. if ${_FPC_ALL_UNITS:M${UNITS}}!=""
BUILD_DEPENDS+= ${UNITSDIR}/${UNITS:S/httpd/httpd-1.3/}/Package.fpc:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT}
RUN_DEPENDS+= ${UNITSDIR}/${UNITS:S/httpd/httpd-1.3/}/Package.fpc:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT}
security-check: fpc-check-install
. endif
. endfor
.endif
.endif
# End of bsd.fpc.mk file
|