aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/bsd.emacs.mk
blob: 4a3d0a67e5a1ab0c4b1c875a2c9ea6b847389b58 (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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#
#   $FreeBSD: /tmp/pcvs/ports/Mk/bsd.emacs.mk,v 1.19 2002-09-18 11:07:50 ijliao Exp $
#
#   bsd.emacs.mk - 19990829 Shigeyuki Fukushima.
#

Emacs_Include=          bsd.emacs.mk
Emacs_Include_MAINTAINER=   shige@FreeBSD.org

#
# This file for ports which depend on emacs family.
# Define EMACS_PORT_NAME variable before bsd.port.[pre.]mk
# and it will automatically include this file.
#
# This file exports the following common variables:
#
# EMACS_NAME:
#       emacsen's command-line basename.
#       ex.) "emacs" when emacsen is a emacs-20.6.
#
# EMACS_VER:
#       emacsen's version.
#       ex.) "20.6" when emacsen is a emacs-20.6.
#
# EMACS_MAJOR_VER:
#       emacsen's major version.
#       ex.) "20" when emacsen is a emacs-20.6.
#
# EMACS_LIBDIR:
#       emacsen's library directory name without ${PREFIX}.
#       ex.) "share/emacs" when emacsen is a emacs-20.6.
#
# EMACS_LIBDIR_WITH_VER:
#       emacsen's version specific library directory name 
#       without ${PREFIX}.
#       ex.) "share/emacs/20.6" when emacsen is a emacs-20.6.
#
# EMACS_CMD:
#       emacsen's command-line filename. (full path)
#       ex.) "/usr/local/bin/emacs-20.6" when emacsen is a 
#            emacs-20.6 and ${PREFIX} is "/usr/local".
#
# EMACS_SITE_LISPDIR:
#       emacsen's site-lisp directory name without ${PREFIX}.
#       ex.) "share/emacs/site-lisp" when emacsen is a emacs-20.6.
#
# EMACS_VERSION_SITE_LISPDIR:
#       emacsen's version specific site-lisp directory name
#       without ${PREFIX}.
#       ex.) "share/emacs/20.6/site-lisp" when emacsen is a
#       emacs-20.6.
#
# EMACS_NO_BUILD_DEPENDS:
#       If set "YES" to this variable, port does not 
#       build-depend on EMACS_PORT_NAME's emacsen.
#
# EMACS_NO_RUN_DEPENDS:
#       If set "YES" to this variable, port does not 
#       run-depend on EMACS_PORT_NAME's emacsen.
#

EMACS_MASTERDIR_PKGFILES?=  NO

# Emacs-19.x
.if (${EMACS_PORT_NAME} == "emacs") || (${EMACS_PORT_NAME} == "emacs19")
EMACS_NAME=     emacs
EMACS_VER=      19.34
EMACS_MAJOR_VER=    19
EMACS_LIBDIR?=      share/${EMACS_NAME}
EMACS_LIBDIR_WITH_VER?= share/${EMACS_NAME}/${EMACS_VER}
EMACS_PORTSDIR=     ${PORTSDIR}/editors/emacs
EMACS_COMMON_PORT=  NO
EMACS_HAS_MULE=     NO
EMACS_NO_SUBDIRSEL= YES
.if (${EMACS_MASTERDIR_PKGFILES} == "YES")
COMMENT?=       ${PKGDIR}/pkg-comment.emacs19
DESCR?=                 ${PKGDIR}/pkg-descr.emacs19
PLIST?=                 ${PKGDIR}/pkg-plist.emacs19
.endif

# Emacs-20.x
.elif (${EMACS_PORT_NAME} == "emacs20")
EMACS_NAME=     emacs
EMACS_VER=      20.7
EMACS_MAJOR_VER=    20
EMACS_LIBDIR?=      share/${EMACS_NAME}
EMACS_LIBDIR_WITH_VER?= share/${EMACS_NAME}/${EMACS_VER}
EMACS_PORTSDIR=     ${PORTSDIR}/editors/emacs20
EMACS_COMMON_PORT=  NO
EMACS_HAS_MULE=     YES
EMACS_NO_SUBDIRSEL= NO
.if (${EMACS_MASTERDIR_PKGFILES} == "YES")
COMMENT?=       ${PKGDIR}/pkg-comment.${EMACS_PORT_NAME}
DESCR?=                 ${PKGDIR}/pkg-descr.${EMACS_PORT_NAME}
PLIST?=                 ${PKGDIR}/pkg-plist.${EMACS_PORT_NAME}
.endif

# Emacs-21.x
.elif (${EMACS_PORT_NAME} == "emacs21")
EMACS_NAME=     emacs
EMACS_VER=      21.2
EMACS_MAJOR_VER=    21
EMACS_LIBDIR?=      share/${EMACS_NAME}
EMACS_LIBDIR_WITH_VER?= share/${EMACS_NAME}/${EMACS_VER}
EMACS_PORTSDIR=     ${PORTSDIR}/editors/emacs21
EMACS_COMMON_PORT=  NO
EMACS_HAS_MULE=     YES
EMACS_NO_SUBDIRSEL= NO
.if (${EMACS_MASTERDIR_PKGFILES} == "YES")
COMMENT?=       ${PKGDIR}/pkg-comment.${EMACS_PORT_NAME}
DESCR?=                 ${PKGDIR}/pkg-descr.${EMACS_PORT_NAME}
PLIST?=                 ${PKGDIR}/pkg-plist.${EMACS_PORT_NAME}
.endif

# Mule-19.x
.elif (${EMACS_PORT_NAME} == "mule")
EMACS_NAME=     mule
EMACS_VER=      19.34
EMACS_MAJOR_VER=    19
EMACS_LIBDIR?=      share/${EMACS_NAME}
EMACS_LIBDIR_WITH_VER?= share/${EMACS_NAME}/${EMACS_VER}
EMACS_PORTSDIR=     ${PORTSDIR}/editors/mule
EMACS_COMMON_PORT=  YES
EMACS_HAS_MULE=     YES
EMACS_NO_SUBDIRSEL= YES
.if (${EMACS_MASTERDIR_PKGFILES} == "YES")
COMMENT?=       ${PKGDIR}/pkg-comment.${EMACS_PORT_NAME}
DESCR?=                 ${PKGDIR}/pkg-descr.${EMACS_PORT_NAME}
PLIST?=                 ${PKGDIR}/pkg-plist.${EMACS_PORT_NAME}
.endif

# XEmacs-21.x
.elif (${EMACS_PORT_NAME} == "xemacs21")
EMACS_NAME=     xemacs
EMACS_VER=      21.1.14
EMACS_MAJOR_VER=    21
EMACS_LIBDIR?=      lib/${EMACS_NAME}
EMACS_LIBDIR_WITH_VER?= lib/${EMACS_NAME}-${EMACS_VER}
EMACS_PORTSDIR=     ${PORTSDIR}/editors/xemacs21
EMACS_COMMON_PORT=  NO
EMACS_HAS_MULE=     NO
EMACS_NO_SUBDIRSEL= NO
.if (${EMACS_MASTERDIR_PKGFILES} == "YES")
COMMENT?=       ${PKGDIR}/pkg-comment.${EMACS_PORT_NAME}
DESCR?=                 ${PKGDIR}/pkg-descr.${EMACS_PORT_NAME}
PLIST?=                 ${PKGDIR}/pkg-plist.${EMACS_PORT_NAME}
.endif

# XEmacs-21.x with Mule
.elif (${EMACS_PORT_NAME} == "xemacs21-mule")
EMACS_NAME=     xemacs
EMACS_VER=      21.1.14
EMACS_MAJOR_VER=    21
EMACS_LIBDIR?=      lib/${EMACS_NAME}
EMACS_LIBDIR_WITH_VER?= lib/${EMACS_NAME}-${EMACS_VER}
EMACS_PORTSDIR=     ${PORTSDIR}/editors/xemacs21-mule
EMACS_COMMON_PORT=  YES
EMACS_HAS_MULE=     YES
EMACS_NO_SUBDIRSEL= NO
.if (${EMACS_MASTERDIR_PKGFILES} == "YES")
COMMENT?=       ${PKGDIR}/pkg-comment.${EMACS_PORT_NAME}
DESCR?=                 ${PKGDIR}/pkg-descr.${EMACS_PORT_NAME}
PLIST?=                 ${PKGDIR}/pkg-plist.${EMACS_PORT_NAME}
.endif

# XEmacs-21 development version
.elif (${EMACS_PORT_NAME} == "xemacs-devel")
EMACS_NAME=     xemacs
EMACS_VER=      21.4.8
EMACS_MAJOR_VER=    21
EMACS_LIBDIR?=      lib/${EMACS_NAME}
EMACS_LIBDIR_WITH_VER?= lib/${EMACS_NAME}-${EMACS_VER}
EMACS_PORTSDIR=     ${PORTSDIR}/editors/xemacs-devel
EMACS_COMMON_PORT=  NO
EMACS_HAS_MULE=     NO
EMACS_NO_SUBDIRSEL= NO
.if (${EMACS_MASTERDIR_PKGFILES} == "YES")
COMMENT?=       ${PKGDIR}/pkg-comment.${EMACS_PORT_NAME}
DESCR?=                 ${PKGDIR}/pkg-descr.${EMACS_PORT_NAME}
PLIST?=                 ${PKGDIR}/pkg-plist.${EMACS_PORT_NAME}
.endif

# XEmacs-21 development version with Mule
.elif (${EMACS_PORT_NAME} == "xemacs-devel-mule")
EMACS_NAME=     xemacs
EMACS_VER=      21.4.9
EMACS_MAJOR_VER=    21
EMACS_LIBDIR?=      lib/${EMACS_NAME}
EMACS_LIBDIR_WITH_VER?= lib/${EMACS_NAME}-${EMACS_VER}
EMACS_PORTSDIR=     ${PORTSDIR}/editors/xemacs-devel-mule
EMACS_COMMON_PORT=  NO
EMACS_HAS_MULE=     YES
EMACS_NO_SUBDIRSEL= NO
.if (${EMACS_MASTERDIR_PKGFILES} == "YES")
COMMENT?=       ${PKGDIR}/pkg-comment.${EMACS_PORT_NAME}
DESCR?=                 ${PKGDIR}/pkg-descr.${EMACS_PORT_NAME}
PLIST?=                 ${PKGDIR}/pkg-plist.${EMACS_PORT_NAME}
.endif

.else
.BEGIN:
    @${ECHO} "Error: Bad value of EMACS_PORT_NAME: ${EMACS_PORT_NAME}."
    @${ECHO} "Valid values are:"
    @${ECHO} "  Emacs  family: emacs mule emacs20"
    @${ECHO} "  XEmacs family: xemacs xemacs20 xemacs21 xemacs21-mule"
    @${ECHO} "                  xemacs-devel xemacs-devel-mule"
    @${FALSE}
.endif


#
# Common Definitions
#

# emacsen command-line filename
EMACS_CMD?=         ${LOCALBASE}/bin/${EMACS_NAME}-${EMACS_VER}
# emacsen core elisp filename
EMACS_CORE_DIR=         ${EMACS_LIBDIR_WITH_VER}/lisp/${EMACS_CORE_SUBDIR}
EMACS_COREEL=           ${LOCALBASE}/${EMACS_CORE_DIR}/startup.el

# emacsen libdir without ${LOCALBASE}
EMACS_SITE_LISPDIR?=        ${EMACS_LIBDIR}/site-lisp
EMACS_VERSION_SITE_LISPDIR?=    ${EMACS_LIBDIR_WITH_VER}/site-lisp

# build&run-dependency
EMACS_NO_BUILD_DEPENDS?=    NO
EMACS_NO_RUN_DEPENDS?=      NO
.if (${EMACS_NO_BUILD_DEPENDS} == "NO")
BUILD_DEPENDS+=     ${EMACS_CMD}:${EMACS_PORTSDIR}
.endif
.if (${EMACS_NO_RUN_DEPENDS} == "NO")
.if defined(EMACS_COMMON_PORT) && (${EMACS_COMMON_PORT} == "YES")
RUN_DEPENDS+=   ${EMACS_COREEL}:${EMACS_PORTSDIR}-common
.else
RUN_DEPENDS+=   ${EMACS_CMD}:${EMACS_PORTSDIR}
.endif
.endif

# environments for build
MAKE_ARGS+= EMACS=${EMACS_CMD} XEMACS=${EMACS_CMD}
SCRIPTS_ENV+=   EMACS_LIBDIR=${EMACS_LIBDIR} \
        EMACS_VER=${EMACS_VER} \
        EMACS_LIBDIR_WITH_VER=${EMACS_LIBDIR_WITH_VER} \
        EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR} \
        EMACS_VERSION_SITE_LISPDIR=${EMACS_VERSION_SITE_LISPDIR}
# pkg/PLIST substrings
PLIST_SUB+= EMACS_LIBDIR=${EMACS_LIBDIR} \
        EMACS_VER=${EMACS_VER} \
        EMACS_LIBDIR_WITH_VER=${EMACS_LIBDIR_WITH_VER} \
        EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR} \
        EMACS_VERSION_SITE_LISPDIR=${EMACS_VERSION_SITE_LISPDIR}
t.cgi/freebsd-ports-gnome/commit/security?h=gstreamer0.10-removal&id=3a0ad8cdea57650250caa6ed32725068801d3d7b'>Update to DAT 4485jeh2005-05-062-3/+3 * - Update to 2.0.6pav2005-05-052-3/+5 * Bump PORTREVISION due to previous commit.lawrance2005-05-051-0/+1 * Update to DAT 4484jeh2005-05-052-3/+3 * * Update to 0.7.7marcus2005-05-043-12/+29 * Fix condition where strlen() is called on non null-terminated string.lawrance2005-05-044-0/+44 * Update to DAT 4483jeh2005-05-042-3/+3 * Update to 20050503jylefort2005-05-032-3/+3 * Update to 1.5novel2005-05-032-4/+5 * - gnu-radius exploitation was fixed in maintenance release 1.2.94sem2005-05-031-1/+2 * Update security/clamav to version 0.84.vanilla2005-05-032-3/+3 * Update to DAT 4482jeh2005-05-032-3/+3 * . Update the version for the jar(1) vulnerability so that 1.2.2p11_4 isglewis2005-05-031-2/+3 * Update to DAT 4481jeh2005-05-032-3/+3 * Document sharutils -- unshar insecure temporary file creationremko2005-05-011-0/+30 * Document rsnapshot -- local privilege escalationremko2005-05-011-0/+31 * coppermine -- IP spoofing and XSS vulnerabilitybrooks2005-05-011-0/+35 * - Update to 0.58leeym2005-04-305-58/+29 * Update to DAT 4480jeh2005-04-302-3/+3 * . Correct the range of vulnerable jdk14 ports for the jar(1) vulnerabilityglewis2005-04-291-2/+2 * Update to 2.5.3.1krion2005-04-293-9/+8 * fix pkg-plist-ldap (remove etc/openldap if empty)oliver2005-04-281-1/+2 * Document ImageMagick -- ReadPNMImage() heap overflow vulnerability.simon2005-04-281-0/+30 * Bump modified date for last commit.simon2005-04-281-1/+2 * . Adjust ranges so that jdk-1.3.1p9_5 is no longer marked as vulnerable toglewis2005-04-281-2/+3 * Update to DAT 4478jeh2005-04-282-3/+3 * * update to 2.09skv2005-04-274-6/+10 * move mail/courier-authlib to security/courier-authlib which is a meta-port now.oliver2005-04-2742-951/+821 * Update to DAT 4477jeh2005-04-272-3/+3 * - Update to 2.3.3sergei2005-04-262-6/+6 * - Take maintainershipsergei2005-04-264-4/+4 * - Update to 4.1.8jylefort2005-04-263-21/+3 * Fix dbus and gnomekeyring on -CURRENT by not using LOCAL_CREDS. While itmarcus2005-04-266-32/+48 * + update port: security/pear-Auth_HTTP to 2.1.6novel2005-04-262-7/+7 * + update port: security/pear-File_Passwd to 1.1.4novel2005-04-262-3/+3 * Document mplayer & libxine -- MMS and Real RTSP buffer overflowsimon2005-04-261-0/+61 * Document some older vulnerabilities in GAIM.simon2005-04-261-0/+66 * Update to DAT 4476jeh2005-04-262-3/+3 * - Update security/amavisd-new to 2.3.0.leeym2005-04-255-17/+17 * Move shared directory for klirc profiles into kdehier.lofi2005-04-252-2/+0 * - Add checksum for Prelude patch to distinfo (forgotten in 2.3.2 upgrade)sergei2005-04-251-0/+2 * - Update to 1.4sergei2005-04-253-6/+8 * Update to 3.2 to fix fetching.kris2005-04-253-8/+7 * - replace FILESDIR/patch-* with REINPLACE_CMD ...leeym2005-04-259-145/+39 * Revise pkg-message to mark more prominently that the defaultvs2005-04-243-36/+15 * Upgrade to 1.4.1.kuriyama2005-04-248-110/+12 * Update to scanssh 2.1.kris2005-04-248-49/+25 * Document kdewebdev -- kommander untrusted code execution vulnerability.simon2005-04-231-0/+33 * Fix post-install target.netchild2005-04-231-2/+3 * Fix wpa_cli. You need to pass all of the sockaddr, not just part of it.brooks2005-04-232-1/+29 * Update 1.4 --> 1.4.1.cy2005-04-2312-400/+32 * Fix a typo in the kdelibs - kimgio entry.remko2005-04-231-1/+1 * junkbuster -- heap corruption vulnerability and configuration modification vu...remko2005-04-231-0/+41 * PHP bindings to the libssh2 library which provide access to resourcesnetchild2005-04-235-0/+47 * libssh2 is a library implementing the SSH2 protocol as defined bynetchild2005-04-234-0/+42 * Update to DAT 4475jeh2005-04-232-3/+3 * Bump PORTREVISION for previous change.arved2005-04-221-0/+1 * Document kdelibs -- kimgio input validation errors.simon2005-04-221-0/+35 * - Package list fixescy2005-04-225-22/+26 * Fix the packing list.jylefort2005-04-222-0/+3 * Udate 1.4.8 --> 1.4.9p1cy2005-04-226-18/+21 * Set a configurable sudosh logdir which defaults to the /var/log/sudoshcy2005-04-223-0/+18 * Update libksba to version 0.9.11.lofi2005-04-2211-33/+20 * Update to DAT 4474jeh2005-04-222-3/+3 * Drop maintership.krion2005-04-221-1/+1 * - Update to 2.0.1pav2005-04-2120-274/+124 * - Respect CFLAGSarved2005-04-214-25/+34 * - Fix plistpav2005-04-212-1/+3 * Update to 2.0jylefort2005-04-2115-63/+135 * Update to DAT 4473jeh2005-04-212-3/+3 * Add dependency to php pcre extension.leeym2005-04-202-3/+5 * Remove USE_PERLarved2005-04-201-1/+0 * Update to 2.36.jylefort2005-04-204-8/+6 * pcsc-lite:arved2005-04-2011-64/+79 * - respect PTHREAD_LIBSclsung2005-04-202-1/+4 * - update to 1.4.1clsung2005-04-203-3/+14 * Package list fixup.cy2005-04-203-0/+9 * Mark latest openoffice 1.1 as fixed wrt. openoffice -- DOC documentsimon2005-04-201-1/+2 * Packing list fixups.cy2005-04-208-16/+100 * - Update to 0.6pav2005-04-195-23/+49 * Account for pinentry-symlink.lofi2005-04-192-0/+2 * Update to DAT 4472jeh2005-04-192-3/+3 * Document gld -- format string and buffer overflow vulnerabilitiesremko2005-04-191-0/+37 * Add libotr 2.0.1, the portable OTR Messaging Library and toolkit.danfe2005-04-195-0/+59 * - Bump PORTVERSION (man pages absence already fixed)sem2005-04-191-0/+1 * - Add missed man pagesem2005-04-191-1/+1 * Development version of distributed session caching tools and APIs, primarilypav2005-04-197-0/+147 * Distributed session caching tools and APIs, primarily for SSL/TLS serverspav2005-04-197-0/+135 * Fix build of the -curses / -gtk slaveports.lofi2005-04-191-0/+2 * - Update port to 1.2leeym2005-04-194-9/+11 * Update to DAT 4471jeh2005-04-192-3/+3 * Update to 0.4.3.jylefort2005-04-193-3/+19 * - Add (non-rcNG) startup-script (patches welcome)vs2005-04-186-57/+27 * - Update vpnc.sh-sample-fulltunnel to vpnc-wrapper 1.25leeym2005-04-182-6/+6 * Document remote buffer overflow in ftp/axel.naddy2005-04-171-0/+31 * - Update to 4.1.7pav2005-04-173-5/+25 * - Update to 2.2.4sem2005-04-179-22/+184 * Hostname of MASTER_SITE and WWW site changed slightly.adamw2005-04-172-2/+2 * Update to DAT 4470jeh2005-04-172-3/+3 * Document firefox -- PLUGINSPAGE privileged javascript execution (alsosimon2005-04-171-0/+44 * Document jdk - jar directory traversal vulnerability.remko2005-04-171-0/+55 * Document several mozilla/firefox issues.simon2005-04-171-0/+303 * - Fix spelling.sem2005-04-161-1/+1 * Update to 0.7.2lofi2005-04-166-37/+9 * Update to 1.9.15lofi2005-04-164-18/+6 * Mark wget >= 1.10.a1 safe from the "wget -- multiple vulnerabilities"simon2005-04-161-2/+5 * A web frontend for the pf firewall wrote in PHP.sem2005-04-166-0/+140 * Upgrade to 1.6.8p8mharo2005-04-152-4/+4 * - Fix BUILD_DEPENDS.flz2005-04-151-1/+3 * - Add py-twistedConch, an SSH and SFTP protocol implementationflz2005-04-155-0/+271 * - update 0.9.7gdinoex2005-04-152-3/+3 * - Update to chkrookit version 0.45 [1]leeym2005-04-154-26/+24 * Update to 0.6vs2005-04-143-8/+8 * - Update to 2.0.1pav2005-04-143-12/+22 * - Update to 1.18.1.flz2005-04-143-4/+5 * No longer broken. Remove comment.cy2005-04-141-4/+0 * Remove NDEBUG flag as it fails to build at some installations.cy2005-04-144-4/+4 * Document openoffice -- DOC document heap overflow vulnerability.simon2005-04-141-0/+74 * USE_LIBTOOL instead of local patchvs2005-04-132-23/+1 * Workaround Fix for 5.X, until a more permanent solution can be found.cy2005-04-131-3/+20 * Update web page URL.cy2005-04-138-8/+8 * Update 1.3.6 --> 1.4cy2005-04-1328-156/+72 * Udate 1.4.1 --> 1.4.8cy2005-04-139-297/+234 * s/.elseif/.eliflofi2005-04-131-1/+1 * - Merge and split existing patch-a[a-f] files.flz2005-04-1217-33/+980 * Fix and document insecure temporary file handling in portupgrade.simon2005-04-121-0/+51 * At Kris's request, back out the MACHINE_ARCH spelling correction untilobrien2005-04-1243-45/+45 * - Don't specify --with-ssl-dir when using the system's OpenSSLpav2005-04-121-0/+2 * - Update to 4.1.5pav2005-04-124-61/+3 * - Update to 20050329pav2005-04-122-3/+4 * Assist getting more ports working on AMD64 by obeying theobrien2005-04-1143-45/+45 * - Fix non-root installationvs2005-04-112-7/+7 * Now builds on sparc64 and (presumably) ia64kris2005-04-111-4/+0 * - Update to 0.2.1.flz2005-04-112-10/+11 * - Update to to 0.15.1.flz2005-04-112-8/+8 * Document three GAIM vulnerabilities.simon2005-04-111-0/+103 * Document an old PHP issue.simon2005-04-111-0/+42 * - Update to 20050410pav2005-04-102-3/+3 * Document squid -- DoS on failed PUT/POST requests vulnerability.simon2005-04-101-0/+28 * New port: security/pear-Auth_PrefManager PEAR preferences management classpav2005-04-10