Fri Jun 14 04:56:47 2013 UTC ()
Clean up pkglint flagged issue:
(1) mail/wl/Makefile
   - Add LICENSE=	gnu-gpl-v2.
   - Use # none instead onf # defined (EMACS_BUILDLINK=).
   - Use set instead of @set.
(2) mail/wl/patches/patch-aa
   - Add comment from old cvs log.
(3) mail/wl/patches/patch-utils_ptexinfmt.el
   Avoid diff -c confusion by pkglint:
   -*** [info] Error code 255
   + *** [info] Error code 255
(4) mk/defaults/options.description 14 Jun 2013 04:48:54 -0000
   Add following option:
   +emacs-w3m     W3m browser extention.


(mef)
diff -r1.45 -r1.46 pkgsrc/mail/wl/Makefile
diff -r1.17 -r1.18 pkgsrc/mail/wl/distinfo
diff -r1.2 -r1.3 pkgsrc/mail/wl/patches/patch-aa
diff -r1.1 -r1.2 pkgsrc/mail/wl/patches/patch-utils_ptexinfmt.el
diff -r1.422 -r1.423 pkgsrc/mk/defaults/options.description

cvs diff -r1.45 -r1.46 pkgsrc/mail/wl/Attic/Makefile (switch to unified diff)

--- pkgsrc/mail/wl/Attic/Makefile 2013/02/17 19:18:06 1.45
+++ pkgsrc/mail/wl/Attic/Makefile 2013/06/14 04:56:47 1.46
@@ -1,52 +1,53 @@ @@ -1,52 +1,53 @@
1# $NetBSD: Makefile,v 1.45 2013/02/17 19:18:06 dholland Exp $ 1# $NetBSD: Makefile,v 1.46 2013/06/14 04:56:47 mef Exp $
2 2
3DISTNAME= wl-2.14.0 3DISTNAME= wl-2.14.0
4PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME} 4PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
5PKGREVISION= 11 5PKGREVISION= 11
6CATEGORIES= mail 6CATEGORIES= mail
7MASTER_SITES= ftp://ftp.gohome.org/wl/stable/ 7MASTER_SITES= ftp://ftp.gohome.org/wl/stable/
8 8
9MAINTAINER= tech-pkg-ja@jp.NetBSD.org 9MAINTAINER= tech-pkg-ja@jp.NetBSD.org
10HOMEPAGE= http://www.gohome.org/wl/ 10HOMEPAGE= http://www.gohome.org/wl/
11COMMENT= Mail/news management system with IMAP4rev1 support for Emacs 11COMMENT= Mail/news management system with IMAP4rev1 support for Emacs
 12LICENSE= gnu-gpl-v2
12 13
13BUILD_TARGET= all info 14BUILD_TARGET= all info
14INSTALL_TARGET= install install-info 15INSTALL_TARGET= install install-info
15MAKE_FLAGS+= INFODIR=${DESTDIR:Q}${EMACS_INFOPREFIX:Q} 16MAKE_FLAGS+= INFODIR=${DESTDIR:Q}${EMACS_INFOPREFIX:Q}
16MAKE_FLAGS+= LISPDIR=${DESTDIR:Q}${EMACS_LISPPREFIX:Q} 17MAKE_FLAGS+= LISPDIR=${DESTDIR:Q}${EMACS_LISPPREFIX:Q}
17MAKE_FLAGS+= EMACS=${EMACS_FLAVOR:Q} 18MAKE_FLAGS+= EMACS=${EMACS_FLAVOR:Q}
18MAKE_FLAGS+= PIXMAPDIR=${DESTDIR:Q}${PREFIX:Q}/share/wl 19MAKE_FLAGS+= PIXMAPDIR=${DESTDIR:Q}${PREFIX:Q}/share/wl
19INFO_FILES= yes 20INFO_FILES= yes
20 21
21SUBST_CLASSES+= pixmap 22SUBST_CLASSES+= pixmap
22SUBST_STAGE.pixmap= post-configure 23SUBST_STAGE.pixmap= post-configure
23SUBST_MESSAGE.pixmap= Fixing wl-icon-directory default value 24SUBST_MESSAGE.pixmap= Fixing wl-icon-directory default value
24SUBST_FILES.pixmap= wl/wl-vars.el 25SUBST_FILES.pixmap= wl/wl-vars.el
25SUBST_VARS.pixmap= PREFIX 26SUBST_VARS.pixmap= PREFIX
26 27
27DOCDIR= ${PREFIX}/share/doc/wl 28DOCDIR= ${PREFIX}/share/doc/wl
28EXAMPLESDIR= ${PREFIX}/share/examples/wl 29EXAMPLESDIR= ${PREFIX}/share/examples/wl
29INSTALLATION_DIRS= ${DOCDIR}/en ${DOCDIR}/ja \ 30INSTALLATION_DIRS= ${DOCDIR}/en ${DOCDIR}/ja \
30 ${EXAMPLESDIR}/en ${EXAMPLESDIR}/ja \ 31 ${EXAMPLESDIR}/en ${EXAMPLESDIR}/ja \
31 ${EMACS_INFOPREFIX} 32 ${EMACS_INFOPREFIX}
32 33
33EMACS_BUILDLINK=# defined 34EMACS_BUILDLINK= # none
34 35
35post-install: 36post-install:
36 @set -e; \ 37 set -e; \
37 for f in BUGS NEWS README; do \ 38 for f in BUGS NEWS README; do \
38 ${INSTALL_DATA} ${WRKSRC:Q}/"$$f" ${DESTDIR:Q}${DOCDIR:Q}/en; \ 39 ${INSTALL_DATA} ${WRKSRC:Q}/"$$f" ${DESTDIR:Q}${DOCDIR:Q}/en; \
39 ${INSTALL_DATA} ${WRKSRC:Q}/"$$f".ja ${DESTDIR:Q}${DOCDIR:Q}/ja; \ 40 ${INSTALL_DATA} ${WRKSRC:Q}/"$$f".ja ${DESTDIR:Q}${DOCDIR:Q}/ja; \
40 done 41 done
41 ${INSTALL_DATA} ${WRKSRC:Q}/samples/en/dot.* ${DESTDIR:Q}${EXAMPLESDIR:Q}/en 42 ${INSTALL_DATA} ${WRKSRC:Q}/samples/en/dot.* ${DESTDIR:Q}${EXAMPLESDIR:Q}/en
42 ${INSTALL_DATA} ${WRKSRC:Q}/samples/ja/dot.* ${DESTDIR:Q}${EXAMPLESDIR:Q}/ja 43 ${INSTALL_DATA} ${WRKSRC:Q}/samples/ja/dot.* ${DESTDIR:Q}${EXAMPLESDIR:Q}/ja
43 44
44.include "../../editors/emacs/modules.mk" 45.include "../../editors/emacs/modules.mk"
45 46
46.include "options.mk" 47.include "options.mk"
47 48
48.include "../../devel/apel/buildlink3.mk" 49.include "../../devel/apel/buildlink3.mk"
49.include "../../devel/semi/buildlink3.mk" 50.include "../../devel/semi/buildlink3.mk"
50.include "../../misc/bbdb/buildlink3.mk" 51.include "../../misc/bbdb/buildlink3.mk"
51.include "../../security/openssl/buildlink3.mk" 52.include "../../security/openssl/buildlink3.mk"
52.include "../../mk/bsd.pkg.mk" 53.include "../../mk/bsd.pkg.mk"

cvs diff -r1.17 -r1.18 pkgsrc/mail/wl/Attic/distinfo (switch to unified diff)

--- pkgsrc/mail/wl/Attic/distinfo 2013/06/14 03:44:40 1.17
+++ pkgsrc/mail/wl/Attic/distinfo 2013/06/14 04:56:47 1.18
@@ -1,10 +1,10 @@ @@ -1,10 +1,10 @@
1$NetBSD: distinfo,v 1.17 2013/06/14 03:44:40 mef Exp $ 1$NetBSD: distinfo,v 1.18 2013/06/14 04:56:47 mef Exp $
2 2
3SHA1 (wl-2.14.0.tar.gz) = 75b93013444cb27ca540462afbaefdce0e157b3f 3SHA1 (wl-2.14.0.tar.gz) = 75b93013444cb27ca540462afbaefdce0e157b3f
4RMD160 (wl-2.14.0.tar.gz) = 1a5aa025fc05cbcf2a7d390b1804cc1b22f5df2b 4RMD160 (wl-2.14.0.tar.gz) = 1a5aa025fc05cbcf2a7d390b1804cc1b22f5df2b
5Size (wl-2.14.0.tar.gz) = 1101505 bytes 5Size (wl-2.14.0.tar.gz) = 1101505 bytes
6SHA1 (patch-aa) = ede97cce8b2574737a91941a905e067c940fb50a 6SHA1 (patch-aa) = 848a4dda06c77f94c05ea770056690065b0c6c93
7SHA1 (patch-ad) = 74e15c41f2f3521833e126809c713e65509fe5ce 7SHA1 (patch-ad) = 74e15c41f2f3521833e126809c713e65509fe5ce
8SHA1 (patch-ae) = fac4a79a5c8e315c7c92ba17eb3316c5f6338c4f 8SHA1 (patch-ae) = fac4a79a5c8e315c7c92ba17eb3316c5f6338c4f
9SHA1 (patch-ba) = 34bd7b7d06020aefad90b0b563b10c5877acdc1d 9SHA1 (patch-ba) = 34bd7b7d06020aefad90b0b563b10c5877acdc1d
10SHA1 (patch-utils_ptexinfmt.el) = 2ee8e64ef759b2185ed31cc93396fcbeb827cc41 10SHA1 (patch-utils_ptexinfmt.el) = 0699218d01fe2cc4c24fbf0ad1c00ff7d476269b

cvs diff -r1.2 -r1.3 pkgsrc/mail/wl/patches/Attic/patch-aa (switch to unified diff)

--- pkgsrc/mail/wl/patches/Attic/patch-aa 2002/01/08 11:47:17 1.2
+++ pkgsrc/mail/wl/patches/Attic/patch-aa 2013/06/14 04:56:47 1.3
@@ -1,13 +1,15 @@ @@ -1,13 +1,15 @@
1$NetBSD: patch-aa,v 1.2 2002/01/08 11:47:17 jun Exp $ 1$NetBSD: patch-aa,v 1.3 2013/06/14 04:56:47 mef Exp $
 2
 3Install info and examples.
2 4
3--- WL-CFG.orig Tue Oct 23 20:44:04 2001 5--- WL-CFG.orig Tue Oct 23 20:44:04 2001
4+++ WL-CFG 6+++ WL-CFG
5@@ -9,7 +9,7 @@ 7@@ -9,7 +9,7 @@
6 ; load-path)) 8 ; load-path))
7  9
8 ;; If you want to install utils, uncomment following line. 10 ;; If you want to install utils, uncomment following line.
9-;(setq wl-install-utils t) 11-;(setq wl-install-utils t)
10+(setq wl-install-utils t) 12+(setq wl-install-utils t)
11  13
12 ;; Set language for info file ("ja" or "en", both in default). 14 ;; Set language for info file ("ja" or "en", both in default).
13 ;; If you only need manual in English, uncomment following line. 15 ;; If you only need manual in English, uncomment following line.

cvs diff -r1.1 -r1.2 pkgsrc/mail/wl/patches/Attic/patch-utils_ptexinfmt.el (switch to unified diff)

--- pkgsrc/mail/wl/patches/Attic/patch-utils_ptexinfmt.el 2013/06/14 03:46:30 1.1
+++ pkgsrc/mail/wl/patches/Attic/patch-utils_ptexinfmt.el 2013/06/14 04:56:47 1.2
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: patch-utils_ptexinfmt.el,v 1.1 2013/06/14 03:46:30 mef Exp $ 1$NetBSD: patch-utils_ptexinfmt.el,v 1.2 2013/06/14 04:56:47 mef Exp $
2 2
3Loading `/usr/pkgsrc/mail/wl/work/wl-2.14.0/utils/ptexinfmt.el': old-style backquotes detected! 3 Loading `/usr/pkgsrc/mail/wl/work/wl-2.14.0/utils/ptexinfmt.el': old-style backquotes detected!
4Wrong number of arguments: put, 2 4 Wrong number of arguments: put, 2
5INFODIR is /usr/pkgsrc/mail/wl/work/.destdir/usr/pkg/info 5 INFODIR is /usr/pkgsrc/mail/wl/work/.destdir/usr/pkg/info
6 6
7*** [info] Error code 255 7 *** [info] Error code 255
8 8
9--- utils/ptexinfmt.el.orig 2005-02-24 17:16:41.000000000 +0900 9--- utils/ptexinfmt.el.orig 2005-02-24 17:16:41.000000000 +0900
10+++ utils/ptexinfmt.el 2013-06-14 11:50:27.000000000 +0900 10+++ utils/ptexinfmt.el 2013-06-14 11:50:27.000000000 +0900
11@@ -509,7 +509,7 @@ 11@@ -509,7 +509,7 @@
12 (goto-char texinfo-command-start)) 12 (goto-char texinfo-command-start))
13  13
14 ;; @,{c} ==> c, cedilla accent 14 ;; @,{c} ==> c, cedilla accent
15-(put ', 'texinfo-format 'texinfo-format-cedilla-accent) 15-(put ', 'texinfo-format 'texinfo-format-cedilla-accent)
16+(put '\, 'texinfo-format 'texinfo-format-cedilla-accent) 16+(put '\, 'texinfo-format 'texinfo-format-cedilla-accent)
17 (ptexinfmt-defun-if-void texinfo-format-cedilla-accent () 17 (ptexinfmt-defun-if-void texinfo-format-cedilla-accent ()
18 (insert (texinfo-parse-arg-discard) ",") 18 (insert (texinfo-parse-arg-discard) ",")
19 (goto-char texinfo-command-start)) 19 (goto-char texinfo-command-start))

cvs diff -r1.422 -r1.423 pkgsrc/mk/defaults/options.description (switch to unified diff)

--- pkgsrc/mk/defaults/options.description 2013/05/26 18:20:29 1.422
+++ pkgsrc/mk/defaults/options.description 2013/06/14 04:56:47 1.423
@@ -1,729 +1,730 @@ @@ -1,729 +1,730 @@
1aalib Enable aalib support. 1aalib Enable aalib support.
2abook Enable abook support. 2abook Enable abook support.
3acl Enable POSIX ACL support. 3acl Enable POSIX ACL support.
4adobe-cidfonts Select Adobe-fonts. 4adobe-cidfonts Select Adobe-fonts.
5ads Enable Windows Active Directory support. 5ads Enable Windows Active Directory support.
6agg Enable agg support. 6agg Enable agg support.
7alsa Enable ALSA support. 7alsa Enable ALSA support.
8amanda-dump-snap If dump supports -X, use it. 8amanda-dump-snap If dump supports -X, use it.
9amanda-fqdn Use FQDN's in Amanda. 9amanda-fqdn Use FQDN's in Amanda.
10amanda-smb Enable SMB backup support. 10amanda-smb Enable SMB backup support.
11amanda-ssh Enable ssh as a transport. 11amanda-ssh Enable ssh as a transport.
12amtterm-gamt Build amtterm GUI version (gamt). 12amtterm-gamt Build amtterm GUI version (gamt).
13amule-alc Build aMule LinkCreator GUI version. 13amule-alc Build aMule LinkCreator GUI version.
14amule-alcc Build aMule LinkCreator for console. 14amule-alcc Build aMule LinkCreator for console.
15amule-cas Build C aMule Statistics. 15amule-cas Build C aMule Statistics.
16amule-cmd Build aMule command line client. 16amule-cmd Build aMule command line client.
17amule-daemon Build aMule daemon version. 17amule-daemon Build aMule daemon version.
18amule-ed2k Build aMule ed2k links handler. 18amule-ed2k Build aMule ed2k links handler.
19amule-gui Build aMule remote GUI. 19amule-gui Build aMule remote GUI.
20amule-monolithic Build monolithic aMule app. 20amule-monolithic Build monolithic aMule app.
21amule-webserver Build aMule WebServer. 21amule-webserver Build aMule WebServer.
22amule-wxcas Build aMule GUI Statistics. 22amule-wxcas Build aMule GUI Statistics.
23anope-dbencryption Enable database encryption. 23anope-dbencryption Enable database encryption.
24anthy Use Anthy as Japanese conversion program. 24anthy Use Anthy as Japanese conversion program.
25anthy-2ch-dict Include the 2ch dictionary. 25anthy-2ch-dict Include the 2ch dictionary.
26anthy-okinawa-dict Include the okinawa dictionary. 26anthy-okinawa-dict Include the okinawa dictionary.
27apache Enable support for Apache web server. 27apache Enable support for Apache web server.
28apache-mpm-event Use multi-threaded workers in Apache web server. 28apache-mpm-event Use multi-threaded workers in Apache web server.
29apache-mpm-prefork Use pre-forked workers in Apache web server. 29apache-mpm-prefork Use pre-forked workers in Apache web server.
30apache-mpm-worker Use multiple processes of multi-threaded workers in Apache web server. 30apache-mpm-worker Use multiple processes of multi-threaded workers in Apache web server.
31apache-shared-modules Build all modules as shared for apache22. 31apache-shared-modules Build all modules as shared for apache22.
32apr1 Use Apache Portable Runtime 1.x rather than 0.x. 32apr1 Use Apache Portable Runtime 1.x rather than 0.x.
33ares Use the ares library for asynchronous name resolution. 33ares Use the ares library for asynchronous name resolution.
34aria2-metalink Enable Metalink support. 34aria2-metalink Enable Metalink support.
35arts Use the aRts audio daemon. 35arts Use the aRts audio daemon.
36aspell Add spell checking support using aspell. 36aspell Add spell checking support using aspell.
37ass Enable subtitle renderer for the ASS/SSA format 37ass Enable subtitle renderer for the ASS/SSA format
38aterm-big5 Enable Chinese support. 38aterm-big5 Enable Chinese support.
39aterm-greek Enable Greek keyboard support. 39aterm-greek Enable Greek keyboard support.
40aterm-kanji Enable kanji support. 40aterm-kanji Enable kanji support.
41aterm-xterm-scroll Use xterm-scrollbar instead of a NeXT-like one. 41aterm-xterm-scroll Use xterm-scrollbar instead of a NeXT-like one.
42atheme-large-net Enable support for large networks (i.e. > 2000 users). 42atheme-large-net Enable support for large networks (i.e. > 2000 users).
43audiofile Enable audio conversion using libaudiofile. 43audiofile Enable audio conversion using libaudiofile.
44avahi Enable DNS service discovery and multicast DNS support. 44avahi Enable DNS service discovery and multicast DNS support.
45avahi-howl Enable howl compatibility in avahi. 45avahi-howl Enable howl compatibility in avahi.
46bacula-static Enable building of statically linked versions of the Bacula daemons. 46bacula-static Enable building of statically linked versions of the Bacula daemons.
47batch Enable batch mode support. 47batch Enable batch mode support.
48bdb Enable Berkeley DB support. 48bdb Enable Berkeley DB support.
49bind-dig-sigchase Enable dig(1) option +sigchase for DNSSEC signature chasing. 49bind-dig-sigchase Enable dig(1) option +sigchase for DNSSEC signature chasing.
50bind-xml-statistics-server Enable building in the statistics server in bind95 and later. 50bind-xml-statistics-server Enable building in the statistics server in bind95 and later.
51bittorrent Enable bittorrent support. 51bittorrent Enable bittorrent support.
52blender-exppython Enable the Experimental Python support. 52blender-exppython Enable the Experimental Python support.
53boehm-gc Use Boehm's garbage collector for memory allocation. 53boehm-gc Use Boehm's garbage collector for memory allocation.
54bozohttpd-do-htpasswd Enable .htpasswd file processing in bozohttpd. 54bozohttpd-do-htpasswd Enable .htpasswd file processing in bozohttpd.
55bugzilla-charts Enable generation of charts. 55bugzilla-charts Enable generation of charts.
56bugzilla-imagemagick Compress .BMPs to save space. 56bugzilla-imagemagick Compress .BMPs to save space.
57bugzilla-patchviewer Enable patchviewer support. 57bugzilla-patchviewer Enable patchviewer support.
58bugzilla-xmlimportbugs Bulk import/export of bugs in XML format. 58bugzilla-xmlimportbugs Bulk import/export of bugs in XML format.
59bzip2 Enable compression using bzip2. 59bzip2 Enable compression using bzip2.
60caca Enable libcaca support. 60caca Enable libcaca support.
61cairo Enable cairo support. 61cairo Enable cairo support.
62camlzip Enable camlzip support (for zip/gz/jar). 62camlzip Enable camlzip support (for zip/gz/jar).
63canna Use Canna as Japanese conversion program. 63canna Use Canna as Japanese conversion program.
64cares Use the c-ares library for asynchronous name resolution. 64cares Use the c-ares library for asynchronous name resolution.
65catalog-mysql Store Bacula catalog in MySQL database. 65catalog-mysql Store Bacula catalog in MySQL database.
66catalog-pgsql Store Bacula catalog in PostgreSQL database. 66catalog-pgsql Store Bacula catalog in PostgreSQL database.
67catalog-sqlite Store Bacula catalog in SQLite database. 67catalog-sqlite Store Bacula catalog in SQLite database.
68catalog-sqlite3 Store Bacula catalog in SQLite 3 database. 68catalog-sqlite3 Store Bacula catalog in SQLite 3 database.
69cdparanoia Use cdparanoia to rip CDDA media. 69cdparanoia Use cdparanoia to rip CDDA media.
70cg Add support for the Cg compiler. 70cg Add support for the Cg compiler.
71cgi Enable CGI support. 71cgi Enable CGI support.
72chasen Use ChaSen as the Japanese Morphological Analzer. 72chasen Use ChaSen as the Japanese Morphological Analzer.
73cjk Enable Chinese/Japanese/Korean support. 73cjk Enable Chinese/Japanese/Korean support.
74clamav Enable ClamAV support. 74clamav Enable ClamAV support.
75claws-mail-jpilot Add jpilot support. 75claws-mail-jpilot Add jpilot support.
76clisp Common/C Lisp. 76clisp Common/C Lisp.
77clutter Use Clutter for graphics support. 77clutter Use Clutter for graphics support.
78compface Enable compface support. 78compface Enable compface support.
79coqide Enable ide support for coq. 79coqide Enable ide support for coq.
80coreaudio Enable Core Audio library support. 80coreaudio Enable Core Audio library support.
81courier-dsn Delivery Status Notification (DNS) mail delivery. 81courier-dsn Delivery Status Notification (DNS) mail delivery.
82courier-esmtp ESMTP mail delivery. 82courier-esmtp ESMTP mail delivery.
83courier-gnutls Support using GNU TLS instead of OpenSSL. 83courier-gnutls Support using GNU TLS instead of OpenSSL.
84courier-local Local mail delivery. 84courier-local Local mail delivery.
85courier-uucp UUCP mail delivery. 85courier-uucp UUCP mail delivery.
86cups Enable cups (Common UNIX Printing System) support. 86cups Enable cups (Common UNIX Printing System) support.
87curl Enable curl support. 87curl Enable curl support.
88curses Enable curses support. 88curses Enable curses support.
89cvs Enable CVS support. 89cvs Enable CVS support.
90cvsgraph Enable cvsgraph support. 90cvsgraph Enable cvsgraph support.
91dar-int32 Use 32-bit integers for file lengths in Dar. 91dar-int32 Use 32-bit integers for file lengths in Dar.
92dar-int64 Use 64-bit integers for file lengths in Dar. 92dar-int64 Use 64-bit integers for file lengths in Dar.
93darwin Build and/or run on Darwin and Mac OS X. 93darwin Build and/or run on Darwin and Mac OS X.
94db2 Enable db2 support. 94db2 Enable db2 support.
95db4 Enable db4 support. 95db4 Enable db4 support.
96dbh Enable DBH support. 96dbh Enable DBH support.
97dbus Enable dbus (desktop bus) support. 97dbus Enable dbus (desktop bus) support.
98debug Enable debugging facilities in the package. 98debug Enable debugging facilities in the package.
99deliver-suid Install deliver executable setuid root. 99deliver-suid Install deliver executable setuid root.
100disable-compile-inits Disable compile time implicit initialization. 100disable-compile-inits Disable compile time implicit initialization.
101djbdns-cachestats Patch to add stats for cache hits/misses. 101djbdns-cachestats Patch to add stats for cache hits/misses.
102djbdns-ignoreip2 Patch to treat certain responses as NXDOMAIN. 102djbdns-ignoreip2 Patch to treat certain responses as NXDOMAIN.
103djbdns-qmerge1 Initial patches to address dnscache poisoning weakness. 103djbdns-qmerge1 Initial patches to address dnscache poisoning weakness.
104djbdns-qmerge2 Newer patches to address dnscache poisoning weakness. 104djbdns-qmerge2 Newer patches to address dnscache poisoning weakness.
105djbdns-tinydns64 Patch to fix tinydns-data on 64-bit platforms. 105djbdns-tinydns64 Patch to fix tinydns-data on 64-bit platforms.
106djbfft-pentium Optimize for Pentium{,MMX} processors. 106djbfft-pentium Optimize for Pentium{,MMX} processors.
107djbfft-ppro Optimize for Pentium{Pro,II,III} processors. 107djbfft-ppro Optimize for Pentium{Pro,II,III} processors.
108djbfft-sparc Optimize for UltraSPARC-{I,II} processors. 108djbfft-sparc Optimize for UltraSPARC-{I,II} processors.
109djbware-errno-hack Patch to #include <errno.h> for correctness. 109djbware-errno-hack Patch to #include <errno.h> for correctness.
110djvu Enable DjVuLibRe support. 110djvu Enable DjVuLibRe support.
111dkim-milter-arlib ar(3) support for dkim-milter. 111dkim-milter-arlib ar(3) support for dkim-milter.
112dkim-stats dkim-stats(8) support for dkim-milter. 112dkim-stats dkim-stats(8) support for dkim-milter.
113dnsrbl Enable DNS Real-time Blackhole List support. 113dnsrbl Enable DNS Real-time Blackhole List support.
114dnssd Enable DNS Service Discovery Protocol support. 114dnssd Enable DNS Service Discovery Protocol support.
115dnssec Enable DNSSEC validation. 115dnssec Enable DNSSEC validation.
116doc Include the documentation. 116doc Include the documentation.
117drac Enable DRAC support. 117drac Enable DRAC support.
118dri Enable Direct Rendering support. 118dri Enable Direct Rendering support.
119drupal-xmlservices Enable XML-based services. 119drupal-xmlservices Enable XML-based services.
120dspam-preferences-extension Enable preferences extension. 120dspam-preferences-extension Enable preferences extension.
121dspam-verbose-debug Enable verbose debugging support. 121dspam-verbose-debug Enable verbose debugging support.
122dspam-virtualusers Enable support for virtual users. 122dspam-virtualusers Enable support for virtual users.
123dtrace Enable DTrace support. 123dtrace Enable DTrace support.
124dts Enable DTS Coherent Acoustics support. 124dts Enable DTS Coherent Acoustics support.
125dv Enable usage of the libdv library. 125dv Enable usage of the libdv library.
126dvdnav Enable libdvdnav support to navigate DVDs. 126dvdnav Enable libdvdnav support to navigate DVDs.
127dvdread Enable reproduction of DVDs. 127dvdread Enable reproduction of DVDs.
128dvi Enable device independent file format (mostly TeX) support. 128dvi Enable device independent file format (mostly TeX) support.
129eaccelerator-disassembler Include disassembler. 129eaccelerator-disassembler Include disassembler.
130eaccelerator-doc-comment-inclusion Retain doc-comments in internal php structures. 130eaccelerator-doc-comment-inclusion Retain doc-comments in internal php structures.
131eb Enable EB dictionary library support. 131eb Enable EB dictionary library support.
132ecl Use Embeddable Common Lisp. 132ecl Use Embeddable Common Lisp.
133ecore Enable ecore library support. 133ecore Enable ecore library support.
134eekboard Use eekboard for virtual keyboard support. 134eekboard Use eekboard for virtual keyboard support.
135efence Build with Electric Fence malloc() debugger support. 135efence Build with Electric Fence malloc() debugger support.
136efnet Enable tweaks to support EFNet. 136efnet Enable tweaks to support EFNet.
137elinks-exmode Enable vi-like command entry. 137elinks-exmode Enable vi-like command entry.
138elinks-fastmem Allow direct use of system memory allocation functions. 138elinks-fastmem Allow direct use of system memory allocation functions.
139elinks-html-highlight Enable HTML highlighting using DOM engine. 139elinks-html-highlight Enable HTML highlighting using DOM engine.
140elinks-root-exec Allow elinks to run as root. 140elinks-root-exec Allow elinks to run as root.
 141emacs-w3m W3m browser extention.
141emacs-xaw3d Emacs should use Xaw3D for the scrollbar. 142emacs-xaw3d Emacs should use Xaw3D for the scrollbar.
142embedded-server Enable embedded server support for MySQL. 143embedded-server Enable embedded server support for MySQL.
143enchant Add spell checking support using enchant. 144enchant Add spell checking support using enchant.
144enchant-zemberek Add spell checking support for Turkish. 145enchant-zemberek Add spell checking support for Turkish.
145epoll Enable support for epoll I/O event notification facility. 146epoll Enable support for epoll I/O event notification facility.
146epub Enable epub support. 147epub Enable epub support.
147esound Enable support for the Enlightment Sound Daemon. 148esound Enable support for the Enlightment Sound Daemon.
148evolution-data-server Enable support for evolution-data-server. 149evolution-data-server Enable support for evolution-data-server.
149exim-build-eximon Also build the X based exim queue monitoring tool. 150exim-build-eximon Also build the X based exim queue monitoring tool.
150exim-content-scan Call virus and spam scanning direct from ACLs. 151exim-content-scan Call virus and spam scanning direct from ACLs.
151exim-lookup-dnsdb Use DNS for lookups (as general database facility). 152exim-lookup-dnsdb Use DNS for lookups (as general database facility).
152exim-lookup-dsearch Lookup via key as filename in directory. 153exim-lookup-dsearch Lookup via key as filename in directory.
153exim-lookup-ldap LDAP lookup using a query in the form of a URL. 154exim-lookup-ldap LDAP lookup using a query in the form of a URL.
154exim-lookup-mysql Perform lookups in MySQL database. 155exim-lookup-mysql Perform lookups in MySQL database.
155exim-lookup-pgsql Perform lookups in PostgreSQL database. 156exim-lookup-pgsql Perform lookups in PostgreSQL database.
156exim-lookup-sqlite Perform lookups in SQLite database. 157exim-lookup-sqlite Perform lookups in SQLite database.
157exim-lookup-whoson Lookup in whoson dynamic IP address. 158exim-lookup-whoson Lookup in whoson dynamic IP address.
158exim-old-demime Use deprecated "demime" condition in the DATA ACL. 159exim-old-demime Use deprecated "demime" condition in the DATA ACL.
159expat Use the expat library for XML parsing. 160expat Use the expat library for XML parsing.
160ezmlm-althash Patch to hash subscriber list case-insensitively. 161ezmlm-althash Patch to hash subscriber list case-insensitively.
161f90 Enable Fortran 90 support. 162f90 Enable Fortran 90 support.
162faac Enable AAC decoding support using faac. 163faac Enable AAC decoding support using faac.
163faad Enable AAC decoding support using faad2. 164faad Enable AAC decoding support using faad2.
164fam Support using File Alteration Monitor (FAM). 165fam Support using File Alteration Monitor (FAM).
165farsight Enable farsight2 support. 166farsight Enable farsight2 support.
166fastcgi Use FastCGI as the CGI manager. 167fastcgi Use FastCGI as the CGI manager.
167fd-small Build smaller misc/fd package. 168fd-small Build smaller misc/fd package.
168ffmpeg Enable ffmpeg support. 169ffmpeg Enable ffmpeg support.
169fftw Use the fftw library for Discrete Fourier Transforms. 170fftw Use the fftw library for Discrete Fourier Transforms.
170finger Enable finger support. 171finger Enable finger support.
171firefox Use firefox as gecko rendering engine. 172firefox Use firefox as gecko rendering engine.
172firefox3 Use firefox3 as gecko rendering engine. 173firefox3 Use firefox3 as gecko rendering engine.
173flac Enable FLAC support. 174flac Enable FLAC support.
174floppyd Use floppyd to access floppy device. 175floppyd Use floppyd to access floppy device.
175fluidsynth Enable MIDI support using fluidsynth. 176fluidsynth Enable MIDI support using fluidsynth.
176fontconfig Enable FONTCONFIG (fonts/fontconfig) support. 177fontconfig Enable FONTCONFIG (fonts/fontconfig) support.
177freediameter-all-extensions Build all extensions for freeDiameter (except test and debug). 178freediameter-all-extensions Build all extensions for freeDiameter (except test and debug).
178freeradius-simul-use Enable Simultaneous-Use. 179freeradius-simul-use Enable Simultaneous-Use.
179freeswitch-08k 8000Hz Audio Files 180freeswitch-08k 8000Hz Audio Files
180freeswitch-16k 16000Hz Audio Files 181freeswitch-16k 16000Hz Audio Files
181freeswitch-32k 32000Hz Audio Files 182freeswitch-32k 32000Hz Audio Files
182freeswitch-48k 48000Hz Audio Files 183freeswitch-48k 48000Hz Audio Files
183freetype Enable freetype support. 184freetype Enable freetype support.
184fribidi Enable BIDI support using fribidi. 185fribidi Enable BIDI support using fribidi.
185ftp Enable File Transfer Protocol (FTP) support. 186ftp Enable File Transfer Protocol (FTP) support.
186fts Enable full-text searching. 187fts Enable full-text searching.
187fuse Enable Filesystem in Userspace support. 188fuse Enable Filesystem in Userspace support.
188gamin Enable Gamin file and directory monitoring system support. 189gamin Enable Gamin file and directory monitoring system support.
189gcc-ada Build the gcc Ada frontend and libraries. 190gcc-ada Build the gcc Ada frontend and libraries.
190gcc-c++ Build the gcc C++ frontend and libraries. 191gcc-c++ Build the gcc C++ frontend and libraries.
191gcc-fortran Build the gcc Fortran frontend and libraries. 192gcc-fortran Build the gcc Fortran frontend and libraries.
192gcc-go Build the gcc Go frontend and libraries. 193gcc-go Build the gcc Go frontend and libraries.
193gcc-inplace-math Build math libs inplace instead of depending on them. 194gcc-inplace-math Build math libs inplace instead of depending on them.
194gcc-java Build the gcc Java frontend, tools and libraries. 195gcc-java Build the gcc Java frontend, tools and libraries.
195gcc-multilib Build libraries for multiple ABI's. 196gcc-multilib Build libraries for multiple ABI's.
196gcc-objc Build the gcc Objective-C frontend and libraries. 197gcc-objc Build the gcc Objective-C frontend and libraries.
197gcc-objc++ Build the gcc Objective-C++ frontend and libraries. 198gcc-objc++ Build the gcc Objective-C++ frontend and libraries.
198gd Use GD to render graphical output. 199gd Use GD to render graphical output.
199gdal Use the GDAL library. 200gdal Use the GDAL library.
200gdb6-tui Build the tui application. 201gdb6-tui Build the tui application.
201gdbm Use the GNU gdbm database library. 202gdbm Use the GNU gdbm database library.
202gdk-pixbuf Use gdk-pixbuf as imaging library. 203gdk-pixbuf Use gdk-pixbuf as imaging library.
203geoip Enable IP-to-country-lookup using the GeoIP C library. 204geoip Enable IP-to-country-lookup using the GeoIP C library.
204ggi Enable GGI support. 205ggi Enable GGI support.
205ghostscript Enable GhostScript support. 206ghostscript Enable GhostScript support.
206gif Enable GIF support. 207gif Enable GIF support.
207gimp Enable GIMP support. 208gimp Enable GIMP support.
208gimp1-helpbrowser Link against gnome1 to get a help browser. 209gimp1-helpbrowser Link against gnome1 to get a help browser.
209glade Enable Glade support 210glade Enable Glade support
210gmp Enable gmp (GNU Multiple Precision Arithmetic Library) support. 211gmp Enable gmp (GNU Multiple Precision Arithmetic Library) support.
211gmp-fat Build-in all x86 assembler code, detecting CPU at run-time. 212gmp-fat Build-in all x86 assembler code, detecting CPU at run-time.
212gnome Enable GNOME support. 213gnome Enable GNOME support.
213gnome-keyring Enable GNOME keyring support. 214gnome-keyring Enable GNOME keyring support.
214gnomecanvas Enable GNOME canvas support 215gnomecanvas Enable GNOME canvas support
215gnomevfs Enable GNOME Virtual File System support. 216gnomevfs Enable GNOME Virtual File System support.
216gnutls Enable GNU TLS support. 217gnutls Enable GNU TLS support.
217goffice Enable goffice support. 218goffice Enable goffice support.
218gopher Enable support for the Gopher information system. 219gopher Enable support for the Gopher information system.
219gpgme Enable gpg support, by using the gpgme library. 220gpgme Enable gpg support, by using the gpgme library.
220gqmpeg-japanese Japanese ID3 tag support. 221gqmpeg-japanese Japanese ID3 tag support.
221gqmpeg-russian Russian ID3 tag support. 222gqmpeg-russian Russian ID3 tag support.
222graphicsmagick Use GraphicsMagick as imaging library. 223graphicsmagick Use GraphicsMagick as imaging library.
223groff-docs Install documentation images. 224groff-docs Install documentation images.
224groonga-suggest-learner Enable Groonga suggest learner. 225groonga-suggest-learner Enable Groonga suggest learner.
225gsasl Enable SASL support with gsasl. 226gsasl Enable SASL support with gsasl.
226gsl Use GNU Scientific Library. 227gsl Use GNU Scientific Library.
227gssapi Enable gssapi (Kerberos V) support. 228gssapi Enable gssapi (Kerberos V) support.
228gstreamer Enable gstreamer support. 229gstreamer Enable gstreamer support.
229gtk Enable support for GTK. 230gtk Enable support for GTK.
230gtk2 Enable support for GTK2. 231gtk2 Enable support for GTK2.
231gtk3 Enable support for GTK3. 232gtk3 Enable support for GTK3.
232gtksourceview Enable gtksourceview support. 233gtksourceview Enable gtksourceview support.
233gtksourceview2 Enable gtksourceview2 support. 234gtksourceview2 Enable gtksourceview2 support.
234gtkspell Enable gtkspell support. 235gtkspell Enable gtkspell support.
235guile Enable support for GUILE. 236guile Enable support for GUILE.
236gzip Enable compression using gzip. 237gzip Enable compression using gzip.
237hal Support for the freedesktop.org Hardware Abstraction Layer. 238hal Support for the freedesktop.org Hardware Abstraction Layer.
238halfops Halfops are similar to plain ops, but can't kick/deop plain ops. 239halfops Halfops are similar to plain ops, but can't kick/deop plain ops.
239hawknl Enable HawkNL network API support. 240hawknl Enable HawkNL network API support.
240hping-suid Install hping executable setuid root. 241hping-suid Install hping executable setuid root.
241hpn-patch High Performance Enabled SSH/SCP for OpenSSH. 242hpn-patch High Performance Enabled SSH/SCP for OpenSSH.
242hunspell Add spell checking support using hunspell. 243hunspell Add spell checking support using hunspell.
243i586-optimized Optimize for i586 (only). 244i586-optimized Optimize for i586 (only).
244ibus Enable Intelligent Input Bus support. 245ibus Enable Intelligent Input Bus support.
245icu Enable icu support. 246icu Enable icu support.
246id3 Enable id3 tagging support. 247id3 Enable id3 tagging support.
247idea Enable support for the IDEA cryptographic algorithm (possible license+patent problems). 248idea Enable support for the IDEA cryptographic algorithm (possible license+patent problems).
248idn Internationalized Domain Names (IDN) support. 249idn Internationalized Domain Names (IDN) support.
249ikiwiki-amazon-s3 Enable publishing rendered pages to Amazon S3 servers. 250ikiwiki-amazon-s3 Enable publishing rendered pages to Amazon S3 servers.
250ikiwiki-search Enable full-text search using xapian. 251ikiwiki-search Enable full-text search using xapian.
251ilbc Enable the use of iLBC (Internet Low Bit Rate Codec). 252ilbc Enable the use of iLBC (Internet Low Bit Rate Codec).
252imagemagick Use ImageMagick as imaging library. 253imagemagick Use ImageMagick as imaging library.
253imap Enable imap support. 254imap Enable imap support.
254imapuw-cleartextpwd Allow cleartext passwords over non-encrypted connections. 255imapuw-cleartextpwd Allow cleartext passwords over non-encrypted connections.
255imapuw-whoson Enable whoson support. 256imapuw-whoson Enable whoson support.
256imlib Use imlib as imaging library. 257imlib Use imlib as imaging library.
257imlib2 Use imlib2 as imaging library. 258imlib2 Use imlib2 as imaging library.
258imlib2-amd64 Enable amd64 speedups. 259imlib2-amd64 Enable amd64 speedups.
259inet6 Enable support for IPv6. 260inet6 Enable support for IPv6.
260inotify Enable libinotify support. 261inotify Enable libinotify support.
261inspircd-remoteinet6 Enable remote includes over IPv6. 262inspircd-remoteinet6 Enable remote includes over IPv6.
262inspircd-sqlauth Enable connections to be tied into a database table. 263inspircd-sqlauth Enable connections to be tied into a database table.
263inspircd-sqllog Enable logging of network-wide data for your network into a database. 264inspircd-sqllog Enable logging of network-wide data for your network into a database.
264inspircd-sqloper Enable storage of oper credentials in an SQL table. 265inspircd-sqloper Enable storage of oper credentials in an SQL table.
265inspircd-sqlutils Enable developer utilities which allow certain other SQL modules to be implemented easily. 266inspircd-sqlutils Enable developer utilities which allow certain other SQL modules to be implemented easily.
266inspircd-ziplinks Compress data before transmitting it between servers. 267inspircd-ziplinks Compress data before transmitting it between servers.
267introspection Enable GObject Introspection support. 268introspection Enable GObject Introspection support.
268iodbc Enable ODBC support via iODBC. 269iodbc Enable ODBC support via iODBC.
269ipa Select IPA fonts. 270ipa Select IPA fonts.
270ipa-memfunc-debug Enable ipa_memfunc debugging. 271ipa-memfunc-debug Enable ipa_memfunc debugging.
271ipa-without-autorules Disable dynamic rules support. 272ipa-without-autorules Disable dynamic rules support.
272ipa-without-limits Disable limits support. 273ipa-without-limits Disable limits support.
273ipa-without-rules Disable static rules support. 274ipa-without-rules Disable static rules support.
274ipa-without-sublimits Disable sublimits support. 275ipa-without-sublimits Disable sublimits support.
275ipa-without-thresholds Disable thresholds support. 276ipa-without-thresholds Disable thresholds support.
276irssi-perl Enable Perl support in irssi. 277irssi-perl Enable Perl support in irssi.
277iso Build a .iso file. 278iso Build a .iso file.
278ispell Add spell checking support using ispell. 279ispell Add spell checking support using ispell.
279jabber Enable support for jabber/gtalk. 280jabber Enable support for jabber/gtalk.
280jack Enable support for the JACK audio server. 281jack Enable support for the JACK audio server.
281jasper Enable JPEG 2000 support using the jasper library. 282jasper Enable JPEG 2000 support using the jasper library.
282java Enable Java support. 283java Enable Java support.
283javascript Enable Javascript support. 284javascript Enable Javascript support.
284jdbc-mysql31 Enable MySQL JDBC driver. 285jdbc-mysql31 Enable MySQL JDBC driver.
285jdbc-mysql5 Enable MySQL JDBC driver. 286jdbc-mysql5 Enable MySQL JDBC driver.
286jpeg Enable JPEG support. 287jpeg Enable JPEG support.
287jwhois-enable-cache Enable cache support. 288jwhois-enable-cache Enable cache support.
288kde Enable KDE support. 289kde Enable KDE support.
289kde3 Enable support for KDE 3. 290kde3 Enable support for KDE 3.
290kde4 Enable support for KDE 4. 291kde4 Enable support for KDE 4.
291kerberos Enable Kerberos support. 292kerberos Enable Kerberos support.
292kerberos-prefix-cmds Enables addition of a prefix to the kerberos client commands. 293kerberos-prefix-cmds Enables addition of a prefix to the kerberos client commands.
293kerberos4 Enable Kerberos4 support. 294kerberos4 Enable Kerberos4 support.
294kermit-suid-uucp Install kermit setuid uucp. 295kermit-suid-uucp Install kermit setuid uucp.
295klash Install Konqueror flash plugin. 296klash Install Konqueror flash plugin.
296kqueue Enable support for kernel event notification mechanism. 297kqueue Enable support for kernel event notification mechanism.
297lablgtk Use lablgtk. 298lablgtk Use lablgtk.
298lablgtk1 Use lablgtk1 (GTK1). 299lablgtk1 Use lablgtk1 (GTK1).
299ladspa Enable Linux Audio Developers Simple Plugin API support. 300ladspa Enable Linux Audio Developers Simple Plugin API support.
300lame Use the lame encoder to create MP3 files. 301lame Use the lame encoder to create MP3 files.
301lang-af Add Afrikaans language support. 302lang-af Add Afrikaans language support.
302lang-ar Add Arabic language support. 303lang-ar Add Arabic language support.
303lang-be Add Belarusian language support. 304lang-be Add Belarusian language support.
304lang-bg Add Bulgarian language support. 305lang-bg Add Bulgarian language support.
305lang-br Add Breton language support. 306lang-br Add Breton language support.
306lang-bs Add Bosnian language support. 307lang-bs Add Bosnian language support.
307lang-ca Add Catalan language support. 308lang-ca Add Catalan language support.
308lang-cs Add Czech language support. 309lang-cs Add Czech language support.
309lang-cy Add Welsh language support. 310lang-cy Add Welsh language support.
310lang-da Add Danish language support. 311lang-da Add Danish language support.
311lang-de Add German language support. 312lang-de Add German language support.
312lang-el Add Greek language support. 313lang-el Add Greek language support.
313lang-en Add English language support. 314lang-en Add English language support.
314lang-en-gb Add British English language support. 315lang-en-gb Add British English language support.
315lang-eo Add Esperanto language support. 316lang-eo Add Esperanto language support.
316lang-es Add Spanish language support. 317lang-es Add Spanish language support.
317lang-et Add Estonian language support. 318lang-et Add Estonian language support.
318lang-fa Add Persian language support. 319lang-fa Add Persian language support.
319lang-fi Add Finnish language support. 320lang-fi Add Finnish language support.
320lang-fo Add Faroese language support. 321lang-fo Add Faroese language support.
321lang-fr Add French language support. 322lang-fr Add French language support.
322lang-ga Add Irish language support. 323lang-ga Add Irish language support.
323lang-gl Add Galician language support. 324lang-gl Add Galician language support.
324lang-gn Add Guarani language support. 325lang-gn Add Guarani language support.
325lang-gu Add Gujarati language support. 326lang-gu Add Gujarati language support.
326lang-he Add Hebrew language support. 327lang-he Add Hebrew language support.
327lang-hi Add Hindi language support. 328lang-hi Add Hindi language support.
328lang-hr Add Croatian language support. 329lang-hr Add Croatian language support.
329lang-hu Add Hungarian language support. 330lang-hu Add Hungarian language support.
330lang-id Add Indonesian language support. 331lang-id Add Indonesian language support.
331lang-is Add Icelandic language support. 332lang-is Add Icelandic language support.
332lang-it Add Italian language support. 333lang-it Add Italian language support.
333lang-ja Add Japanese language support. 334lang-ja Add Japanese language support.
334lang-ko Add Korean language support. 335lang-ko Add Korean language support.
335lang-ku Add Kurdish language support. 336lang-ku Add Kurdish language support.
336lang-lt Add Lithuanian language support. 337lang-lt Add Lithuanian language support.
337lang-lv Add Latvian language support. 338lang-lv Add Latvian language support.
338lang-mr Add Marathi language support. 339lang-mr Add Marathi language support.
339lang-ms Add Malay language support. 340lang-ms Add Malay language support.
340lang-nb Add Norwegian Bokmal (book language) language support. 341lang-nb Add Norwegian Bokmal (book language) language support.
341lang-nl Add Dutch language support. 342lang-nl Add Dutch language support.
342lang-no Add Norwegian language support. 343lang-no Add Norwegian language support.
343lang-pl Add Polish language support. 344lang-pl Add Polish language support.
344lang-pt Add Portuguese language support. 345lang-pt Add Portuguese language support.
345lang-pt-br Add Brazilian Portuguese language support. 346lang-pt-br Add Brazilian Portuguese language support.
346lang-rm Add Rhaeto-Romance language support. 347lang-rm Add Rhaeto-Romance language support.
347lang-ro Add Romanian language support. 348lang-ro Add Romanian language support.
348lang-ru Add Russian language support. 349lang-ru Add Russian language support.
349lang-sk Add Slovak language support. 350lang-sk Add Slovak language support.
350lang-sl Add Slovenian language support. 351lang-sl Add Slovenian language support.
351lang-sq Add Albanian language support. 352lang-sq Add Albanian language support.
352lang-sr Add Serbian language support. 353lang-sr Add Serbian language support.
353lang-sv Add Swedish language support. 354lang-sv Add Swedish language support.
354lang-te Add Telugu language support. 355lang-te Add Telugu language support.
355lang-th Add Thai language support. 356lang-th Add Thai language support.
356lang-tl Add Tagalog language support. 357lang-tl Add Tagalog language support.
357lang-tr Add Turkish language support. 358lang-tr Add Turkish language support.
358lang-uk Add Ukrainian language support. 359lang-uk Add Ukrainian language support.
359lang-uk-ua Add Ukrainian/UKRAINE language support. 360lang-uk-ua Add Ukrainian/UKRAINE language support.
360lang-zh Add Chinese language support. 361lang-zh Add Chinese language support.
361lang-zh-cn Add Chinese Simplified language support. 362lang-zh-cn Add Chinese Simplified language support.
362lang-zh-tw Add Chinese Traditional language support. 363lang-zh-tw Add Chinese Traditional language support.
363latex Depend on latex for build-time or run-time documentation. 364latex Depend on latex for build-time or run-time documentation.
364lcms Enable Light Color Management System support. 365lcms Enable Light Color Management System support.
365ldap Enable LDAP support. 366ldap Enable LDAP support.
366lensfun Enable lensfun (camera lens distortion rectifyer) support. 367lensfun Enable lensfun (camera lens distortion rectifyer) support.
367libao Enable the platform-independent 'ao' audio library. 368libao Enable the platform-independent 'ao' audio library.
368libchamplain Enable libchamplain support (map widget). 369libchamplain Enable libchamplain support (map widget).
369libgcrypt Use GNU cryptographic library. 370libgcrypt Use GNU cryptographic library.
370libgme Enable Game_Music_Emu video game music file library support. 371libgme Enable Game_Music_Emu video game music file library support.
371libgpod Enable libgpod support. 372libgpod Enable libgpod support.
372libiconv-cp932 Add supplemental support for CP932. 373libiconv-cp932 Add supplemental support for CP932.
373libidn Add support for libidn text conversion. 374libidn Add support for libidn text conversion.
374libind Add Indian script support using libind. 375libind Add Indian script support using libind.
375liblqr Enable liblqr (liquid rescale) support. 376liblqr Enable liblqr (liquid rescale) support.
376libmms Enable streaming from mms:// URLS using libmms. 377libmms Enable streaming from mms:// URLS using libmms.
377libmp4v2 Enable MP4 support using libmp4v2. 378libmp4v2 Enable MP4 support using libmp4v2.
378libmpg123 Enable mpg123 project's core decoder library support. 379libmpg123 Enable mpg123 project's core decoder library support.
379libmtp Enable MTP via libmtp support. 380libmtp Enable MTP via libmtp support.
380libofa Enable Open Fingerprint Architecture library support. 381libofa Enable Open Fingerprint Architecture library support.
381libofx Enable OFX support. 382libofx Enable OFX support.
382libsmi Use libsmi for SMI MIB support. 383libsmi Use libsmi for SMI MIB support.
383libsoup Use libsoup for SOUP support. 384libsoup Use libsoup for SOUP support.
384libspiff Use libspiff for XML shareable playlist support. 385libspiff Use libspiff for XML shareable playlist support.
385libssh2 Use libssh2 for SSHv2 protocol support. 386libssh2 Use libssh2 for SSHv2 protocol support.
386libthai Use libthai for Thai word segmentation. 387libthai Use libthai for Thai word segmentation.
387libusb Enable USB access. 388libusb Enable USB access.
388libvisual Enable libvisual (audio visualisation) support. 389libvisual Enable libvisual (audio visualisation) support.
389libwildmidi Enable MIDI support using libwildmidi. 390libwildmidi Enable MIDI support using libwildmidi.
390libwww-aliases Install aliases for p5-libwww (e.g. HEAD, GET etc.). 391libwww-aliases Install aliases for p5-libwww (e.g. HEAD, GET etc.).
391libxml2 Use the libxml2 library for XML support. 392libxml2 Use the libxml2 library for XML support.
392liferea-gtkhtml Use libgtkhtml2 to render HTML. 393liferea-gtkhtml Use libgtkhtml2 to render HTML.
393liferea-mozilla Use xulrunner to render HTML. 394liferea-mozilla Use xulrunner to render HTML.
394lilypond Enable LilyPond music typesetter support. 395lilypond Enable LilyPond music typesetter support.
395links Use and enable support for the links browser. 396links Use and enable support for the links browser.
396links-xz Enable lzma support for the links WWW browser. 397links-xz Enable lzma support for the links WWW browser.
397links-zlib Enable zlib support for the links WWW browser. 398links-zlib Enable zlib support for the links WWW browser.
398lirc Enable LIRC receiving and sending IR signals support. 399lirc Enable LIRC receiving and sending IR signals support.
399live Enable live555 support. 400live Enable live555 support.
400lprng-priv-ports Connections must be made from privileged ports. 401lprng-priv-ports Connections must be made from privileged ports.
401lprng-suid Install LPRng executables setuid root. 402lprng-suid Install LPRng executables setuid root.
402lsof-less-secure-sockets If 'lsof-more-secure' is set, allow all sockets to be viewed at all times. 403lsof-less-secure-sockets If 'lsof-more-secure' is set, allow all sockets to be viewed at all times.
403lsof-more-secure Only allow root to view all open files with lsof. 404lsof-more-secure Only allow root to view all open files with lsof.
404lua Enable Lua support. 405lua Enable Lua support.
405lynx Use and enable support for the lynx browser. 406lynx Use and enable support for the lynx browser.
406lzma Enable LZMA (de)compression support. 407lzma Enable LZMA (de)compression support.
407lzo Enable LZO (de)compression support. 408lzo Enable LZO (de)compression support.
408lzw Enable LZW (De)compression support. 409lzw Enable LZW (De)compression support.
409m17nlib Enable the m17n library support. 410m17nlib Enable the m17n library support.
410m68060-optimized Optimize for m68060 (only). 411m68060-optimized Optimize for m68060 (only).
411mac Enable Monkey's Audio Codec support. 412mac Enable Monkey's Audio Codec support.
412mad Enable usage of the mad library to play MP3 files. 413mad Enable usage of the mad library to play MP3 files.
413maintainer-zts Enable the Zend Thread Safety option for PHP. 414maintainer-zts Enable the Zend Thread Safety option for PHP.
414marble Enable marble (virtual globe) support. 415marble Enable marble (virtual globe) support.
415mc-charset Enable charset selection and conversion. 416mc-charset Enable charset selection and conversion.
416mc-edit Enable internal editor. 417mc-edit Enable internal editor.
417mc-samba Enable smb virtual file system. 418mc-samba Enable smb virtual file system.
418mc-subshell Enable support for subshell. 419mc-subshell Enable support for subshell.
419mc-vfs Support for VFS (virtual file system). 420mc-vfs Support for VFS (virtual file system).
420mecab Use MeCab as the Japanese Morphological Analzer. 421mecab Use MeCab as the Japanese Morphological Analzer.
421mex Enable matlab mex support (Linux and Solaris only). 422mex Enable matlab mex support (Linux and Solaris only).
422migemo Enable migemo (Japanese text search tool/library) support. 423migemo Enable migemo (Japanese text search tool/library) support.
423mikmod Enable MikMod sound library. 424mikmod Enable MikMod sound library.
424mitshm Enable MIT-SHM X extension support. 425mitshm Enable MIT-SHM X extension support.
425mlib Enable usage of medialib (SunOS only). 426mlib Enable usage of medialib (SunOS only).
426mlterm-fb Enable framebuffer support. 427mlterm-fb Enable framebuffer support.
427mmx Enable MMX support (i386 only). 428mmx Enable MMX support (i386 only).
428mng Enable mng (Multiple-image Network Graphics) support. 429mng Enable mng (Multiple-image Network Graphics) support.
429modperl Use modperl to improve speed of Perl scripts in Apache. 430modperl Use modperl to improve speed of Perl scripts in Apache.
430modperl1 Use modperl 1.x as the CGI manager (with Apache 1.x). 431modperl1 Use modperl 1.x as the CGI manager (with Apache 1.x).
431modperl2 Use modperl 2.x as the CGI manager (with Apache 2.x). 432modperl2 Use modperl 2.x as the CGI manager (with Apache 2.x).
432modplug Use for decoding mod-like music formats. 433modplug Use for decoding mod-like music formats.
433motif Enable motif support. 434motif Enable motif support.
434motoya Add motoya fonts. 435motoya Add motoya fonts.
435mozilla Use mozilla as gecko rendering engine. 436mozilla Use mozilla as gecko rendering engine.
436mozilla-enigmail Enable the Enigmail OpenPGP extension. 437mozilla-enigmail Enable the Enigmail OpenPGP extension.
437mozilla-jemalloc Enable building with Mozilla'a jemalloc. 438mozilla-jemalloc Enable building with Mozilla'a jemalloc.
438mozilla-jit Enable nanojit javascript acceleration. 439mozilla-jit Enable nanojit javascript acceleration.
439mozilla-lightning Enable the lightning calendar extension. 440mozilla-lightning Enable the lightning calendar extension.
440mozilla-single-profile Enable single profiles on mozilla browsers. 441mozilla-single-profile Enable single profiles on mozilla browsers.
441mp3tunes Enable support for mp3tunes.com. 442mp3tunes Enable support for mp3tunes.com.
442mp4v2 Enable MP4 support using mp4v2. 443mp4v2 Enable MP4 support using mp4v2.
443mpcdec Enable Musepack decoder library support. 444mpcdec Enable Musepack decoder library support.
444mpeg3 Enable libmpeg3 MPEG decoding library support. 445mpeg3 Enable libmpeg3 MPEG decoding library support.
445mpeg4ip Enable mpeg4ip support. 446mpeg4ip Enable mpeg4ip support.
446mpg123-altivec Enable altivec optimized dithering code. 447mpg123-altivec Enable altivec optimized dithering code.
447mpg123-fifo Enable FIFO support for the mpg123 control interface. 448mpg123-fifo Enable FIFO support for the mpg123 control interface.
448mpg123-with-fpu Enable generic fpu code. 449mpg123-with-fpu Enable generic fpu code.
449mpg123-x86-dither Enable runtime selection of optimized x86 dithering (like MMX or 3Dnow). 450mpg123-x86-dither Enable runtime selection of optimized x86 dithering (like MMX or 3Dnow).
450mplayer-default-cflags Enable default optimized CFLAGS. 451mplayer-default-cflags Enable default optimized CFLAGS.
451mplayer-menu Enable support for user-defined menus. 452mplayer-menu Enable support for user-defined menus.
452mplayer-real Enable usage of Real codecs. 453mplayer-real Enable usage of Real codecs.
453mplayer-runtime-cpudetection Enable CPU detection at run time. 454mplayer-runtime-cpudetection Enable CPU detection at run time.
454mplayer-ssse3 Enable SSSE3 support. 455mplayer-ssse3 Enable SSSE3 support.
455mplayer-win32 Enable usage of Win32 DLLs (codecs). 456mplayer-win32 Enable usage of Win32 DLLs (codecs).
456mrtg-snmpv3 Enable SNMPv3 support. 457mrtg-snmpv3 Enable SNMPv3 support.
457mstats Enable memory statistics. 458mstats Enable memory statistics.
458musepack Enable the portable Musepack decoder library. 459musepack Enable the portable Musepack decoder library.
459musicbrainz Enable musicbrainz support. 460musicbrainz Enable musicbrainz support.
460musicpd-lastfm Enable Last.FM support in musicpd. 461musicpd-lastfm Enable Last.FM support in musicpd.
461mutt-compressed-mbox Enable compressed mailbox support in mutt. 462mutt-compressed-mbox Enable compressed mailbox support in mutt.
462mutt-hcache Enable header caching in mutt. 463mutt-hcache Enable header caching in mutt.
463mutt-sidebar Enable the mutt mailbox sidebar patch. 464mutt-sidebar Enable the mutt mailbox sidebar patch.
464mutt-smtp Enable SMTP support in mutt. 465mutt-smtp Enable SMTP support in mutt.
465mysql Enable MySQL support. 466mysql Enable MySQL support.
466mysqlmanager Build mysqlmanager. 467mysqlmanager Build mysqlmanager.
467nagios-nrpe-args Enable argument passing via NRPE (possible security issues). 468nagios-nrpe-args Enable argument passing via NRPE (possible security issues).
468nas Enable usage of the Network Audio System. 469nas Enable usage of the Network Audio System.
469ncurses Enable ncurses support. 470ncurses Enable ncurses support.
470ncursesw Enable wide character ncurses support. 471ncursesw Enable wide character ncurses support.
471ndb-cluster Build NDB Cluster support. 472ndb-cluster Build NDB Cluster support.
472ndbm Use New Database Manager (ndbm). 473ndbm Use New Database Manager (ndbm).
473ndiff Enable tool to compare Nmap scans. 474ndiff Enable tool to compare Nmap scans.
474nextstep Enable Cocoa or GNUstep support. 475nextstep Enable Cocoa or GNUstep support.
475nfdump-ftconv Build the flow-tools to nfdump converter. 476nfdump-ftconv Build the flow-tools to nfdump converter.
476nfdump-nfprofile Build the netflow profiler. 477nfdump-nfprofile Build the netflow profiler.
477nfdump-sflow Build sflow collector sfcpad. 478nfdump-sflow Build sflow collector sfcpad.
478nls Use native language support. 479nls Use native language support.
479nntp Enable Network News Transport Protocol (NNTP) support. 480nntp Enable Network News Transport Protocol (NNTP) support.
480nntpcache-pgp Enable pgp signed nocem support. 481nntpcache-pgp Enable pgp signed nocem support.
481nspluginwrapper Enable running non native netscape compatible plugins. 482nspluginwrapper Enable running non native netscape compatible plugins.
482nss Enable Network Security Services (NSS) support. 483nss Enable Network Security Services (NSS) support.
483octave Enable Octave support. 484octave Enable Octave support.
484odbc Enable ODBC support. 485odbc Enable ODBC support.
485official-mozilla-branding Use official Mozilla reg. trademarks and logos. 486official-mozilla-branding Use official Mozilla reg. trademarks and logos.
486ogg Enable Ogg support. 487ogg Enable Ogg support.
487oggz Enable Oggz support. 488oggz Enable Oggz support.
488oniguruma Support regular expressions via the oniguruma library. 489oniguruma Support regular expressions via the oniguruma library.
489online-tests Requiring Internet connectivity for "make test". 490online-tests Requiring Internet connectivity for "make test".
490onscripter-pda Enable PDA_AUTOSIZE option to fit window size to screen 491onscripter-pda Enable PDA_AUTOSIZE option to fit window size to screen
491openal Enable OpenAL support. 492openal Enable OpenAL support.
492opencore-amr Enable OpenCORE Adaptive Multi-Rate speech codecs. 493opencore-amr Enable OpenCORE Adaptive Multi-Rate speech codecs.
493opendkim-filter Build opendkim-filter support. 494opendkim-filter Build opendkim-filter support.
494openexr Use OpenEXR as imaging library. 495openexr Use OpenEXR as imaging library.
495opengl Use OpenGL as display library. 496opengl Use OpenGL as display library.
496opengrok-build Enable building of OpenGrok from source. 497opengrok-build Enable building of OpenGrok from source.
497openldap Enable OpenLDAP support. 498openldap Enable OpenLDAP support.
498openmpi-vampirtrace Build VampirTrace as part of OpenMPI. 499openmpi-vampirtrace Build VampirTrace as part of OpenMPI.
499openssl Enable OpenSSL support. 500openssl Enable OpenSSL support.
500oracle Enable Oracle support. 501oracle Enable Oracle support.
501oss Enable support for the Open Sound System audio library. 502oss Enable support for the Open Sound System audio library.
502osx-addressbook Enable support for the Mac OS X Address Book. 503osx-addressbook Enable support for the Mac OS X Address Book.
503otr Enable Off-the-record encrypted messaging. 504otr Enable Off-the-record encrypted messaging.
504p0f Enable support for passive OS fingerprinting. 505p0f Enable support for passive OS fingerprinting.
505pam Enable PAM support. 506pam Enable PAM support.
506pcb-motif Use Motif for the gui instead of GTK for cad/pcb. 507pcb-motif Use Motif for the gui instead of GTK for cad/pcb.
507pcre Enable Perl-compatible regular expressions. 508pcre Enable Perl-compatible regular expressions.
508pdf Enable PDF support. 509pdf Enable PDF support.
509perl Enable Perl support. 510perl Enable Perl support.
510pgsql Enable PostgreSQL support. 511pgsql Enable PostgreSQL support.
511pim Enable pim (personal information management) support. 512pim Enable pim (personal information management) support.
512pinepwd Enable $HOME/.pinepwd stored IMAP password file. 513pinepwd Enable $HOME/.pinepwd stored IMAP password file.
513pinfo-native-curses Use NetBSD native curses rather than ncurses. 514pinfo-native-curses Use NetBSD native curses rather than ncurses.
514pkcs11 Use certificate-on-a-stick (or card) support. 515pkcs11 Use certificate-on-a-stick (or card) support.
515png Enable PNG support. 516png Enable PNG support.
516poppler Enable poppler-utils support. 517poppler Enable poppler-utils support.
517portaudio Enable PortAudio audio library support. 518portaudio Enable PortAudio audio library support.
518postfix-milter Build the milter with support for the Postfix MTA. 519postfix-milter Build the milter with support for the Postfix MTA.
519postfix-stress Enable Postfix stress-adaptive behaviour. 520postfix-stress Enable Postfix stress-adaptive behaviour.
520prime Use Prime for Kana-to-Kanji conversion. 521prime Use Prime for Kana-to-Kanji conversion.
521proftpd-readme Enable mod_readme. 522proftpd-readme Enable mod_readme.
522psiconv Enable psiconv support (for PSION 5 file formats). 523psiconv Enable psiconv support (for PSION 5 file formats).
523pstack Enable pstack backtrace library. 524pstack Enable pstack backtrace library.
524psycopg1 Enable psycopg 1.1.x support. 525psycopg1 Enable psycopg 1.1.x support.
525psycopg2 Enable psycopg 2.x support. 526psycopg2 Enable psycopg 2.x support.
526pulseaudio Enable support for the PulseAudio sound server. 527pulseaudio Enable support for the PulseAudio sound server.
527pyrex Enable Pyrex language support. 528pyrex Enable Pyrex language support.
528python Enable Python support. 529python Enable Python support.
529qdbm Enable qdbm support. 530qdbm Enable qdbm support.
530qmail-badrcptto Patch to SMTP-reject particular envelope recipients. 531qmail-badrcptto Patch to SMTP-reject particular envelope recipients.
531qmail-bigdns Patch to handle oversized responses to MX queries. 532qmail-bigdns Patch to handle oversized responses to MX queries.
532qmail-netqmail Patch collection prepared by respected list members. 533qmail-netqmail Patch collection prepared by respected list members.
533qmail-outgoingip Patch to force a particular source IP address. 534qmail-outgoingip Patch to force a particular source IP address.
534qmail-qregex Patch to SMTP-reject customizable patterns. 535qmail-qregex Patch to SMTP-reject customizable patterns.
535qmail-realrcptto Patch to SMTP-reject nonexistent recipients. 536qmail-realrcptto Patch to SMTP-reject nonexistent recipients.
536qmail-viruscan Patch to SMTP-reject certain types of MIME attachments. 537qmail-viruscan Patch to SMTP-reject certain types of MIME attachments.
537qpopper-servermode Enable server mode. 538qpopper-servermode Enable server mode.
538qt Enable support for QT. 539qt Enable support for QT.
539qt3 Enable support for QT3. 540qt3 Enable support for QT3.
540quartz Enable Quartz support on Mac OS X. 541quartz Enable Quartz support on Mac OS X.
541quickml-analog Enable quickml log analizer. 542quickml-analog Enable quickml log analizer.
542quickml-limit Enable quickml creators and members limitation. 543quickml-limit Enable quickml creators and members limitation.
543readline Enable use of GNU readline library. 544readline Enable use of GNU readline library.
544regexp Enable POSIX.2 regexp support. 545regexp Enable POSIX.2 regexp support.
545rrl Enable Response Rate Limiting. 546rrl Enable Response Rate Limiting.
546rsaref Use RSAREF library. 547rsaref Use RSAREF library.
547rsound Enable support for the RSound PCM audio library. 548rsound Enable support for the RSound PCM audio library.
548rtmp Enable rtmp:// support using rtmpdump. 549rtmp Enable rtmp:// support using rtmpdump.
549rtree Enable R-tree support. 550rtree Enable R-tree support.
550ruby Enable Ruby support. 551ruby Enable Ruby support.
551ruby-build-ri-db Build and install database for Ruby's ri utility. 552ruby-build-ri-db Build and install database for Ruby's ri utility.
552samba Enable Samba file and print services support. 553samba Enable Samba file and print services support.
553samplerate Enable libsamplerate support. 554samplerate Enable libsamplerate support.
554sane Enable support for SANE scanners. 555sane Enable support for SANE scanners.
555sane-backends-hp3900 Include HP3900 driver. 556sane-backends-hp3900 Include HP3900 driver.
556sasl Enable SASL support. 557sasl Enable SASL support.
557saslauthd Use the Cyrus saslauthd daemon for authentication. 558saslauthd Use the Cyrus saslauthd daemon for authentication.
558sbcl Use Steel-Bank Common Lisp. 559sbcl Use Steel-Bank Common Lisp.
559scapy-crypto Add in crypto support. 560scapy-crypto Add in crypto support.
560scapy-pyx Add in py-X support. 561scapy-pyx Add in py-X support.
561scmgit-gui Build the GUI in Tcl/Tk. 562scmgit-gui Build the GUI in Tcl/Tk.
562sdl Use SDL as display library. 563sdl Use SDL as display library.
563seamonkey Use seamonkey as gecko rendering engine. 564seamonkey Use seamonkey as gecko rendering engine.
564sendmail-milter Build the milter with support for the Sendmail MTA. 565sendmail-milter Build the milter with support for the Sendmail MTA.
565sendmail-socketmap Enable Sendmail SOCKETMAP support. 566sendmail-socketmap Enable Sendmail SOCKETMAP support.
566serf Use serf HTTP/WebDAV client library. 567serf Use serf HTTP/WebDAV client library.
567serialconsole Enable use of serial console. 568serialconsole Enable use of serial console.
568shout Enable SHOUTcast support. 569shout Enable SHOUTcast support.
569sidplay Enable support for the SID audio file format. 570sidplay Enable support for the SID audio file format.
570sieve Enable sieve support. 571sieve Enable sieve support.
571sigver Enable signature verification for debugging purposes. 572sigver Enable signature verification for debugging purposes.
572simd Enable MMX/3DNOW/SSE/Altivec support. 573simd Enable MMX/3DNOW/SSE/Altivec support.
573sj3 Use SJ3 for Kana-to-Kanji conversion. 574sj3 Use SJ3 for Kana-to-Kanji conversion.
574skey Enable S/Key support. 575skey Enable S/Key support.
575skk Use SKK for Kana-to-Kanji conversion. 576skk Use SKK for Kana-to-Kanji conversion.
576skkdic-expr2 Enable fast skkdic-expr tool. 577skkdic-expr2 Enable fast skkdic-expr tool.
577slang Enable S-Lang support. 578slang Enable S-Lang support.
578slp Enable Service Location Protocol support. 579slp Enable Service Location Protocol support.
579small-net Tune for a smaller networks. 580small-net Tune for a smaller networks.
580smime Enable S/MIME support. 581smime Enable S/MIME support.
581smokeping-speedycgi Enable SpeedyCGI. 582smokeping-speedycgi Enable SpeedyCGI.
582sndfile Enable sndfile support. 583sndfile Enable sndfile support.
583snmp Enable SNMP support. 584snmp Enable SNMP support.
584snort-flexresp Flexible responses on hostile connection attempts. 585snort-flexresp Flexible responses on hostile connection attempts.
585snort-flexresp2 Newer flexible responses on hostile connection attempts. 586snort-flexresp2 Newer flexible responses on hostile connection attempts.
586snort-prelude Enable support for the Prelude Hybrid IDS system. 587snort-prelude Enable support for the Prelude Hybrid IDS system.
587socks4 Enable Socks4 support. 588socks4 Enable Socks4 support.
588socks5 Enable Socks5 support. 589socks5 Enable Socks5 support.
589softhsm Enable SoftHSM for key management. 590softhsm Enable SoftHSM for key management.
590spamassassin Enable SpamAssassin support. 591spamassassin Enable SpamAssassin support.
591spamassassin-perl-warnings Enable Perl warnings at run-time. 592spamassassin-perl-warnings Enable Perl warnings at run-time.
592spamassassin-taint-checks Enable Perl taint checks to improve security. 593spamassassin-taint-checks Enable Perl taint checks to improve security.
593spamassassin-test-awl-sql Enable tests of the SQL module for the automatic whitelist. 594spamassassin-test-awl-sql Enable tests of the SQL module for the automatic whitelist.
594spamassassin-test-bayes-sql Enable tests of the SQL module for Bayes data. 595spamassassin-test-bayes-sql Enable tests of the SQL module for Bayes data.
595spamassassin-test-prefork Enable spamd prefork test (kills processes containing "spam child"). 596spamassassin-test-prefork Enable spamd prefork test (kills processes containing "spam child").
596spandsp Enable spandsp support. 597spandsp Enable spandsp support.
597speex Enable speex support. 598speex Enable speex support.
598spf Enable Sender Policy Framework support. 599spf Enable Sender Policy Framework support.
599sqlite Enable SQLite support. 600sqlite Enable SQLite support.
600sqlite3 Enable SQLite3 support. 601sqlite3 Enable SQLite3 support.
601squid-arp-acl Enable use of ARP ACL lists (ether address). 602squid-arp-acl Enable use of ARP ACL lists (ether address).
602squid-backend-aufs Enable use of with Posix AIO. 603squid-backend-aufs Enable use of with Posix AIO.
603squid-backend-coss Enable use of COSS I/O with Posix AIO. 604squid-backend-coss Enable use of COSS I/O with Posix AIO.
604squid-backend-diskd Enable use of diskd process to write to cache. 605squid-backend-diskd Enable use of diskd process to write to cache.
605squid-backend-null Enable use of null backend; using only memory. 606squid-backend-null Enable use of null backend; using only memory.
606squid-backend-rock Enable use of rock backend; database-style storage. 607squid-backend-rock Enable use of rock backend; database-style storage.
607squid-backend-ufs Enable use of UFS (Unix File System). 608squid-backend-ufs Enable use of UFS (Unix File System).
608squid-carp Enable use of CARP (Cache Array Routing Protocol). 609squid-carp Enable use of CARP (Cache Array Routing Protocol).
609squid-ipf Enable use of transparent proxy with IP Filter. 610squid-ipf Enable use of transparent proxy with IP Filter.
610squid-ipfw Enable use of transparent proxy with IPFW. 611squid-ipfw Enable use of transparent proxy with IPFW.
611squid-kerberos-helper Enable use of Kerberos helper support. 612squid-kerberos-helper Enable use of Kerberos helper support.
612squid-ldap-helper Enable use of LDAP helper support. 613squid-ldap-helper Enable use of LDAP helper support.
613squid-netfilter Enable use of transparent proxy with Linux Net Filter. 614squid-netfilter Enable use of transparent proxy with Linux Net Filter.
614squid-pam-helper Enable use of PAM helper support. 615squid-pam-helper Enable use of PAM helper support.
615squid-pf Enable use of transparent proxy with Packet Filter. 616squid-pf Enable use of transparent proxy with Packet Filter.
616squid-unlinkd Enable use of unlinkd. 617squid-unlinkd Enable use of unlinkd.
617ssl Enable SSL support. 618ssl Enable SSL support.
618starttls Enable TLS support. 619starttls Enable TLS support.
619static Allows you to build static libraries. 620static Allows you to build static libraries.
620streamtuner-local Enable local metadata support. 621streamtuner-local Enable local metadata support.
621streamtuner-xiph Enable the Xiph plugin. 622streamtuner-xiph Enable the Xiph plugin.
622suexec Enable suEXEC support in Apache web server. 623suexec Enable suEXEC support in Apache web server.
623suhosin Enable suhosin security enhancements for PHP. 624suhosin Enable suhosin security enhancements for PHP.
624sun-jre-jce Use unlimited strength cryptography extension. 625sun-jre-jce Use unlimited strength cryptography extension.
625svg Enable SVG support. 626svg Enable SVG support.
626svn Enable subversion support. 627svn Enable subversion support.
627sybase Enable Sybase/MS SQL Server support. 628sybase Enable Sybase/MS SQL Server support.
628syncdir Force synchronous link() and related syscalls. 629syncdir Force synchronous link() and related syscalls.
629syslog Enable syslog support. 630syslog Enable syslog support.
630syslogng-spoof Spoof the original source address of forwarded packets. 631syslogng-spoof Spoof the original source address of forwarded packets.
631szip Enable szip compression. 632szip Enable szip compression.
632tacacs-shrubbery-acls-support Enable ACL support. 633tacacs-shrubbery-acls-support Enable ACL support.
633tacacs-shrubbery-drop-root-privileges Drop root privileges, and run as a non-root user. 634tacacs-shrubbery-drop-root-privileges Drop root privileges, and run as a non-root user.
634tap Enable Tom's Audio Processing plugins library support. 635tap Enable Tom's Audio Processing plugins library support.
635tcl Enable Tcl scripting support. 636tcl Enable Tcl scripting support.
636tcpwrappers Enable tcpwrappers support. 637tcpwrappers Enable tcpwrappers support.
637terminfo Use terminfo. 638terminfo Use terminfo.
638tests Build and install tests. 639tests Build and install tests.
639theora Use the theora codecs. 640theora Use the theora codecs.
640threads Enable threads support. 641threads Enable threads support.
641tin-use-inn-spool Use the INN spool directories. 642tin-use-inn-spool Use the INN spool directories.
642tls Enable TLS support. 643tls Enable TLS support.
643tokyocabinet Enable Tokyo Cabinet support. 644tokyocabinet Enable Tokyo Cabinet support.
644tremor Enable Tremor fixed point audio decoding library support. 645tremor Enable Tremor fixed point audio decoding library support.
645trn-inn Use INN as NNTP client. 646trn-inn Use INN as NNTP client.
646trn-nntpclnt Use nntpclnt as NNTP client. 647trn-nntpclnt Use nntpclnt as NNTP client.
647ucspi-ssl-perl Enable Perl support in ucspi-ssl. 648ucspi-ssl-perl Enable Perl support in ucspi-ssl.
648ucspi-tcp-nodefaultrbl Remove the (nonexistent) default RBL from rblsmtpd. 649ucspi-tcp-nodefaultrbl Remove the (nonexistent) default RBL from rblsmtpd.
649uds Enable support for Unix domain sockets. 650uds Enable support for Unix domain sockets.
650uim Enable UIM support. 651uim Enable UIM support.
651uim-fep Enable UIM FEP support. 652uim-fep Enable UIM FEP support.
652umefont Add Umefont. 653umefont Add Umefont.
653unicode Enable support for Unicode. 654unicode Enable support for Unicode.
654unixodbc Enable ODBC support via unixODBC. 655unixodbc Enable ODBC support via unixODBC.
655unrealircd-chroot Enable support for running in a chroot jail. 656unrealircd-chroot Enable support for running in a chroot jail.
656unrealircd-disableusermod Disable /sethost, /setident, /chgname, /chghost, and /chgident. 657unrealircd-disableusermod Disable /sethost, /setident, /chgname, /chghost, and /chgident.
657unrealircd-hub IRC hub server. 658unrealircd-hub IRC hub server.
658unrealircd-leaf IRC leaf node server. 659unrealircd-leaf IRC leaf node server.
659unrealircd-no-operoverride Disable operator override. 660unrealircd-no-operoverride Disable operator override.
660unrealircd-nospoof Enable anti-spoof protection for older TCP/IP stacks. 661unrealircd-nospoof Enable anti-spoof protection for older TCP/IP stacks.
661unrealircd-operoverride-verify Require opers to /invite themselves into a +s or +p channel. 662unrealircd-operoverride-verify Require opers to /invite themselves into a +s or +p channel.
662unrealircd-prefixaq Enable prefixes for chanadmin and chanowner. 663unrealircd-prefixaq Enable prefixes for chanadmin and chanowner.
663unrealircd-remoteinc Enable remote includes. 664unrealircd-remoteinc Enable remote includes.
664unrealircd-showlistmodes Show the modes a channel has set in the /list output. 665unrealircd-showlistmodes Show the modes a channel has set in the /list output.
665unrealircd-shunnotices Notify a user when they are no longer shunned. 666unrealircd-shunnotices Notify a user when they are no longer shunned.
666unrealircd-topicisnuhost /topic command to show the nick!user@host of the person who set the topic. 667unrealircd-topicisnuhost /topic command to show the nick!user@host of the person who set the topic.
667unrealircd-ziplinks Compress data before transmitting it between servers. 668unrealircd-ziplinks Compress data before transmitting it between servers.
668upnp Enable support for UPnP. 669upnp Enable support for UPnP.
669utf8 Enable UTF-8 (iconv) character encoding support. 670utf8 Enable UTF-8 (iconv) character encoding support.
670uucp Enable support for uucp. 671uucp Enable support for uucp.
671uulib Enable support for uulib. 672uulib Enable support for uulib.
672v4l2 Enable V4L2 (Video4Linux2) support. 673v4l2 Enable V4L2 (Video4Linux2) support.
673vaapi Enable support for VAAPI. 674vaapi Enable support for VAAPI.
674valgrind Enable Valgrind debugging and profiling support. 675valgrind Enable Valgrind debugging and profiling support.
675vbr Enable Vouch By Reference support. 676vbr Enable Vouch By Reference support.
676vdpau Enable support for VDPAU. 677vdpau Enable support for VDPAU.
677vflib Enable support for Japanese vector font library. 678vflib Enable support for Japanese vector font library.
678via-padlock Enable support for the VIA PadLock Security Engine. 679via-padlock Enable support for the VIA PadLock Security Engine.
679vice-ethernet Enable Ethernet cartridge support. 680vice-ethernet Enable Ethernet cartridge support.
680vice-fullscreen Enable full-screen support. 681vice-fullscreen Enable full-screen support.
681vice-hwscaling Enable hardware-assisted screen scaling. 682vice-hwscaling Enable hardware-assisted screen scaling.
682vidix Enable VIDIX (Video Interface for *niX support). 683vidix Enable VIDIX (Video Interface for *niX support).
683viewvc-php Use php to colorize .php and .inc files. 684viewvc-php Use php to colorize .php and .inc files.
684vorbis Enable Ogg Vorbis support. 685vorbis Enable Ogg Vorbis support.
685w3m Use and enable support for the w3m browser. 686w3m Use and enable support for the w3m browser.
686w3m-image-gdk-pixbuf Use gdk-pixbuf as imaging library for W3m. 687w3m-image-gdk-pixbuf Use gdk-pixbuf as imaging library for W3m.
687w3m-image-gtk2 Use GTK2 as imaging library for W3m. 688w3m-image-gtk2 Use GTK2 as imaging library for W3m.
688w3m-image-imlib Use imlib as imaging library for W3m. 689w3m-image-imlib Use imlib as imaging library for W3m.
689w3m-image-imlib2 Use imlib2 as imaging library for W3m. 690w3m-image-imlib2 Use imlib2 as imaging library for W3m.
690w3m-lynx-key Enable lynx-like key bindings. 691w3m-lynx-key Enable lynx-like key bindings.
691wavpack Enable wavpack support. 692wavpack Enable wavpack support.
692webkit-jit Enable JIT compilation. 693webkit-jit Enable JIT compilation.
693webvmail Install CGI script for voicemail. 694webvmail Install CGI script for voicemail.
694wide-curses Enable wide curses support. 695wide-curses Enable wide curses support.
695winbind Enable name-service switch daemon support using Windows Servers. 696winbind Enable name-service switch daemon support using Windows Servers.
696wmf Enable WMF support. 697wmf Enable WMF support.
697wnn4 Use wnn for Kana-to-Kanji conversion. 698wnn4 Use wnn for Kana-to-Kanji conversion.
698x11 Enable X11 support. 699x11 Enable X11 support.
699xapian-flint-backend Enable "Flint" format Xapian database support. 700xapian-flint-backend Enable "Flint" format Xapian database support.
700xapian-quartz-backend Enable "Quartz" format Xapian database support. 701xapian-quartz-backend Enable "Quartz" format Xapian database support.
701xaw Enable Xaw support. 702xaw Enable Xaw support.
702xblast-mini Use a 480x392 window instead a 960x784 window in xblast. 703xblast-mini Use a 480x392 window instead a 960x784 window in xblast.
703xcb Enable XCB (libxcb) support. 704xcb Enable XCB (libxcb) support.
704xcursor Enable Xcursor support. 705xcursor Enable Xcursor support.
705xft2 Enable Xft support. 706xft2 Enable Xft support.
706xim Enable X Input Method support. 707xim Enable X Input Method support.
707xinerama Enable Xinerama support. 708xinerama Enable Xinerama support.
708xjdic-locale Honor LOCALE env var, instead of requiring ISO-2022-JP. 709xjdic-locale Honor LOCALE env var, instead of requiring ISO-2022-JP.
709xlockmore-allow-root Allow root to get access. 710xlockmore-allow-root Allow root to get access.
710xlockmore-dpms Use DPMS. 711xlockmore-dpms Use DPMS.
711xml Enable XML support. 712xml Enable XML support.
712xmlrpc Enable XMLRPC support. 713xmlrpc Enable XMLRPC support.
713xnp2-ia32 Enable ia32 core instead of the default 80286 core 714xnp2-ia32 Enable ia32 core instead of the default 80286 core
714xpm Enable X PixMap image format support. 715xpm Enable X PixMap image format support.
715xrandr Enable Xrandr support. 716xrandr Enable Xrandr support.
716xrender Enable Xrender support. 717xrender Enable Xrender support.
717xscreensaver-webcollage Install webcollage screensaver. 718xscreensaver-webcollage Install webcollage screensaver.
718xterm-256color Enable 256 color support. 719xterm-256color Enable 256 color support.
719xterm-88color Enable 88 color support. 720xterm-88color Enable 88 color support.
720xterm-luit Enable locale <> UTF encoding translation. 721xterm-luit Enable locale <> UTF encoding translation.
721xtest Use XTEST Extension Library. 722xtest Use XTEST Extension Library.
722xvid Enable usage of XVid codecs. 723xvid Enable usage of XVid codecs.
723xvideo Enable X-Video Motion Compensation library support. 724xvideo Enable X-Video Motion Compensation library support.
724zenmap Enable nmap GUI frontend. 725zenmap Enable nmap GUI frontend.
725ziplinks Compress data before transmitting it between servers. 726ziplinks Compress data before transmitting it between servers.
726zlib Enable support for zlib compression. 727zlib Enable support for zlib compression.
727zrtp Enable ZRTP support. 728zrtp Enable ZRTP support.
728zsh-multibyte Enable multibyte support in Zsh. 729zsh-multibyte Enable multibyte support in Zsh.
729zziplib Enable zip support using zziplib. 730zziplib Enable zip support using zziplib.