Commit graph

77908 commits

Author SHA1 Message Date
adam
5f2aaf6fda Chyanges 7.13.2:
* Bug-fixes and improvements
2005-04-15 10:46:56 +00:00
jlam
e859cd5c5f Allow for USE_TOOLS+=coreutils and USE_TOOLS+=findutils to use pkgsrc
replacements for "core" and "find" utilities, e.g. basename, cat, find,
etc.
2005-04-15 07:33:43 +00:00
rh
693db2a46c Note addition of ObjectiveLib-0.9 2005-04-15 06:59:16 +00:00
rh
a1d0010e71 Add and enable ObjectiveLib 2005-04-15 06:58:07 +00:00
rh
3a52c21f5c Initial import of ObjectiveLib-0.9, a library of Object containers and
generic algorithms for Objective-C
2005-04-15 06:57:14 +00:00
jlam
2dd44d3004 Allow TOOLS_DEPENDS.<tool> to be set to change the nature of the
dependency if we're using the pkgsrc tool, e.g.
TOOL_DEPENDS.yacc=DEPENDS.  By default, we use BUILD_DEPENDS.
2005-04-15 06:52:25 +00:00
jlam
1f5cfd3416 Avoid dependency loops by setting and checking TOOLS_IGNORE.* guards. 2005-04-15 05:30:48 +00:00
schmonz
ffc3bea12a Note updates of djbdns-run and qmail-run. 2005-04-15 05:17:49 +00:00
schmonz
5923432800 Update to 20050415. Changes:
* Add "foo_log" booleans to enable or disable logging (enabled by default).
* Always run loggers as the "qmaill" user. This makes it simpler
    to define alternate loggers.
2005-04-15 05:17:01 +00:00
rh
4fd2041f2b s/MKDIR/INSTALL_DATA_DIR/ 2005-04-15 05:16:47 +00:00
schmonz
7add8e3264 Update to 20050415. Changes:
* Add "djbdns" rc.d script to control all enabled djbdns services,
    modeled after the "qmail" rc.d script from mail/qmail-run.
* Set rc.conf defaults more succinctly, modeled after mail/qmail-run.
* Add "reload" as a synonym for "cdb" in axfrdns, rbldns, and tinydns.
* Add "foo_postenv" for additional environment customization, for
    instance to run dnscache as a pure forwarder.
* Add "foo_log" booleans to enable or disable logging (enabled by default).
* Always run loggers as the "dnslog" user. This makes it simpler
    to define alternate loggers.
2005-04-15 05:15:55 +00:00
rh
03120540d8 Create the Fonts directory before installation. 2005-04-15 05:15:05 +00:00
snj
a7b9a4231a Sort. 2005-04-15 05:07:15 +00:00
rh
19cbc47e48 Note update of gnustep-base to 1.10.3 2005-04-15 04:57:44 +00:00
rh
b8258db01f Note update of gnome-vfs to 1.0.5nb8 2005-04-15 04:56:52 +00:00
rh
5cdef191d3 Note update of libcdaudio to 0.99.12nb1 2005-04-15 04:55:57 +00:00
rh
88f9cb4b62 Update gnustep-base to 1.10.3. Changes are bugfixes only. 2005-04-15 04:54:11 +00:00
snj
b18cc13c68 Kill trailing whitespace. 2005-04-15 04:52:17 +00:00
snj
ee8f213577 Make pkglint happy. 2005-04-15 04:36:45 +00:00
snj
72580cf4fd Fix a typo. 2005-04-15 04:26:24 +00:00
martti
5e21e5a23d Use @unexec ${RMDIR} to remove share/xfce4/mime and share/xfce4 as
xfce4-icon-theme will also write to these directory (but it does not
depend on libxfce4gui or libxfce4util).
2005-04-15 04:23:20 +00:00
rh
c5a2e9d48d Patch remote code execution security hole pointed out in advisory at
http://secunia.com/advisories/14877/
Bump PKGREVISION
Set BUILDLINK_RECOMMENDED to gnome-vfs>=1.0.5nb8
2005-04-15 02:09:26 +00:00
jlam
91563cafa5 Add a new yes/no variable USE_NEW_TOOLS to ease testing the new tools
framework.  USE_NEW_TOOLS defaults to "no".
2005-04-15 02:04:57 +00:00
rh
7df068b084 Set BUILDLINK_RECOMMENDED to 2.10.0 or higher due to CDDB vulnerability:
http://secunia.com/advisories/14877/
2005-04-15 01:59:29 +00:00
rh
28af5e6872 Fix vulnerability pointed out in http://secunia.com/advisories/14877/
Bump PKGREVISION
Update BUILDLINK_RECOMMENDED
2005-04-15 01:50:56 +00:00
jlam
32d9220281 Initial commit of the new tools framework. This is currently designed
to be a drop-in replacement for mk/tools.mk, but isn't yet enabled
pending further testing.  To use, edit bsd.pkg.mk to include bsd.tools.mk
instead of tools.mk.

The major changes from the old tools framework are:

(1) The new interface to using the tools framework is through setting
    USE_TOOLS in the package Makefile, e.g.,

	USE_TOOLS+=	autoconf gmake yacc

(2) Bison/yacc handling is improved.  Instead of adding checks for
    /usr/bin/yacc to the package Makefile and explicitly setting YACC,
    e.g., security/mit-krb5/Makefile, simply add "yacc" to USE_TOOLS.
    If bison is explicitly required, then add "bison" to USE_TOOLS
    instead.

(3) GNU auto* tools are handled differently.  "autoconf", "aclocal",
    "automake", etc. will be tools in ${TOOLS_DIR} that point to the
    correct versions of the auto* tools.  Instead of patching Makefiles
    or scripts to use ${AUTOCONF}, ${ACLOCAL}, etc., the correct
    versions of the tools will be called if they are invoked simply
    by their bare names.  This is selected by adding either "autoconf"
    or "autoconf213", or "automake" or "automake14" to USE_TOOLS.

The new tools framework will deprecate the following variables:

	ACLOCAL		AUTORECONF
	AUTOCONF	BUILD_USES_GETTEXT_M4
	AUTOHEADER	USE_GNU_TOOLS
	AUTOMAKE	USE_TBL

The new tools framework will deprecate the following *.mk files:

	mk/autoconf.mk
	mk/automake.mk
	mk/tools.mk

Additional documentation on how to use bsd.tools.mk to create new tools
under ${TOOLS_DIR} may be found in the header comments in bsd.tools.mk.
2005-04-15 00:00:21 +00:00
xtraeme
8596ac4197 Add missing argument for mysql storage: "--enable-mysql4-initialization"
needed to properly start mysql4 databases.
2005-04-14 23:37:11 +00:00
jlam
d2d9d446c5 Remove unused section... MIT krb5 apparently now detects NetBSD's utmpx
implementation correctly on NetBSD>=2.0.
2005-04-14 23:07:55 +00:00
xtraeme
41d0743afe Updated gld to 1.5.1 2005-04-14 22:24:59 +00:00
xtraeme
0f7aab5828 Update to 1.5.1, which fixes PR pkg/29975 by Robert Elz.
Some changes were done: enabling the LOOPBACK option by default,
fix some snprintf() calls, etc.

While I'm here convert this pkg to use bsd.options.mk, now that it
supports MySQL and PostgreSQL (MySQL by default as before).
2005-04-14 22:22:56 +00:00
wiz
8a7b7f03d3 Remove duplicate netqmail lines.
Reported by Robert Elz in PR 29973.
2005-04-14 22:00:11 +00:00
xtraeme
89875b2782 Require at least xorg-libs>=6.8.2nb1 (radeon driver fix) 2005-04-14 21:40:47 +00:00
xtraeme
3f6f1d1c4d Now the radeon driver works correctly, bump PKGREVISION to know
which version is the fixed one.
2005-04-14 21:38:10 +00:00
xtraeme
92999d41a5 * Apply patch from OpenBSD CVS to fix libXpm vulnerability:
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-0605
* Apply patch from FreeBSD/ports to fix the problem with the radeon
  driver switching from graphics to text mode.

Bump PKGREVISION.
2005-04-14 21:35:51 +00:00
mrauch
48700a09de Apply fix for security problem CAN-2005-0941 by installing patched library.
Bump PKGREVISION.
2005-04-14 21:06:44 +00:00
markd
8e54c94016 Add kcm_usb support for NetBSD and add appropriate PLIST entries on
platforms that now support it (NetBSD, FreeBSD and Linux).
Bump PKGREVISION.
2005-04-14 21:01:48 +00:00
markd
06795166ef Remove some patches only required for gcc2 on Solaris and add a couple
that fix build with later gcc's.
2005-04-14 20:53:30 +00:00
mrauch
e5e737f767 Apply fix for security problem CAN-2005-0941 from OOo CVS.
Bump PKGREVISION.
2005-04-14 20:48:58 +00:00
markd
44805c8fcb Require at least gcc 3.3 when building on Solaris. 2005-04-14 20:40:37 +00:00
xtraeme
559389bdd2 * Replace hardcoded www user/group with APACHE_{USER,GROUP}.
* Modify permissions for DSPAM_HOME, it should be
  ${DSPAM_USER}:${APACHE_GROUP}, so that the CGI interface works
  correctly without modifications.

Bump PKGREVISION.
2005-04-14 20:39:59 +00:00
schwarz
32a16e2ec5 Added missing headers to previously committed patches.
Changed patch-af to ensure that the pkgsrc CFLAGS will be used for building
kphone.
2005-04-14 17:53:40 +00:00
schwarz
389010773c updated kphone to 4.1.0 2005-04-14 13:47:15 +00:00
schwarz
7f1ab5620c Updated kphone to 4.1.0 (approved by tron)
Changes from previous version 4.0.5 are:

* support for ALSA (not yet enabled in pkgsrc)
* support for jack (not yet enabled in pkgsrc)
* some bug fixes
2005-04-14 13:46:04 +00:00
tron
c45727a673 Define "BUILD_TARGET" so that "Xcb.ad" really gets built. 2005-04-14 07:33:38 +00:00
tron
d95dbc747c Fix build problem under NetBSD 3.0_BETA caused by broken signal
handler declaration.
2005-04-14 07:28:40 +00:00
xtraeme
c7ad0cc661 Updated sqlite3 to 3.2.1 2005-04-14 05:46:45 +00:00
xtraeme
94b0d6efcb Update to 3.2.1
2005 March 29 (3.2.1)

        * Fix a memory allocation error in the new ADD COLUMN comment.
        * Documentation updates

2005 March 21 (3.2.0)

        * Added support for ALTER TABLE ADD COLUMN.
        * Added support for the "T" separator in ISO-8601 date/time strings.
        * Improved support for Cygwin.
        * Numerous bug fixes and documentation updates.

2005 March 16 (3.1.6)

        * Fix a bug that could cause database corruption when inserting
          record into tables with around 125 columns.
        * sqlite3_step() is now much more likely to invoke the busy
          handler and less likely to return SQLITE_BUSY.
        * Fix memory leaks that used to occur after a malloc() failure.

2005 March 11 (3.1.5)

        * The ioctl on OS-X to control syncing to disk is F_FULLFSYNC,
	  not F_FULLSYNC. The previous release had it wrong.

2005 March 10 (3.1.4)

        * Fix a bug in autovacuum that could cause database corruption
	  if a CREATE UNIQUE INDEX fails because of a constraint violation.
	  This problem only occurs if the new autovacuum feature introduced
	  in version 3.1 is turned on.
        * The F_FULLSYNC ioctl (currently only supported on OS-X) is
	  disabled if the synchronous pragma is set to something other
	  than "full".
        * Add additional forward compatibility to the future version 3.2
	  database file format.
        * Fix a bug in WHERE clauses of the form (rowid<'2')
        * New SQLITE_OMIT_... compile-time options added
        * Updates to the man page
        * Remove the use of strcasecmp() from the shell
        * Windows DLL exports symbols Tclsqlite_Init and Sqlite_Init
2005-04-14 05:45:51 +00:00
xtraeme
25474ba313 * Enable support for sqlite3 storage driver.
* Don't enable daemon mode globally, only for mysql/pgsql.
2005-04-14 05:32:37 +00:00
xtraeme
370e8b1f35 Updated dspam to 3.4.4 2005-04-14 05:00:16 +00:00
xtraeme
112179d277 Update to 3.4.4.
Version 3.4.4-STABLE

This version if a maintenance release and contains bug fixes only

BUGFIX: Message-based signatures do not appear in quoted-printable/base64 parts

RELEASE 3.4.3-STABLE

This version is a maintenance release and contains bug fixes only

BUGFIX: When using LMTP/SMTP delivery, QuarantineAgent is ignored
BUGFIX: Domain-scale uses wrong data path in admin script
BUGFIX: DSPAM fails to build on Cygwin
BUGFIX: optIn does not work when using preferences extensions
BUGFIX: showFactors does not set/unset properly in user preferences
BUGFIX: Supplying an empty spamSubject raises errors in user preferences
BUGFIX: Signature-related errors are not reported (except to debug)
BUGFIX: Formatting bug in system.log
2005-04-14 04:59:14 +00:00