pkgsrc/security
wiz e21f814082 Update to 1.4.0, provided by Stefan Krüger in PR 28738.
While here, convert to options.mk.


GnuPG 1.4 Highlights
====================

This is a brief overview of the changes between the GnuPG 1.2 series
and the new GnuPG 1.4 series.  To read the full list of highlights for
each revision that led up to 1.4, see the NEWS file in the GnuPG
distribution.  This document is based on the NEWS file, and is thus
the highlights of the highlights.

When upgrading, note that RFC-2440, the OpenPGP standard, is currently
being revised.  Most of the revisions in the latest draft (2440bis-12)
have already been incorporated into GnuPG 1.4.


Algorithm Changes
-----------------

OpenPGP supports many different algorithms for encryption, hashing,
and compression, and taking into account the OpenPGP revisions, GnuPG
1.4 supports a slightly different algorithm set than 1.2 did.

The SHA256, SHA384, and SHA512 hashes are now supported for read and
write.

The BZIP2 compression algorithm is now supported for read and write.

Due to the recent successful attack on the MD5 hash algorithm
(discussed in <http://www.rsasecurity.com/rsalabs/node.asp?id=2738>,
among other places), MD5 is deprecated for OpenPGP use.  It is still
allowed in GnuPG 1.4 for backwards compatibility, but a warning is
given when it is used.

The TIGER/192 hash is no longer available.  This should not be
interpreted as a statement as to the quality of TIGER/192 - rather,
the revised OpenPGP standard removes support for several unused or
mostly unused hashes, and TIGER/192 was one of them.

Similarly, Elgamal signatures and the Elgamal signing key type have
been removed from the OpenPGP standard, and thus from GnuPG.  Please
do not confuse Elgamal signatures with DSA or DSS signatures or with
Elgamal encryption.  Elgamal signatures were very rarely used and were
not supported in any product other than GnuPG.  Elgamal encryption was
and still is part of OpenPGP and GnuPG.

Very old (pre-1.0) versions of GnuPG supported a nonstandard (contrary
to OpenPGP) Elgamal key type.  While no recent version of GnuPG
permitted the generation of such keys, GnuPG 1.2 could still use them.
GnuPG 1.4 no longer allows the use of these keys or the (also
nonstandard) messages generated using them.

At build time, it is possible to select which algorithms will be built
into GnuPG.  This can be used to build a smaller program binary for
embedded uses where space is tight.


Keyserver Changes
-----------------

GnuPG 1.4 does all keyserver operations via plugin or helper
applications.  This allows the main GnuPG program to be smaller and
simpler.  People who package GnuPG for various reasons have the
flexibility to include or leave out support for any keyserver type as
desired.

Support for fetching keys via HTTP and finger has been added.  This is
mainly useful for setting a preferred keyserver URL like
"http://www.jabberwocky.com/key.asc". or "finger:wk at g10code.com".

The LDAP keyserver helper now supports storing, retrieving, and
searching for keys in both the old NAI "LDAP keyserver" as well as the
more recent method to store OpenPGP keys in standard LDAP servers.
This is compatible with the storage schema that PGP uses, so both
products can interoperate with the same LDAP server.

The LDAP keyserver helper is compatible with the PGP company's new
"Global Directory" service.

If the LDAP library you use supports LDAP-over-TLS and LDAPS, then
GnuPG detects this and supports them as well.  Note that using TLS or
LDAPS does not improve the security of GnuPG itself, but may be useful
in certain key distribution scenarios.

HTTP Basic authentication is now supported for all HKP and HTTP
keyserver functions, either through a proxy or via direct access.

The HKP keyserver plugin supports the new machine-readable key
listing format for those keyservers that provide it.

IPv6 is supported for HKP and HTTP keyserver access.

When using a HKP keyserver with multiple DNS records (such as
subkeys.pgp.net which has the addresses of multiple servers around the
world), all DNS address records are tried until one succeeds.  This
prevents a single down server in the rotation from stopping access.

DNS SRV records are used in HKP keyserver lookups to allow
administrators to load balance and select keyserver ports
automatically.

Timeout support has been added to the keyserver plugins.  This allows
users to set an upper limit on how long to wait for the keyserver
before giving up.


Preferred Keyserver URL
-----------------------

Preferred keyserver support has been added.  Users may set a preferred
keyserver via the --edit-key command "keyserver".  If the
--keyserver-option honor-keyserver-url is set (and it is by default),
then the preferred keyserver is used when refreshing that key with
--refresh-keys.

The --sig-keyserver-url option can be used to inform signature
recipients where the signing key can be downloaded.  When verifying
the signature, if the signing key is not present, and the keyserver
options honor-keyserver-url and auto-key-retrieve are set, this URL
will be used to retrieve the key.


Trust Signatures
----------------

GnuPG 1.4 supports OpenPGP trust signatures, which allow a user to
specify the trust level and distance from the user along with the
signature so users can delegate different levels of certification
ability to other users, possibly restricted by a regular expression on
the user ID.


Trust Models
------------

GnuPG 1.4 supports several ways of looking at trust:

Classic - The classic PGP trust model, where people sign each others
          keys and thus build up an assurance (called "validity") that
          the key belongs to the right person.  This was the default
          trust model in GnuPG 1.2.

Always - Bypass all trust checks, and make all keys fully valid.

Direct - Users may set key validity directly.

PGP - The PGP 7 and 8 behavior which combines Classic trust with trust
      signatures overlaid on top.  This is the default trust model in
      GnuPG 1.4.


The OpenPGP Smartcard
---------------------

GnuPG 1.4 supports the OpenPGP smartcard
(<http://www.g10code.de/p-card.html>)

Secret keys may be kept fully or partially on the smartcard.  The
smartcard may be used for primary keys or subkeys.


Other Interesting New Features
------------------------------

For those using Security-Enhanced Linux <http://www.nsa.gov/selinux/>,
the configure option --enable-selinux-support prevents GnuPG from
processing its own files (i.e. reading the secret keyring for
something other than getting a secret key from it).  This simplifies
writing ACLs for the SELinux kernel.

Readline support is now available at all prompts if the system
provides a readline library.

GnuPG can now create messages that can be decrypted with either a
passphrase or a secret key.  These messages may be generated with
--symmetric --encrypt or --symmetric --sign --encrypt.

--list-options and --verify-options allow the user to customize
exactly what key listings or signature verifications look like,
enabling or disabling things such as photo display, preferred
keyserver URL, calculated validity for each user ID, etc.

The --primary-keyring option designates the keyring that the user
wants new keys imported into.

The --hidden-recipient (or -R) command encrypts to a user, but hides
the identity of that user.  This is the same functionality as
--throw-keyid, but can be used on a per-user basis.

Full algorithm names (e.g. "3DES", "SHA1", "ZIP") can now be used
interchangeably with the short algorithm names (e.g. "S2", "H2", "Z1")
anywhere algorithm names are used in GnuPG.

The --keyid-format option selects short (99242560), long
(DB698D7199242560), 0xshort (0x99242560), or 0xlong
(0xDB698D7199242560) key ID displays.  This lets users tune the
display to what they prefer.

While it is not recommended for extended periods, it is possible to
run both GnuPG 1.2.x and GnuPG 1.4 during the transition.  To aid in
this, GnuPG 1.4 tries to load a config file suffixed with its version
before it loads the default config file.  For example, 1.4 will try
for gpg.conf-1.4 and gpg.conf-1 before falling back to the regular
gpg.conf file.
2004-12-25 02:54:13 +00:00
..
AiCA Add work around to fix bulk build problem on Solaris; 2004-12-17 15:37:01 +00:00
aide Update to 0.10, prompted by César Catrián C. on tech-pkg: 2004-12-01 16:42:53 +00:00
aide06 Give a bit of leeway in the atime time calculation - the problem is 2004-09-21 14:14:27 +00:00
AiSSLtelnet Fix compile problem under gcc 3.3.3. 2004-03-25 15:23:40 +00:00
amavis
amavis-perl Set USE_BUILDLINK3, since this package already includes a bl3 file. 2004-07-29 00:59:53 +00:00
amavisd-new Update to 2.2.0. 2004-11-28 23:31:49 +00:00
antonym add 75-char double-dashed lines 2004-05-07 12:05:10 +00:00
apg this needs -lnsl on Linux and -lnsl -lsocket on Solaris. 2004-06-27 13:16:36 +00:00
arirang this blindly calls "gcc" so use buildlink3 so it uses the wrapper. 2004-06-27 13:13:23 +00:00
audit-packages avoid use of test -e for consistency with pkgsrc itself. use 2004-10-29 10:45:45 +00:00
avcheck this blindly calls "gcc", so use buildlink3 so it uses the wrappers. 2004-07-25 04:57:11 +00:00
beecrypt Update to 4.1.1. Drop maintainership (I don't remember why I added this one, 2004-12-05 09:02:11 +00:00
bitstir no need to duplicate HOMEPAGE in description; also don't mention 2004-11-17 11:30:54 +00:00
cfs Always create a ${TOOLS_DIR}/bin/rpcgen to wrap the real rpcgen. 2004-12-18 19:24:26 +00:00
chkrootkit Update chkrootkit to 0.44 2004-09-28 10:41:59 +00:00
crack homepage has moved 2004-03-23 23:02:30 +00:00
crypto++ Import crypto++ from pkgsrc-wip. Packaged by Sergio Jimenez and 2004-07-26 15:18:44 +00:00
cy-login Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-anonymous Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-crammd5 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-digestmd5 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-gssapi Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-login Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-ntlm Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-otp Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-plain Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cy2-sql Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
cyrus-sasl These packages install libraries that dlopen() shared modules. 2004-11-25 22:55:54 +00:00
cyrus-sasl2 These packages install libraries that dlopen() shared modules. 2004-11-25 22:55:54 +00:00
cyrus-saslauthd Fix buildling problems on some machines, PR#28562 2004-12-07 09:17:35 +00:00
ddos-scan Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
destroy regen to remove unused entries. 2004-04-17 12:15:04 +00:00
dirmngr Update to 0.5.6nb2: 2004-11-05 22:12:17 +00:00
dropbear Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
dsniff Always create a ${TOOLS_DIR}/bin/rpcgen to wrap the real rpcgen. 2004-12-18 19:24:26 +00:00
egd Convert to buildlink3. 2004-04-26 04:19:47 +00:00
flawfinder Update flawfinder to 1.26. Don't set PY_PATCHPLIST, as it is useless. 2004-06-23 16:19:41 +00:00
fprot-workstation-bin Update fprot-workstation-bin to version 4.4.8. 2004-11-23 00:33:47 +00:00
fragroute libevent has no shlibs. Make BUILDLINK_DEPMETHOD.libevent=build. 2004-04-30 17:26:23 +00:00
fressh Convert to set USE_OLD_DES_API=yes, and remove unnecessary patches to 2004-12-15 19:34:40 +00:00
fsh Remove info files entries from PLIST. 2004-03-09 23:01:17 +00:00
gnome-keyring Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnu-crypto Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
gnupg Update to 1.4.0, provided by Stefan Krüger in PR 28738. 2004-12-25 02:54:13 +00:00
gnupg-devel Upgrade to 1.9.14. This is mainly a bug fix release with a few new things: 2004-12-23 11:44:49 +00:00
gnustep-ssl With the updated gnustep-base dependency, CONFLICTS is superfluous. 2004-11-16 06:19:23 +00:00
gnutls update to gnutls-1.0.23 2004-11-28 12:59:10 +00:00
gpa Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gpass Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gpg2dot Update to 1.3: Contributed by Stefan Schumacher (stefan net-tex de) in 2004-04-04 22:16:58 +00:00
gpgme Solaris does need librfuncs for getenv_r() or someone needs to teach the 2004-11-15 09:06:32 +00:00
gpgme03 Explicitly disable gpgsm support. Otherwise, if gpgsm is installed, the 2004-11-13 10:01:50 +00:00
gsasl Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gss Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk-systrace Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
hackbot
hashcash Fix compilation error on LP64 due to a prototype mismatch. (Arg changed 2004-12-01 12:50:39 +00:00
heimdal Enable building heimdal with the "ldap" option to allow using an LDAP 2004-12-23 14:43:28 +00:00
honeyd Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
honeyd-arpd libevent has no shlibs. Make BUILDLINK_DEPMETHOD.libevent=build. 2004-04-30 17:26:23 +00:00
hydan Add patches to work around compile problems for this package on 2004-09-16 16:12:57 +00:00
ike-scan MAINTAINER should be tech-pkg@NetBSD.org instead of packages@netbsd.org. 2004-02-28 15:29:20 +00:00
ipsec-tools Add (unsigned char) cast to ctype functions; taken from the NetBSD trunk. 2004-12-12 23:51:10 +00:00
isakmpd Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
jessie Jessie 0.9.7, a GPL implementation of the Java Secure Sockets Extension 2004-04-16 16:23:35 +00:00
john Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
keychain Updated keychain to 2.4.3 2004-11-28 10:06:39 +00:00
kssh Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
kth-krb4 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libassuan Update to 0.6.9 - bug fixes and support for GnuPG 1.9.14 2004-12-23 11:40:47 +00:00
libbf
libcrack "the the" -> "the" 2004-12-01 09:52:59 +00:00
libdes Create directories before putting files in them. This should fix 2004-12-11 00:32:16 +00:00
libfwbuilder Bump PKGREVISION due to security fixes in libxml (dependency adjusted to 2004-11-20 22:10:22 +00:00
libgcrypt fix socklen_t hack by falling through to ${TRUE} if ${GREP} fails 2004-12-21 08:57:48 +00:00
libgpg-error Include gettext-lib/buildlink3.mk so that libtoolized packages 2004-10-19 17:40:37 +00:00
libidea Convert to buildlink3. 2004-04-18 18:48:41 +00:00
libident Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
libksba Update to release 0.9.10. This is a bugfix release. 2004-12-03 21:58:54 +00:00
libksba04 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libmcrypt Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libnasl - Update nessus to 2.2.0 2004-11-02 00:05:23 +00:00
libtasn1 ignore getopt_long() on Darwin because there is no prototype for it, 2004-12-18 18:51:39 +00:00
libtcpa Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
logcheck Convert to buildlink3. 2004-04-25 03:38:34 +00:00
lsh Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
mcrypt Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
mhash Changes 0.9.1: 2004-11-22 14:51:05 +00:00
mirrordir Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
mit-krb5 Update security/mit-krb5 to 1.3.6. 2004-12-23 04:02:39 +00:00
msf The Metasploit Framework is an advanced open-source platform for developing, 2004-10-19 16:38:22 +00:00
msu
msudir
MyPasswordSafe Update to 20041004, closes PR 27161: 2004-10-06 14:23:00 +00:00
nessus - Update nessus to 2.2.0 2004-11-01 23:59:13 +00:00
nessus-core - Update nessus to 2.2.0 2004-11-02 00:01:04 +00:00
nessus-libraries - Update nessus to 2.2.0 2004-11-02 00:01:04 +00:00
nessus-plugins - Update nessus to 2.2.0 2004-11-02 00:04:03 +00:00
netramet Use declaration of sys_nerr from <errno.h> rather than redeclaring it. 2004-03-24 11:32:07 +00:00
nfsbug Always create a ${TOOLS_DIR}/bin/rpcgen to wrap the real rpcgen. 2004-12-18 19:24:26 +00:00
nikto - Update nikto to 1.34 2004-10-16 11:55:27 +00:00
opencdk this won't build with xlc without some work, mark it as such. 2004-12-19 00:19:18 +00:00
openssh Remove support for some variables that are supposed to go away after 2004-12-22 21:46:24 +00:00
openssh+gssapi Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
openssl Update security/openssl to 0.9.7e. Changes from openssl-0.9.6m are 2004-12-24 22:02:37 +00:00
otpcalc Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
p0f - Update to 2.0.5 2004-09-22 09:44:57 +00:00
p5-Authen-SASL since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Authen-SASL-Cyrus since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-Blowfish since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-CAST5_PP since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-CBC since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-CipherSaber since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-DES since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-DES_EDE3 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-DSA since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-IDEA since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-OpenPGP since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-OpenSSL-Bignum since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-OpenSSL-DSA since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-OpenSSL-Random since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-OpenSSL-RSA since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-Primes since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-Random since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-RandPasswd since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-Rijndael since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-RIPEMD160 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-RSA since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Crypt-Twofish since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-BubbleBabble since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-Hashcash since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-HMAC since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-MD2 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-MD4 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-MD5 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-Nilsimsa since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-SHA since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Digest-SHA1 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-IO-Socket-SSL since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Module-Signature since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Net-DNS-SEC since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Net-SSLeay since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-SHA since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-SSLeay since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Tie-EncryptedHash since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
pakemon Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
PAM PAM modules are dlopen'ed by the PAM library. 2004-11-25 22:47:15 +00:00
pam-dbm Rework the Berkeley DB detection in buildlink3: 2004-11-15 17:54:49 +00:00
pam-ldap Update security/pam-ldap to version 176. pkgsrc-related changes in this 2004-11-19 19:08:43 +00:00
pam-smbpass Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
pflkm Changes up to 20041204: 2004-12-04 15:01:55 +00:00
pgp2 Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG, 2004-08-27 06:29:06 +00:00
pgp5
pgpdump Update pgpdump to 0.23. 2004-10-28 11:36:59 +00:00
php-mcrypt now that PHP 5.x Makefile.common doesn't pollute CONFIGURE_ARGS, it safe 2004-11-05 17:11:39 +00:00
php-mhash now that PHP 5.x Makefile.common doesn't pollute CONFIGURE_ARGS, it safe 2004-11-05 17:11:39 +00:00
php-openssl now that PHP 5.x Makefile.common doesn't pollute CONFIGURE_ARGS, it safe 2004-11-05 17:11:39 +00:00
pinentry In fact, GNU make is required, but only when the QT frontend in enabled. 2004-11-05 17:44:35 +00:00
pinepgp Fix typo, reported by imil on tech-pkg. 2004-12-03 12:37:23 +00:00
pks Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
portsentry Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
priv Correct the location of the config files in the man page. 2004-11-30 15:26:03 +00:00
prngd Initial import of prngd-0.9.29 2004-07-15 23:10:35 +00:00
pscan Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
putty Initial import of putty-0.56 from pkgsrc-wip. 2004-10-29 23:00:30 +00:00
py-amkCrypto Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-crack PKGNAME should include the version number. Also remove the redundant 2004-11-18 05:08:55 +00:00
py-cryptkit add python as category 2004-07-22 09:15:59 +00:00
py-gnupg add python as category 2004-07-22 09:15:59 +00:00
py-gnutls Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-m2crypto Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-OpenSSL adam at monkeybyte dot org's mail setup is broken, revert to tech-pkg. 2004-11-28 23:38:39 +00:00
pyca add python as category 2004-07-22 09:15:59 +00:00
qca-tls Fix build on NetBSD 2.0 - configure script tried to link program with 2004-12-19 09:29:16 +00:00
qident Reset maintainer to tech-pkg@ (from ad@, since he is not working on them 2004-05-07 11:54:35 +00:00
racoon bump version # in binary 2004-12-02 06:44:27 +00:00
rats Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
rc5des
rid don't inline a function in one source file and expect to be able to 2004-06-27 12:21:21 +00:00
rsaref Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
ruby-digest Switch to use RUBY_DLEXT as suffix of extention library. 2004-12-04 17:20:46 +00:00
ruby-openssl Switch to use RUBY_DLEXT as suffix of extention library. 2004-12-04 17:20:46 +00:00
ruby-tcpwrap Switch to use RUBY_DLEXT as suffix of extention library. 2004-12-04 17:20:46 +00:00
ruby16-openssl Switch to use RUBY_DLEXT as suffix of extention library. 2004-12-04 17:20:46 +00:00
scanssh - Dont use the built-in libevent as it's too old. Fixes build on 2.0. 2004-09-07 08:13:30 +00:00
seahorse Update to 0.7.5. While here, apply a patch from shannonjr@ that avoids the 2004-11-07 13:19:24 +00:00
sfs RCD_SCRIPTS_EXAMPLEDIR was just changed to be a relative directory 2004-10-11 22:14:51 +00:00
sign Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
skey Unused. 2004-05-11 21:01:05 +00:00
smimemsg this blindly calls "gcc" so use buildlink3 so it uses the compiler 2004-06-27 11:40:07 +00:00
smtpd
sniff Convert to buildlink3. 2004-04-25 03:09:56 +00:00
snortsnarf This does not need buildlink2. 2004-04-25 03:17:55 +00:00
srm Initial import of srm, version 1.2.8 into the NetBSD Package Collection, 2004-03-01 09:43:06 +00:00
srp_client Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ssh-askpass USE_IMAKE implies USE_X11BASE, remove it. 2004-07-21 21:16:10 +00:00
ssh-ip-tunnel Depend on security/openssh instead of security/ssh for machines that 2004-05-31 22:13:16 +00:00
ssh2 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
ssh2-nox11 Revert previous: conflicts with openssh (and others) are already specified in 2004-07-31 12:52:42 +00:00
ssldump Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
sslwrap Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
steghide Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
stunnel Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
sudo Allow building sudo without S/Key support on NetBSD. Patch from 2004-12-22 04:36:32 +00:00
tacshell tacshell-0.91: RSA ACE/Server sdshell workalike, using TACACS+ 2004-05-26 12:04:27 +00:00
tcp_wrappers Remove as maintainer of this package because I've not used for quite 2004-12-07 21:28:20 +00:00
tct Convert to buildlink3. 2004-05-09 06:48:40 +00:00
tkpasman Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
tripwire Convert to buildlink3. 2004-04-25 05:02:23 +00:00
uvscan Update to 4.24.1: 2004-07-29 22:19:57 +00:00
winbind Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
xdm-krb4 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xmlsec1 Add build dependency on pkgconfig. 2004-12-14 20:34:42 +00:00
zebedee Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
Makefile Remove ruby-acl. 2004-11-28 08:01:37 +00:00