The NetBSD Project

CVS log for pkgsrc/mk/Attic/bsd.pkg.defaults.mk

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / mk

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.287, Wed Oct 6 20:51:47 2004 UTC (19 years, 5 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2013Q2-base, pkgsrc-2013Q2, pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2, pkgsrc-2006Q1-base, pkgsrc-2006Q1, pkgsrc-2005Q4-base, pkgsrc-2005Q4, pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2, pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4, jlam-pkgviews-base, jlam-pkgviews, cube-native-xorg-base, cube-native-xorg, HEAD
Changes since 1.286: +1 -1 lines
FILE REMOVED

Reorganize some of the files under pkgsrc/mk:

    (1) defs.${OPSYS}.mk --> platform/${OPSYS}.mk.

The "platform" subdirectory is where all of the ${OPSYS}-specific
infrastructure logic should reside.

    (2) bsd.pkg.defaults.mk --> defaults/mk.conf
        bsd.pkg.obsolete.mk --> defaults/obsolete.mk

Renaming bsd.pkg.defaults.mk to defaults/mk.conf is to mimic the way
that NetBSD has /etc/rc.conf as well as /etc/defaults/rc.conf, where
the latter is a full list of user-settable variables, and the two
files share the same name to reinforce the fact /etc/defaults/rc.conf
can be directly copied in place as /etc/rc.conf.  This is the same
relationship shared by defaults/mk.conf and /etc/mk.conf.

Revision 1.286 / (download) - annotate - [select for diffs], Wed Oct 6 19:47:01 2004 UTC (19 years, 5 months ago) by tv
Branch: MAIN
Changes since 1.285: +7 -1 lines
Diff to previous 1.285 (colored) to selected 1.90 (colored)

Add SUN_JRE15_USE_JCE (forgot this file in the commit).

Revision 1.285 / (download) - annotate - [select for diffs], Thu Sep 30 15:37:24 2004 UTC (19 years, 6 months ago) by epg
Branch: MAIN
Changes since 1.284: +4 -8 lines
Diff to previous 1.284 (colored) to selected 1.90 (colored)

Make APR_USE_DB4 default to NO everywhere, now that subversion-base
can build without it.

Revision 1.284 / (download) - annotate - [select for diffs], Mon Sep 27 14:44:31 2004 UTC (19 years, 6 months ago) by tv
Branch: MAIN
Changes since 1.283: +1 -7 lines
Diff to previous 1.283 (colored) to selected 1.90 (colored)

LIBTOOLIZE_PLIST doesn't even need to be conditional.  If USE_LIBTOOL is
set in the package Makefile, then a libtool transform will be done, period.

Revision 1.283 / (download) - annotate - [select for diffs], Wed Sep 22 08:09:44 2004 UTC (19 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.282: +2 -2 lines
Diff to previous 1.282 (colored) to selected 1.90 (colored)

Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".

Revision 1.282 / (download) - annotate - [select for diffs], Tue Sep 21 17:51:30 2004 UTC (19 years, 6 months ago) by xtraeme
Branch: MAIN
Changes since 1.281: +5 -1 lines
Diff to previous 1.281 (colored) to selected 1.90 (colored)

X11_TYPE=xorg users:

* Use builtin versions for Xfixes, fixesext, randrext and render.
  There's no need to install these packages from pkgsrc when using
  X.org >= 6.8.0, they were already installed.

Revision 1.281 / (download) - annotate - [select for diffs], Tue Sep 14 08:34:52 2004 UTC (19 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3
Changes since 1.280: +7 -1 lines
Diff to previous 1.280 (colored) to selected 1.90 (colored)

Document THTTPD_LOG_FACILITY.

Revision 1.280 / (download) - annotate - [select for diffs], Fri Sep 10 19:51:50 2004 UTC (19 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.279: +7 -1 lines
Diff to previous 1.279 (colored) to selected 1.90 (colored)

* Do the *.la expansion within the current _PLIST_AWK_SCRIPT framework.
  We no longer require that LIBTOOL_LA_FILES be defined in the package
  Makefile, and the libtool archives should once again be listed in the
  PLIST.

* Add a new yes/no variable "LIBTOOLIZE_PLIST" to control whether to
  have bsd.pkg.mk automatically expand *.la files in PLISTs into the
  true library names represented by the libtool archives.

* Rename the "transform-la" script to "print-la-libnames" which more
  correctly reflects its function.

Many thanks to Todd Vierling for the original implementation and for
his contructive comments on how to improve the changes in this commit.

Revision 1.279 / (download) - annotate - [select for diffs], Wed Sep 1 02:21:29 2004 UTC (19 years, 7 months ago) by uebayasi
Branch: MAIN
Changes since 1.278: +2 -2 lines
Diff to previous 1.278 (colored) to selected 1.90 (colored)

Match the default value and the "Default" line (W3M_USE_UNICODE).

Revision 1.278 / (download) - annotate - [select for diffs], Wed Aug 25 04:09:10 2004 UTC (19 years, 7 months ago) by schmonz
Branch: MAIN
Changes since 1.277: +10 -1 lines
Diff to previous 1.277 (colored) to selected 1.90 (colored)

Add a knob PKGSRC_SHOW_PATCH_ERRORMSG to control whether the newly
verbose message displayed on patch failure is in fact displayed on
patch failure. It defaults to "no" if PKG_DEVELOPER is defined,
"yes" otherwise. While here, rename PKG_PATCH_FAIL to PKGSRC_PATCH_FAIL.

Revision 1.277 / (download) - annotate - [select for diffs], Tue Aug 10 05:59:45 2004 UTC (19 years, 7 months ago) by schmonz
Branch: MAIN
Changes since 1.276: +1 -11 lines
Diff to previous 1.276 (colored) to selected 1.90 (colored)

ezmlm-idx's options have moved to its options.mk.

Revision 1.276 / (download) - annotate - [select for diffs], Mon Aug 9 22:37:34 2004 UTC (19 years, 7 months ago) by seb
Branch: MAIN
Changes since 1.275: +1 -13 lines
Diff to previous 1.275 (colored) to selected 1.90 (colored)

Use bsd.options.mk framework for flow-tools package.

Revision 1.275 / (download) - annotate - [select for diffs], Sat Aug 7 21:03:59 2004 UTC (19 years, 7 months ago) by minskim
Branch: MAIN
Changes since 1.274: +1 -6 lines
Diff to previous 1.274 (colored) to selected 1.90 (colored)

Convert bash2 to use bsd.options.mk.

Revision 1.274 / (download) - annotate - [select for diffs], Sat Aug 7 14:13:06 2004 UTC (19 years, 7 months ago) by xtraeme
Branch: MAIN
Changes since 1.273: +1 -6 lines
Diff to previous 1.273 (colored) to selected 1.90 (colored)

Remove unused JABBERD_METHOD, it was replaced by PKG_OPTIONS.jabberd2.

Revision 1.273 / (download) - annotate - [select for diffs], Thu Aug 5 07:20:33 2004 UTC (19 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.272: +1 -17 lines
Diff to previous 1.272 (colored) to selected 1.90 (colored)

G/C the MUTT_* variables as they're documented in the mutt package
Makefiles and will be removed and some point in the future.

Revision 1.272 / (download) - annotate - [select for diffs], Thu Aug 5 02:55:50 2004 UTC (19 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.271: +1 -58 lines
Diff to previous 1.271 (colored) to selected 1.90 (colored)

Garbage collect package-specific default settings that have migrated into
their respective package Makefiles after they were converted to use
bsd.options.mk.  These variables will be removed at some point in the
future (to be determined).

Revision 1.271 / (download) - annotate - [select for diffs], Wed Aug 4 02:56:01 2004 UTC (19 years, 7 months ago) by jschauma
Branch: MAIN
Changes since 1.270: +11 -1 lines
Diff to previous 1.270 (colored) to selected 1.90 (colored)

Introduce GAMEDATAMODE and INSTALL_GAME_DATA, which will take care
of files installed for SETGIDGAME packages.
This will help address PR pkg/25313 and PR pkg/26236.

Revision 1.270 / (download) - annotate - [select for diffs], Mon Aug 2 04:01:38 2004 UTC (19 years, 8 months ago) by schmonz
Branch: MAIN
Changes since 1.269: +1 -6 lines
Diff to previous 1.269 (colored) to selected 1.90 (colored)

Remove QMAIL_AUTOCONFIG. No need to mark it obsolete; it hasn't
been around long.

Revision 1.269 / (download) - annotate - [select for diffs], Fri Jul 30 07:48:56 2004 UTC (19 years, 8 months ago) by xtraeme
Branch: MAIN
Changes since 1.268: +16 -1 lines
Diff to previous 1.268 (colored) to selected 1.90 (colored)

Add a new variable to specify the installation prefix for
X11 packages (currently XFree86 and xorg), X11ROOT_PREFIX.

Defaults:

xorg: X11ROOT_PREFIX = xorg.
XFree86: X11ROOT_PREFIX = XFree86.

Otherwise it's undefined.

With this modification we don't have to specify X11BASE anymore,
because it's assigned automatically via bsd.pkg.defaults.mk.

If you want to change the defaults, specify X11ROOT_PREFIX in mk.conf.

Update Packages.txt now that we don't need X11BASE.

Revision 1.268 / (download) - annotate - [select for diffs], Tue Jul 27 15:59:31 2004 UTC (19 years, 8 months ago) by xtraeme
Branch: MAIN
Changes since 1.267: +3 -3 lines
Diff to previous 1.267 (colored) to selected 1.90 (colored)

erm, I had PKG_RESUME_TRANSFERS set to yes, disable it for now.

Revision 1.267 / (download) - annotate - [select for diffs], Tue Jul 27 15:56:19 2004 UTC (19 years, 8 months ago) by xtraeme
Branch: MAIN
Changes since 1.266: +7 -1 lines
Diff to previous 1.266 (colored) to selected 1.90 (colored)

Make the option to resume transfer optional, as suggested by
Robert Elz in PR pkg/26448 (at least for now).

If you want to use it, PKG_RESUME_TRANSFERS must be set to [Yy][Ee][Ss].

While here, no need to use ${AWK} to get the size with ${WC} -c,
${WC} -c < file is enough.

Thanks to Robert Elz for suggestions, still I have to fix the problems
reported in the PR.

Revision 1.266 / (download) - annotate - [select for diffs], Tue Jul 27 10:34:53 2004 UTC (19 years, 8 months ago) by xtraeme
Branch: MAIN
Changes since 1.265: +5 -1 lines
Diff to previous 1.265 (colored) to selected 1.90 (colored)

Fix some more troubles with my modification for resume transfers:

	o Use ${WC} -c instead of using ${LS} -l, which works with
	  symlinks.
	o Only assign -R to FETCH_RESUME_ARGS when FETCH_CMD is the
	  default value (NetBSD's ftp).
	o Fix for www/navigator package, which uses DIST_SUBDIR.
	o Replace another [ with ${TEST}.
	o Print a warning when FETCH_CMD != ftp and FETCH_RESUME_ARGS
	  is empty (resume will not be possible).

Thanks to cube@ and tron@ for reporting/helping with the problems.

Revision 1.265 / (download) - annotate - [select for diffs], Tue Jul 27 03:59:26 2004 UTC (19 years, 8 months ago) by xtraeme
Branch: MAIN
Changes since 1.264: +16 -1 lines
Diff to previous 1.264 (colored) to selected 1.90 (colored)

Add support to resume transfers, by default it will be disabled if
$http_proxy or $ftp_proxy are defined (for the moment, NetBSD's ftp(1)
doesn't support this).

While I'm here, move FETCH_CMD from bsd.pkg.mk to bsd.pkg.defaults.mk,
and add the new variable FETCH_RESUME_ARGS (-R by default with ftp(1)
from NetBSD/pkgsrc).

If you want to use wget to resume transfers, you should use something
like:

FETCH_CMD=wget
FETCH_RESUME_ARGS=-c

Revision 1.264 / (download) - annotate - [select for diffs], Sun Jul 25 06:51:33 2004 UTC (19 years, 8 months ago) by grant
Branch: MAIN
Changes since 1.263: +6 -1 lines
Diff to previous 1.263 (colored) to selected 1.90 (colored)

move PKG_SUFX=.tbz example to bsd.pkg.defaults.mk.

Revision 1.263 / (download) - annotate - [select for diffs], Wed Jul 21 22:32:24 2004 UTC (19 years, 8 months ago) by schmonz
Branch: MAIN
Changes since 1.262: +22 -4 lines
Diff to previous 1.262 (colored) to selected 1.90 (colored)

Add QMAIL_AUTOCONFIG, QMAIL_QUEUE_DIR, and QMAIL_QUEUE_EXTRA, which
will control some aspects of the about-to-be-imported qmail package,
and note that you probably don't need to change QMAILDIR anymore.

Revision 1.262 / (download) - annotate - [select for diffs], Tue Jul 20 22:04:44 2004 UTC (19 years, 8 months ago) by salo
Branch: MAIN
Changes since 1.261: +2 -2 lines
Diff to previous 1.261 (colored) to selected 1.90 (colored)

Remove external Matroska support from mplayer packages.
The new internal demuxer is the only one supported now, works better
and support for the external one will be removed in next releases.

Revision 1.261 / (download) - annotate - [select for diffs], Mon Jul 19 23:54:32 2004 UTC (19 years, 8 months ago) by schmonz
Branch: MAIN
Changes since 1.260: +11 -1 lines
Diff to previous 1.260 (colored) to selected 1.90 (colored)

Introduce EZMLM_IDX_USE_{MY,PG}SQL, which provide database support
in mail/ezmlm-idx.

Revision 1.260 / (download) - annotate - [select for diffs], Mon Jul 19 20:00:15 2004 UTC (19 years, 8 months ago) by jlam
Branch: MAIN
Changes since 1.259: +6 -25 lines
Diff to previous 1.259 (colored) to selected 1.90 (colored)

Stop the proliferation of <PKG>_USE_<FOO> yes/no variables in the
mail/postfix package -- create a new option "POSTFIX_OPTIONS" that is a
list of optional add-ons that will be built into Postfix.  Currently,
it accepts any of "inet6 ldap mysql mysql4 prce sasl tls".  Move the
existing POSTFIX_USE_* variables into bsd.pkg.obsolete.mk.

Revision 1.259 / (download) - annotate - [select for diffs], Fri Jul 16 23:21:50 2004 UTC (19 years, 8 months ago) by xtraeme
Branch: MAIN
Changes since 1.258: +6 -1 lines
Diff to previous 1.258 (colored) to selected 1.90 (colored)

Enable OpenLDAP support in devel/apr, by default it's disabled.
If you want to use it, "APR_USE_OPENLDAP" should be set to [Yy][Ee][Ss].

This closes PR pkg/25356.

Revision 1.258 / (download) - annotate - [select for diffs], Wed Jul 14 00:25:11 2004 UTC (19 years, 8 months ago) by xtraeme
Branch: MAIN
Changes since 1.257: +6 -1 lines
Diff to previous 1.257 (colored) to selected 1.90 (colored)

Update chat/jabberd2 to 2.0s3.

Changes:

2004-06-25  jabberd 2.0s3

    * Fixed several memory leaks and overruns <karsten.petersen@hrz.tu-chemnitz.de>
    * Fixed XMPP session replacement [rob]
    * Added support for Win32 platforms <peter@cerebus.co.za> [rob]
    * Added support for requiring SSL/TLS before auth <deryni@eden.rutgers.edu>
    * Added support for LDAPv3 (including channel encryption) [rob]
    * Added workaround to make large presence broadcasts more efficient [rob]
    * Generate random dialback key if none provided [rob]
    * Rewrote configure script (+ many code tweaks to support this) [rob]
    * Remove build requirement for Libidn and OpenSSL [rob]
    * Removed bundled Libidn due to licensing issues [rob]
    * Bugfixes: 3059, 3174, 3343, 3368, 3480, 3481, 3594

Revision 1.257 / (download) - annotate - [select for diffs], Sat Jul 10 22:32:28 2004 UTC (19 years, 8 months ago) by salo
Branch: MAIN
Changes since 1.256: +11 -1 lines
Diff to previous 1.256 (colored) to selected 1.90 (colored)

Add default values for CONSERVER_DEFAULTPORT and CONSERVER_DEFAULTHOST,
used by comms/conserver.

Revision 1.256 / (download) - annotate - [select for diffs], Tue Jul 6 22:49:16 2004 UTC (19 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.255: +4 -4 lines
Diff to previous 1.255 (colored) to selected 1.90 (colored)

Retire buildlink2, now that all packages using it have been converted to
buildlink3.

Revision 1.255 / (download) - annotate - [select for diffs], Tue Jul 6 11:32:49 2004 UTC (19 years, 8 months ago) by abs
Branch: MAIN
Changes since 1.254: +7 -1 lines
Diff to previous 1.254 (colored) to selected 1.90 (colored)

Add SUN_JRE14_USE_JCE which pulls in Sun's Unlimited Strength
Java Cryptography Extension. Implemented as a variable rather than
as an additional package as it needs to replace JRE jar files.

Revision 1.254 / (download) - annotate - [select for diffs], Sat Jun 26 06:03:41 2004 UTC (19 years, 9 months ago) by grant
Branch: MAIN
Changes since 1.253: +2 -2 lines
Diff to previous 1.253 (colored) to selected 1.90 (colored)

as per bsd.pkg.mk rev 1.1449, flow.dl.sourceforge.net in Australia is
still unreachable. replace it with optusnet.dl.sourceforge.net,
another fast, up-to-date mirror.

Revision 1.253 / (download) - annotate - [select for diffs], Tue Jun 22 23:53:52 2004 UTC (19 years, 9 months ago) by xtraeme
Branch: MAIN
Changes since 1.252: +6 -1 lines
Diff to previous 1.252 (colored) to selected 1.90 (colored)

Enable drac support in mail/qpopper package, patch was supplied
by John Nemeth in PR pkg/22925.

The new option to use is "QPOPPER_USE_DRAC" and by default is not
defined.

Bump PKGREVISION.

Revision 1.252 / (download) - annotate - [select for diffs], Sun Jun 20 20:57:17 2004 UTC (19 years, 9 months ago) by xtraeme
Branch: MAIN
Changes since 1.251: +1 -11 lines
Diff to previous 1.251 (colored) to selected 1.90 (colored)

Update sysutils/grub to 0.95, and remove obsoleted options
GRUB_USE_UFS2/GRUB_USE_ISO9660, they are not longer needed.

New in 0.95 - 2004-06-13:

* Add support for ReiserFS 3.
* Fix support for FreeBSD 5.
* Support ATARAID for Linux in the grub shell and grub-install.
* Add CDROM support for El Torito with no emulation mode. You can use
  (cd) as a CDROM drive in the config file.
* Option --no-mem-option is implied for Linux 2.4.18 and newer.
* Add support for UFS2.

Revision 1.251 / (download) - annotate - [select for diffs], Sun Jun 20 02:52:56 2004 UTC (19 years, 9 months ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.250: +1 -14 lines
Diff to previous 1.250 (colored) to selected 1.90 (colored)

Remove obsoleted options USE_TETEX2 and LIBWRAP_FWD, they are not used
under any package, reported by Jim Bernard in PRs pkg/25975, pkg/25976.

Revision 1.250 / (download) - annotate - [select for diffs], Fri Jun 18 11:22:41 2004 UTC (19 years, 9 months ago) by kristerw
Branch: MAIN
Changes since 1.249: +1 -22 lines
Diff to previous 1.249 (colored) to selected 1.90 (colored)

Remove Motif 1.2 functionality.

Revision 1.249 / (download) - annotate - [select for diffs], Sun Jun 6 22:04:55 2004 UTC (19 years, 9 months ago) by minskim
Branch: MAIN
Changes since 1.248: +44 -39 lines
Diff to previous 1.248 (colored) to selected 1.90 (colored)

Introduce VARBASE per discussion on tech-pkg@.  It is set to "/var" by
default.

Revision 1.248 / (download) - annotate - [select for diffs], Fri Jun 4 20:15:28 2004 UTC (19 years, 9 months ago) by mrauch
Branch: MAIN
Changes since 1.247: +2 -2 lines
Diff to previous 1.247 (colored) to selected 1.90 (colored)

Note usage of PKG_LANG by misc/openoffice.

Revision 1.247 / (download) - annotate - [select for diffs], Mon May 31 16:47:00 2004 UTC (19 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.246: +3 -3 lines
Diff to previous 1.246 (colored) to selected 1.90 (colored)

Use a cleaner approach for previous:
- set RSH on an opsys-specific basis, defaulting to /usr/bin/rsh
  (XXX: please confirm/verify this on your OS)
- set SSH_RSHPATH to RSH in bsd.pkg.defaults.mk

Revision 1.246 / (download) - annotate - [select for diffs], Sun May 30 08:10:05 2004 UTC (19 years, 10 months ago) by mrauch
Branch: MAIN
Changes since 1.245: +21 -1 lines
Diff to previous 1.245 (colored) to selected 1.90 (colored)

Add MASTER_SITE_OPENOFFICE for the misc/openoffice* packages.
List extracted from http://download.openoffice.org/1.1.1/source.html

Revision 1.245 / (download) - annotate - [select for diffs], Fri May 28 22:20:42 2004 UTC (19 years, 10 months ago) by xtraeme
Branch: MAIN
Changes since 1.244: +6 -1 lines
Diff to previous 1.244 (colored) to selected 1.90 (colored)

Update mail/dovecot to 0.99.10.5.

v0.99.10.5 2003-12-27  Timo Sirainen <tss@iki.fi>

        + MySQL authentication, patch by Matthew Reimer
        + --with-moduledir configure option
        - mbox: APPEND reversed given \Draft and \Deleted flags
        - mbox: "LF not found" errors happened sometimes when X-IMAPbase
          header was updated. Possibly corrupted mbox sometimes.
          Thanks to Fabrice Bellet for finding this bug.
        - Custom flags couldn't be unset
        - Maildir: make sure ":2," is appended to filename when moving mails
          from new/ to cur/.
        - Maildir: synchronization might have sometimes set wrong flags to
          messages, or crash completely
        - Maildir: RENAME xx inbox.xx didn't result as uppercased ".INBOX.xx"
          directory which then couldn't be accessed
        - Don't crash with RAND_bytes() error messages anymore. This mostly
          happened with Fedora/RedHat.

pkgsrc changes:

	o Disable crammd5 patch, doesn't apply cleanly anymore.
	o Add a new option "DOVECOT_USE_MYSQL" to authenticate users
	  against a mysql database.

Revision 1.244 / (download) - annotate - [select for diffs], Thu May 27 09:28:15 2004 UTC (19 years, 10 months ago) by recht
Branch: MAIN
Changes since 1.243: +6 -1 lines
Diff to previous 1.243 (colored) to selected 1.90 (colored)

Add two patches from CVS:

- allow deletions in the middle of a hash_enumerate
- typo

Posted by Jukka Salmi on tech-pkg@.

While at it add a knob for changing cyrus' default idle method.

# CYRUS_IDLE
# use METHOD for IMAP IDLE
# METHOD is poll, idled or no
# Default: not defined

(Idea from FreeBSD)

Bump PKGREVISION to 2.

Revision 1.243 / (download) - annotate - [select for diffs], Tue May 25 21:51:42 2004 UTC (19 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.242: +6 -1 lines
Diff to previous 1.242 (colored) to selected 1.90 (colored)

Add VICE_USE_FFMPEG switch to enable ffmpeg support in vice.
Document it in bsd.pkg.defaults.mk.  Defaults to "no".
PKGREVISION not bumped since package does not change (by default).

Revision 1.242 / (download) - annotate - [select for diffs], Sun May 23 16:01:49 2004 UTC (19 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.241: +19 -1 lines
Diff to previous 1.241 (colored) to selected 1.90 (colored)

Introduce and use three new variables:
LEAFNODE_DATA_DIR, LEAFNODE_USER and LEAFNODE_GROUP, to be used by leafnode
to specify the data dir, the user and the group, defaulting to 'news'.
Note: the default is the same as for inn.
Pointed out by Georg Schwarz in mail to tech-pkg.

Revision 1.241 / (download) - annotate - [select for diffs], Sat May 22 19:09:53 2004 UTC (19 years, 10 months ago) by cl
Branch: MAIN
Changes since 1.240: +6 -1 lines
Diff to previous 1.240 (colored) to selected 1.90 (colored)

add XEN12_USE_COM2 option to switch Xen console on com port2

Revision 1.240 / (download) - annotate - [select for diffs], Sat May 22 18:58:29 2004 UTC (19 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.239: +11 -1 lines
Diff to previous 1.239 (colored) to selected 1.90 (colored)

Introduce and use two new variables:
INN_USER and INN_GROUP, specifying the username and groupname to be used
by inn, defaulting to 'news'.
Noted by Georg Schwarz in mail to tech-pkg.

Revision 1.239 / (download) - annotate - [select for diffs], Sat May 15 09:44:00 2004 UTC (19 years, 10 months ago) by grant
Branch: MAIN
Changes since 1.238: +2 -2 lines
Diff to previous 1.238 (colored) to selected 1.90 (colored)

update suggested CPAN mirror for Australia to mirror.aarnet.edu.au,
which is much more up-to-date than planetmirror.

Revision 1.238 / (download) - annotate - [select for diffs], Wed May 12 01:03:58 2004 UTC (19 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.237: +31 -1 lines
Diff to previous 1.237 (colored) to selected 1.90 (colored)

Introduce new variables:

SETGIDGAME:  specifies whether or not certain games are installed setgid
GAMEGRP:     the group owning games if SETGIDGAME is set
GAMEOWN:     the user owning games if SETFIDGAME is set
GAMEMODE:    the mode to install games as

Use these to provide INSTALL_GAME (for example for PR pkg/25313), and
set them to meaningful values under NetBSD.

Revision 1.237 / (download) - annotate - [select for diffs], Sun May 2 20:04:36 2004 UTC (19 years, 11 months ago) by xtraeme
Branch: MAIN
Changes since 1.236: +11 -1 lines
Diff to previous 1.236 (colored) to selected 1.90 (colored)

Rename GRUB_ISO9660 and GRUB_UFS2 to GRUB_USE_ISO9660 and GRUB_USE_UFS2
respectively, and document them in bsd.pkg.defaults.mk.

Revision 1.236 / (download) - annotate - [select for diffs], Sun May 2 19:15:18 2004 UTC (19 years, 11 months ago) by xtraeme
Branch: MAIN
Changes since 1.235: +6 -1 lines
Diff to previous 1.235 (colored) to selected 1.90 (colored)

Rename ENABLE_CACHE option to JWHOIS_ENABLE_CACHE, and document it in
the defaults file.

Revision 1.235 / (download) - annotate - [select for diffs], Wed Apr 28 11:27:54 2004 UTC (19 years, 11 months ago) by uebayasi
Branch: MAIN
Changes since 1.234: +1 -7 lines
Diff to previous 1.234 (colored) to selected 1.90 (colored)

* Bl3ify.
* Enable pkgviews installation.
* Obsolete PRIV_CONF_DIR and follow PKG_SYSCONFDIR, the standard.

Revision 1.234 / (download) - annotate - [select for diffs], Thu Apr 22 15:58:26 2004 UTC (19 years, 11 months ago) by seb
Branch: MAIN
Changes since 1.233: +7 -1 lines
Diff to previous 1.233 (colored) to selected 1.90 (colored)

Add default value of FLOW_TOOLS_USE_POSTGRESQL for package
net/flow-tools.

Revision 1.233 / (download) - annotate - [select for diffs], Wed Apr 21 21:09:32 2004 UTC (19 years, 11 months ago) by cube
Branch: MAIN
Changes since 1.232: +3 -17 lines
Diff to previous 1.232 (colored) to selected 1.90 (colored)

Drop localized *_USE_LDAP definitions and consistently use USE_OPENLDAP
instead.  As announced on tech-pkg.

Most notably affected are Postfix, sendmail, Samba and cyrus-saslauthd.  Be
sure to update your mk.conf accordingly.

Revision 1.232 / (download) - annotate - [select for diffs], Wed Apr 21 17:08:06 2004 UTC (19 years, 11 months ago) by tv
Branch: MAIN
Changes since 1.231: +2 -2 lines
Diff to previous 1.231 (colored) to selected 1.90 (colored)

Fix tyop

Revision 1.231 / (download) - annotate - [select for diffs], Tue Apr 20 14:21:19 2004 UTC (19 years, 11 months ago) by uebayasi
Branch: MAIN
Changes since 1.230: +5 -6 lines
Diff to previous 1.230 (colored) to selected 1.90 (colored)

Fix "M17N without Unicode".

Revision 1.230 / (download) - annotate - [select for diffs], Mon Apr 19 00:23:34 2004 UTC (19 years, 11 months ago) by recht
Branch: MAIN
Changes since 1.229: +8 -1 lines
Diff to previous 1.229 (colored) to selected 1.90 (colored)

Document the PGSQL_USE_HIER used by the PostgreSQL 7.4 packages.

Revision 1.229 / (download) - annotate - [select for diffs], Sun Apr 18 12:08:42 2004 UTC (19 years, 11 months ago) by uebayasi
Branch: MAIN
Changes since 1.228: +7 -37 lines
Diff to previous 1.228 (colored) to selected 1.90 (colored)

Update W3m from 0.4.0 to 0.5.

Now M17N patch is merged into the main development now.

Pkgsrc changes:
* Simplify options.
* XXX "M17N without Unicode" is broken now.  This should be fixed.

Other changes in W3m:

w3m 0.5 - 2004-03-22

* gettextize
* m17n patch merged

w3m 0.4.2 - 2003-09-23

* options: -4, -6
* configuration file in $(sysconfdir)/$(package)/
* func: NEXT_VISITED, PREV_VISITED
* autoconfiscate (partially)
* rc: use_history

w3m 0.4.1 - 2003-03-07

* fix bugs
  - completion segfault in lineinput
  - incremental search
  - URL pattern fix
  - UFhalfclose bug
  - allow pipe in shell command
  - enhance ftp directory support
  - linenumber in edit
  - fix Bug#181897
  - W3M_TTY problem fixed

Revision 1.228 / (download) - annotate - [select for diffs], Sat Apr 10 12:26:23 2004 UTC (19 years, 11 months ago) by salo
Branch: MAIN
Changes since 1.227: +2 -2 lines
Diff to previous 1.227 (colored) to selected 1.90 (colored)

Add "matroska" driver to list of possible MPLAYER_DISABLE_DRIVERS options.

Revision 1.227 / (download) - annotate - [select for diffs], Sun Apr 4 07:09:38 2004 UTC (19 years, 11 months ago) by agc
Branch: MAIN
Changes since 1.226: +3 -3 lines
Diff to previous 1.226 (colored) to selected 1.90 (colored)

Make USE_XPKGWEDGE default to "yes", as announced on tech-pkg@ last week.

Revision 1.226 / (download) - annotate - [select for diffs], Mon Mar 29 11:01:24 2004 UTC (20 years ago) by recht
Branch: MAIN
Changes since 1.225: +9 -1 lines
Diff to previous 1.225 (colored) to selected 1.90 (colored)

Add and document MKTTINTERP.

Revision 1.225 / (download) - annotate - [select for diffs], Sun Mar 28 23:14:29 2004 UTC (20 years ago) by xtraeme
Branch: MAIN
Changes since 1.224: +1 -6 lines
Diff to previous 1.224 (colored) to selected 1.90 (colored)

Remove USE_PKGSRC_XFREE86 which has been replaced by X11_TYPE=XFree86.

Revision 1.224 / (download) - annotate - [select for diffs], Mon Mar 15 18:09:42 2004 UTC (20 years ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.223: +3 -3 lines
Diff to previous 1.223 (colored) to selected 1.90 (colored)

Add MesaLib and glu to the list of packages for which we prefer the pkgsrc
libraries.  This now matches the behaviour in pre-buildlink3 days.

Revision 1.223 / (download) - annotate - [select for diffs], Mon Mar 15 17:36:42 2004 UTC (20 years ago) by jlam
Branch: MAIN
Changes since 1.222: +3 -3 lines
Diff to previous 1.222 (colored) to selected 1.90 (colored)

Alphabetize the PREFER_PKGSRC list for easier searching.

Revision 1.222 / (download) - annotate - [select for diffs], Sat Mar 6 13:45:37 2004 UTC (20 years ago) by jmmv
Branch: MAIN
Changes since 1.221: +2 -1 lines
Diff to previous 1.221 (colored) to selected 1.90 (colored)

Explicitly enable Xft support in mozilla-gtk2; it is already beeing used by
the GUI (because of gtk2), so do it the right way by adding support everywhere.
Bump PKGREVISION to 3.

Revision 1.221 / (download) - annotate - [select for diffs], Sat Mar 6 12:06:55 2004 UTC (20 years ago) by grant
Branch: MAIN
Changes since 1.220: +1 -6 lines
Diff to previous 1.220 (colored) to selected 1.90 (colored)

remove short-lived YTALK_USE_X11, now net/ytalk-x11 has X support
enabled.

Revision 1.220 / (download) - annotate - [select for diffs], Mon Mar 1 19:13:16 2004 UTC (20 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.219: +3 -3 lines
Diff to previous 1.219 (colored) to selected 1.90 (colored)

Mention that gnupg honours M68060 too, and fix the grammar in its
description.

Revision 1.219 / (download) - annotate - [select for diffs], Sun Feb 29 19:06:09 2004 UTC (20 years, 1 month ago) by recht
Branch: MAIN
Changes since 1.218: +3 -2 lines
Diff to previous 1.218 (colored) to selected 1.90 (colored)

Also add expat to PREFER_PKGSRC.
ok'd by wiz@

Revision 1.218 / (download) - annotate - [select for diffs], Sun Feb 29 18:58:12 2004 UTC (20 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.217: +2 -2 lines
Diff to previous 1.217 (colored) to selected 1.90 (colored)

Add fontconfig to PREFER_PKGSRC arguments too;
per report from hubertf that it fixed his kdetoys3 build and nudge from
Sverre Froyen on tech-pkg.

Revision 1.217 / (download) - annotate - [select for diffs], Sun Feb 29 11:33:43 2004 UTC (20 years, 1 month ago) by recht
Branch: MAIN
Changes since 1.216: +2 -2 lines
Diff to previous 1.216 (colored) to selected 1.90 (colored)

s/randr/randrext/ for PREFER_PKGSRC
(There's no randr pkg.)

Revision 1.216 / (download) - annotate - [select for diffs], Sun Feb 29 10:32:13 2004 UTC (20 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.215: +2 -2 lines
Diff to previous 1.215 (colored) to selected 1.90 (colored)

Default PREFER_PKGSRC to
Xrender render Xft2 freetype2 Xrandr randr xcursor
to fix lots of build problems on systems where the libraries
coming with X are too old for some packages (but not for others).
Ok'd by recht@ and agc@.

Attention: for this to take effect, you must recompile your packages
that depend on freetype2/Xrender, especially pango.

Revision 1.215 / (download) - annotate - [select for diffs], Sat Feb 28 12:22:14 2004 UTC (20 years, 1 month ago) by grant
Branch: MAIN
Changes since 1.214: +6 -1 lines
Diff to previous 1.214 (colored) to selected 1.90 (colored)

provide default for YTALK_USE_X11

Revision 1.214 / (download) - annotate - [select for diffs], Thu Feb 12 02:35:06 2004 UTC (20 years, 1 month ago) by jlam
Branch: MAIN
Changes since 1.213: +11 -6 lines
Diff to previous 1.213 (colored) to selected 1.90 (colored)

Create a new variable PREFER_NATIVE that has the opposite semantics
as PREFER_PKGSRC.  Preferences are determined by the most specific
instance of the package in either PREFER_PKGSRC or PREFER_NATIVE.  If
a package is specified in neither or in both variables, then PREFER_PKGSRC
has precedence over PREFER_NATIVE.

Revision 1.213 / (download) - annotate - [select for diffs], Sat Feb 7 15:21:52 2004 UTC (20 years, 1 month ago) by uebayasi
Branch: MAIN
Changes since 1.212: +7 -1 lines
Diff to previous 1.212 (colored) to selected 1.90 (colored)

Introduce EMACS_TYPE to determine which emacs version should be installed,
and emacs lisp packages should be built for.  Users need to set the version
you like in /etc/mk.conf explicitly.

The default is emacs21 (editors/emacs, GNU Emacs 21.x).

This will deprecate EMACS_VERSION_DEFAULT defined in emacs.mk and USE_XEMACS
used in places.

Revision 1.212 / (download) - annotate - [select for diffs], Thu Feb 5 07:19:34 2004 UTC (20 years, 1 month ago) by jlam
Branch: MAIN
Changes since 1.211: +10 -1 lines
Diff to previous 1.211 (colored) to selected 1.90 (colored)

Document PREFER_PKGSRC and default to "no".

Revision 1.211 / (download) - annotate - [select for diffs], Sat Jan 31 23:46:18 2004 UTC (20 years, 2 months ago) by snj
Branch: MAIN
Changes since 1.210: +2 -2 lines
Diff to previous 1.210 (colored) to selected 1.90 (colored)

s/seperated/separated/

Revision 1.210 / (download) - annotate - [select for diffs], Thu Jan 29 18:36:38 2004 UTC (20 years, 2 months ago) by jmmv
Branch: MAIN
Changes since 1.209: +9 -1 lines
Diff to previous 1.209 (colored) to selected 1.90 (colored)

Update grub to 0.94:
* Support building on x86-64 with gcc -m32.
* Use a BIOS call to turn on/off Gate A20. This should solve various
  problems related to Gate A20 in modern BIOSes.
* Add a workaround for buggy BIOSes (notably HP Vectra series) which
  don't pass the boot drive correctly.
* Display "GNU GRUB" instead of "GRUB" in the menu.
* Add support for QNX RTP into the grub shell.
* Add support for the initrd max address of a kernel header in Linux.
* Support 32 bit and 64 bit dev_t.
* Add support for an install device in GRUB's notation with no
  parenthesis (e.g. grub-install hd0).
* Improve the manual a lot.

While here, add a new build definition, GRUB_PRESET_COMMAND, which can be
set to a single command that will be embedded in grub's stage2 and executed
during bootup (useful for automated diskless setups).  Also make use of
BUILD_DEFS properly.  And pick up maintainership, as requested by tron@.

Revision 1.209 / (download) - annotate - [select for diffs], Sat Jan 24 09:23:22 2004 UTC (20 years, 2 months ago) by xtraeme
Branch: MAIN
Changes since 1.208: +6 -1 lines
Diff to previous 1.208 (colored) to selected 1.90 (colored)

Added a new variable for XFree86 packages:

USE_PKGSRC_XFREE86

By default it is disabled, if you want to use XFree86 packages from
pkgsrc, please add "USE_PKGSRC_XFREE86=YES" in /etc/mk.conf.

Revision 1.208 / (download) - annotate - [select for diffs], Thu Jan 22 10:19:58 2004 UTC (20 years, 2 months ago) by xtraeme
Branch: MAIN
Changes since 1.207: +3 -2 lines
Diff to previous 1.207 (colored) to selected 1.90 (colored)

Add three additional mirrors to MASTER_SITE_SUSE.

Revision 1.207 / (download) - annotate - [select for diffs], Sun Jan 18 18:55:24 2004 UTC (20 years, 2 months ago) by epg
Branch: MAIN
Changes since 1.206: +11 -1 lines
Diff to previous 1.206 (colored) to selected 1.90 (colored)

As i described in <9883.1074028467@gould.diplodocus.org>
(http://mail-index.netbsd.org/tech-pkg/2004/01/13/0015.html) and
<479.1074093881@gould.diplodocus.org>
(http://mail-index.netbsd.org/tech-pkg/2004/01/14/0016.html), add an
APR_USE_DB4 variable (defaulting to YES except on platforms where db4
is broken).

devel/apr now builds without db4 when APR_USE_DB4 is NO.

Revision 1.206 / (download) - annotate - [select for diffs], Thu Jan 15 12:48:00 2004 UTC (20 years, 2 months ago) by jlam
Branch: MAIN
Changes since 1.205: +7 -1 lines
Diff to previous 1.205 (colored) to selected 1.90 (colored)

Support a new yes/no variable "KERBEROS_PREFIX_CMDS" that can be used by
Kerberos implementation packages to decide whether to prefix certain
commands with a "k" to differentiate it from system tools with similar
names.  KERBEROS_PREFIX_CMDS defaults to "no".

Revision 1.205 / (download) - annotate - [select for diffs], Wed Jan 14 08:23:07 2004 UTC (20 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.204: +6 -2 lines
Diff to previous 1.204 (colored) to selected 1.90 (colored)

Add warning to IGNORE_RECOMMENDED entry.

Revision 1.204 / (download) - annotate - [select for diffs], Wed Jan 14 06:57:45 2004 UTC (20 years, 2 months ago) by rh
Branch: MAIN
Changes since 1.203: +9 -1 lines
Diff to previous 1.203 (colored) to selected 1.90 (colored)

  Add *RECOMMENDED variables as discussed on tech-pkg@ to allow for a more
fine-grained distinction between required versions of pre-requisites
(DEPENDS) and versions that are recommended for security or library ABI
consistency reasons (RECOMMENDED).

  The contents of ${RECOMMENDED} are added to DEPENDS unless
IGNORE_RECOMMENDED is set to YES, in which case a warning will be printed
and IGNORE_RECOMMENDED will be added to BUILD_DEFS.

  Add a corresponding BUILDLINK_RECOMMENDED.<pkg> variable for use with
buildlink2 and buildlink3.

Revision 1.203 / (download) - annotate - [select for diffs], Sun Jan 11 17:03:47 2004 UTC (20 years, 2 months ago) by kim
Branch: MAIN
Changes since 1.202: +15 -1 lines
Diff to previous 1.202 (colored) to selected 1.90 (colored)

Add ICECAST_CHUNKLEN and ICECAST_SOURCE_BUFFSIZE (for audio/icecast1).

Revision 1.202 / (download) - annotate - [select for diffs], Sun Jan 11 16:42:04 2004 UTC (20 years, 2 months ago) by kim
Branch: MAIN
Changes since 1.201: +7 -1 lines
Diff to previous 1.201 (colored) to selected 1.90 (colored)

Add X10_PORT for selecting the default serial port for the X10 adapter.

Revision 1.201 / (download) - annotate - [select for diffs], Thu Jan 8 19:48:05 2004 UTC (20 years, 2 months ago) by xtraeme
Branch: MAIN
Changes since 1.200: +7 -1 lines
Diff to previous 1.200 (colored) to selected 1.90 (colored)

Explain the option ICECAST_CHROOTDIR.

Revision 1.200 / (download) - annotate - [select for diffs], Wed Jan 7 21:45:18 2004 UTC (20 years, 2 months ago) by jmmv
Branch: MAIN
Changes since 1.199: +6 -1 lines
Diff to previous 1.199 (colored) to selected 1.90 (colored)

Change wxGTK to use gtk2 by default.  Provide the WXGTK_USE_GTK1 variable
which, if set to YES, will revert the package to use gtk1.  Bump PKGREVISION.
Closes PR pkg/21509.

Revision 1.199 / (download) - annotate - [select for diffs], Wed Jan 7 19:09:41 2004 UTC (20 years, 2 months ago) by ben
Branch: MAIN
Changes since 1.198: +4 -4 lines
Diff to previous 1.198 (colored) to selected 1.90 (colored)

Add fprot-workstation-license for security/fprot-workstation-bin.

Revision 1.198 / (download) - annotate - [select for diffs], Tue Jan 6 23:00:51 2004 UTC (20 years, 2 months ago) by jlam
Branch: MAIN
Changes since 1.197: +7 -1 lines
Diff to previous 1.197 (colored) to selected 1.90 (colored)

Create a variable USE_XPKGWEDGE that determines whether or not pkgsrc will
use xpkgwedge to install X11 packages into ${LOCALBASE}.  It defaults to
"no" to preserve the current behaviour.

Also make pkgviews imply USE_XPKGWEDGE=yes, as xpkgwedge is a requirement
for making X11 packages install properly using pkgviews.

Revision 1.197 / (download) - annotate - [select for diffs], Fri Jan 2 18:45:44 2004 UTC (20 years, 3 months ago) by ben
Branch: MAIN
Changes since 1.196: +4 -1 lines
Diff to previous 1.196 (colored) to selected 1.90 (colored)

Add license information for fp-netbsd-ws, and note new package in Makefile
and CHANGES.

Revision 1.196 / (download) - annotate - [select for diffs], Tue Dec 23 10:21:53 2003 UTC (20 years, 3 months ago) by xtraeme
Branch: MAIN
Changes since 1.195: +29 -1 lines
Diff to previous 1.195 (colored) to selected 1.90 (colored)

Added default values for jabberd package.

Revision 1.195 / (download) - annotate - [select for diffs], Wed Dec 17 13:48:02 2003 UTC (20 years, 3 months ago) by keihan
Branch: MAIN
Changes since 1.194: +20 -20 lines
Diff to previous 1.194 (colored) to selected 1.90 (colored)

http://www.netbsd.org/Sites/net.html is no more, use /mirrors/ instead.

From Dave B <netbsd-current (at) dberg (dot) net> to www@

While there, s/netbsd.org/NetBSD.org/g.

Revision 1.194 / (download) - annotate - [select for diffs], Wed Dec 17 03:00:11 2003 UTC (20 years, 3 months ago) by grant
Branch: MAIN
Changes since 1.193: +7 -1 lines
Diff to previous 1.193 (colored) to selected 1.90 (colored)

add a template and comments for MOZILLA_USE_LINUX.

Revision 1.193 / (download) - annotate - [select for diffs], Thu Dec 4 10:28:31 2003 UTC (20 years, 3 months ago) by veego
Branch: MAIN
Changes since 1.192: +7 -1 lines
Diff to previous 1.192 (colored) to selected 1.90 (colored)

Add IRSSI_USE_SSL?= YES to be used in the coming update of irssi 0.8.8.

Revision 1.192 / (download) - annotate - [select for diffs], Wed Nov 12 17:24:38 2003 UTC (20 years, 4 months ago) by agc
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.191: +5 -5 lines
Diff to previous 1.191 (colored) to selected 1.90 (colored)

After some discussion, default BSDSRCDIR to /usr/src if it's not
already set in /etc/mk.conf, and default BSDXSRCDIR to /usr/xsrc if
it's not already set in /etc/mk.conf.

Revision 1.191 / (download) - annotate - [select for diffs], Tue Nov 11 14:32:06 2003 UTC (20 years, 4 months ago) by agc
Branch: MAIN
Changes since 1.190: +14 -1 lines
Diff to previous 1.190 (colored) to selected 1.90 (colored)

Add explanations (and commented-out defaults) for BSDSRCDIR and BSDXSRCDIR.

Revision 1.190 / (download) - annotate - [select for diffs], Fri Nov 7 13:55:02 2003 UTC (20 years, 4 months ago) by dmcmahill
Branch: MAIN
Changes since 1.189: +8 -1 lines
Diff to previous 1.189 (colored) to selected 1.90 (colored)

add USE_TETEX2 configuration variable and modify dvipdfm to use this
to allow it to work with teTeX2 or teTeX instead of requiring only
teTeX (1).

Revision 1.189 / (download) - annotate - [select for diffs], Sun Oct 19 07:43:24 2003 UTC (20 years, 5 months ago) by grant
Branch: MAIN
Changes since 1.188: +31 -31 lines
Diff to previous 1.188 (colored) to selected 1.90 (colored)

whitespace fixes

Revision 1.188 / (download) - annotate - [select for diffs], Thu Oct 16 12:36:29 2003 UTC (20 years, 5 months ago) by salo
Branch: MAIN
Changes since 1.187: +2 -2 lines
Diff to previous 1.187 (colored) to selected 1.90 (colored)

Set default for SILC_CLIENT_WITH_PERL here.

Revision 1.187 / (download) - annotate - [select for diffs], Sat Oct 11 02:44:17 2003 UTC (20 years, 5 months ago) by grant
Branch: MAIN
Changes since 1.186: +9 -8 lines
Diff to previous 1.186 (colored) to selected 1.90 (colored)

don't hardcode the -DHasGcc2... flags to imake, pass them only if
we're actually using gcc on Solaris.

fixes building of imake PIC code when the compiler is not gcc.

Revision 1.186 / (download) - annotate - [select for diffs], Sat Sep 20 16:56:10 2003 UTC (20 years, 6 months ago) by salo
Branch: MAIN
Changes since 1.185: +12 -1 lines
Diff to previous 1.185 (colored) to selected 1.90 (colored)

Add two new pure-ftpd variables:
 PURE_FTPD_USE_TLS, PURE_FTPD_USE_VIRTUAL_CHROOT

Revision 1.185 / (download) - annotate - [select for diffs], Mon Sep 15 16:12:33 2003 UTC (20 years, 6 months ago) by jmmv
Branch: MAIN
Changes since 1.184: +6 -1 lines
Diff to previous 1.184 (colored) to selected 1.90 (colored)

Add MANINSTALL and document it.  This is to ensure it's always defined, even
if system .mk files do not set it (when using devel/mk-files, for example).

Revision 1.184 / (download) - annotate - [select for diffs], Sun Sep 14 18:01:11 2003 UTC (20 years, 6 months ago) by jmmv
Branch: MAIN
Changes since 1.183: +7 -1 lines
Diff to previous 1.183 (colored) to selected 1.90 (colored)

Set default value of USE_ESOUND (to YES) and document it.

Revision 1.183 / (download) - annotate - [select for diffs], Sat Sep 13 18:32:08 2003 UTC (20 years, 6 months ago) by kim
Branch: MAIN
Changes since 1.182: +7 -1 lines
Diff to previous 1.182 (colored) to selected 1.90 (colored)

Document IMAP_UW_MAILSPOOLHOME

Revision 1.182 / (download) - annotate - [select for diffs], Fri Sep 12 13:35:28 2003 UTC (20 years, 6 months ago) by salo
Branch: MAIN
Changes since 1.181: +2 -2 lines
Diff to previous 1.181 (colored) to selected 1.90 (colored)

Typos/punctuation/caps.

Revision 1.181 / (download) - annotate - [select for diffs], Sat Sep 6 12:04:09 2003 UTC (20 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.180: +3 -2 lines
Diff to previous 1.180 (colored) to selected 1.90 (colored)

Suggest a good default value for RCD_SCRIPTS_DIR for pkgviews users.

Revision 1.180 / (download) - annotate - [select for diffs], Sat Sep 6 11:51:17 2003 UTC (20 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.179: +7 -1 lines
Diff to previous 1.179 (colored) to selected 1.90 (colored)

Move RCD_SCRIPTS_DIR definition to bsd.pkg.defaults.mk.  This implies that
RCD_SCRIPTS_DIR is user-settable in /etc/mk.conf.

Revision 1.179 / (download) - annotate - [select for diffs], Sat Sep 6 11:39:29 2003 UTC (20 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.178: +7 -1 lines
Diff to previous 1.178 (colored) to selected 1.90 (colored)

Move PKG_SYSCONFBASE definition into bsd.pkg.defaults.mk.  This implies
that it's user-settable from /etc/mk.conf.

Revision 1.178 / (download) - annotate - [select for diffs], Wed Sep 3 13:56:28 2003 UTC (20 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.177: +5 -1 lines
Diff to previous 1.177 (colored) to selected 1.90 (colored)

Don't restrict the user to only the default view.  Also allow user to
customize the default view through setting DEFAULT_VIEW in /etc/mk.conf.

Revision 1.177 / (download) - annotate - [select for diffs], Tue Sep 2 06:59:41 2003 UTC (20 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.176: +17 -1 lines
Diff to previous 1.176 (colored) to selected 1.90 (colored)

Merge pkgviews-mk branch into the HEAD by running:

	cd pkgsrc/mk
	cvs update -Pd -A
	cvs update -Pd -j pkgviews-mk-base -j pkgviews-mk

Revision 1.160.2.9 / (download) - annotate - [select for diffs], Fri Aug 29 02:06:09 2003 UTC (20 years, 7 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160.2.8: +17 -1 lines
Diff to previous 1.160.2.8 (colored) next main 1.161 (colored) to selected 1.90 (colored)

Support two new variables:

PKG_INSTALLATION_PREFS?= overwrite pkgviews
# This is a whitespace-separated list of installation types to try when
# building a package, in order of preference.
# Possible: any of: overwrite, pkgviews
# Default: overwrite pkgviews

PKG_INSTALLATION_TYPES?= overwrite
# This is a whitespace-separated list of installation types supported
# by the package.
#
# *NOTE*: This variable *must* be set in the package Makefile *before*
#         the inclusion of bsd.prefs.mk.
#
# Possible: any of: overwrite, pkgviews
# Default: overwrite

Revision 1.160.2.8 / (download) - annotate - [select for diffs], Tue Aug 26 21:58:05 2003 UTC (20 years, 7 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160.2.7: +14 -1 lines
Diff to previous 1.160.2.7 (colored) to selected 1.90 (colored)

Sync to HEAD

Revision 1.176 / (download) - annotate - [select for diffs], Sun Aug 24 01:58:56 2003 UTC (20 years, 7 months ago) by taca
Branch: MAIN
CVS Tags: pkgviews-mk-base
Changes since 1.175: +14 -1 lines
Diff to previous 1.175 (colored) to selected 1.90 (colored)

Add description of MYSQL_CHARSET and MYSQL_EXTRA_CHARSET.

Fix PR pkg/22560 by myself, OKed by wiz@.

Revision 1.160.2.7 / (download) - annotate - [select for diffs], Sat Aug 16 09:08:47 2003 UTC (20 years, 7 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160.2.6: +0 -0 lines
Diff to previous 1.160.2.6 (colored) to selected 1.90 (colored)

Sync to HEAD for tools.mk changes.

Revision 1.160.2.6 / (download) - annotate - [select for diffs], Thu Aug 14 07:37:00 2003 UTC (20 years, 7 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160.2.5: +44 -2 lines
Diff to previous 1.160.2.5 (colored) to selected 1.90 (colored)

Sync to HEAD, primarily for texinfo changes, and prepare for buildlink3.

Revision 1.160.2.5 / (download) - annotate - [select for diffs], Thu Aug 14 07:08:16 2003 UTC (20 years, 7 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160.2.4: +1 -6 lines
Diff to previous 1.160.2.4 (colored) to selected 1.90 (colored)

Move the PKG_INSTALLATION_TYPE definition from bsd.pkg.defaults.mk to
bsd.prefs.mk.  We don't want users to get the idea that this variable is
something that they set in /etc/mk.conf.

Revision 1.175 / (download) - annotate - [select for diffs], Fri Aug 8 12:04:40 2003 UTC (20 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.174: +4 -4 lines
Diff to previous 1.174 (colored) to selected 1.90 (colored)

Use saner values for PKGSRC_SHOW_BUILD_DEFS - make this switch on "yes"
or "YES", rather than a straight definition.

Revision 1.174 / (download) - annotate - [select for diffs], Fri Aug 8 11:13:17 2003 UTC (20 years, 7 months ago) by hubertf
Branch: MAIN
Changes since 1.173: +21 -1 lines
Diff to previous 1.173 (colored) to selected 1.90 (colored)

Document FLUXBOX_USE_* variables for pkgsrc/wm/fluxbox

Revision 1.173 / (download) - annotate - [select for diffs], Fri Aug 8 09:58:16 2003 UTC (20 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.172: +3 -3 lines
Diff to previous 1.172 (colored) to selected 1.90 (colored)

Set the default value for PKGSRC_SHOW_BUILD_DEFS to be defined, to preserve
the eisting behaviour.

Revision 1.172 / (download) - annotate - [select for diffs], Fri Aug 8 08:43:39 2003 UTC (20 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.171: +8 -1 lines
Diff to previous 1.171 (colored) to selected 1.90 (colored)

Re-model the BUILD_DEFS display during build: if PKGSRC_SHOW_BUILD_DEFS is
defined, then show the BUILD_DEFS to the user. If not, then just keep quiet.

Whilst I'm here, re-indent the cpp-like .if/.else/.endif/.for/.endfor lines
properly.

Also, remove the ":u" modifier in the build-defs-message code - it's not
strictly necessary (duplicate definitions will be displayed, but this isn't
a major problem), and it removes the requirement to have a make(1) binary
which supports ":u".

This should fix PR 22402 from Alan Barrett, and also addresses some concerns
raised by Robert Elz.

Revision 1.171 / (download) - annotate - [select for diffs], Thu Aug 7 16:14:05 2003 UTC (20 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.170: +6 -1 lines
Diff to previous 1.170 (colored) to selected 1.90 (colored)

Introduce a PKGSRC_MESSAGE_RECIPIENTS, which takes the login names of
users to whom the MESSAGE file should be mailed at package
installation time, and mail the MESSAGE file at the "make install"
stage (if PKGSRC_MESSAGE_RECIPIENTS is not empty).

Inspired by PR 22328 from Jeremy Reed.

Revision 1.170 / (download) - annotate - [select for diffs], Mon Aug 4 16:11:39 2003 UTC (20 years, 7 months ago) by jmc
Branch: MAIN
Changes since 1.169: +2 -2 lines
Diff to previous 1.169 (colored) to selected 1.90 (colored)

Make exim user default to mail like it always had pre defaults conversion.

Revision 1.169 / (download) - annotate - [select for diffs], Mon Aug 4 11:43:47 2003 UTC (20 years, 7 months ago) by jmmv
Branch: MAIN
Changes since 1.168: +2 -2 lines
Diff to previous 1.168 (colored) to selected 1.90 (colored)

Remove 'faad' support from MPLAYER_DISABLE_DRIVERS.  It is an input driver
needed to play files as pointed out by wiz@ (sorry for the delay) and salo@.

Revision 1.168 / (download) - annotate - [select for diffs], Mon Aug 4 11:14:07 2003 UTC (20 years, 7 months ago) by jmmv
Branch: MAIN
Changes since 1.167: +2 -2 lines
Diff to previous 1.167 (colored) to selected 1.90 (colored)

Let EXIM_USER be 'mail' by default, as it has always been (so the new package
does not break on systems where exim is already installed).  Noted by jmc@.

Revision 1.167 / (download) - annotate - [select for diffs], Sat Aug 2 17:00:06 2003 UTC (20 years, 8 months ago) by jmmv
Branch: MAIN
Changes since 1.166: +11 -1 lines
Diff to previous 1.166 (colored) to selected 1.90 (colored)

Convert exim and exim-user to the bsd.pkg.install.mk framework:
- Introduce EXIM_GROUP and EXIM_USER to tune the details of the group and
  user used by the daemon.
- Honour PKG_SYSCONFDIR.
- Install sample files under the examples directory.
- Automatically install example files under sysconfdir using CONF_FILES.
  This simplifies exim's set up from admin's point of view.
- Use RCD_SCRIPTS to handle the startup script.

As a result, bump PKGREVISION of exim and exim-user.

Revision 1.160.2.4 / (download) - annotate - [select for diffs], Fri Aug 1 19:00:26 2003 UTC (20 years, 8 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160.2.3: +17 -12 lines
Diff to previous 1.160.2.3 (colored) to selected 1.90 (colored)

Sync to HEAD.

Revision 1.166 / (download) - annotate - [select for diffs], Tue Jul 29 20:21:37 2003 UTC (20 years, 8 months ago) by seb
Branch: MAIN
Changes since 1.165: +1 -7 lines
Diff to previous 1.165 (colored) to selected 1.90 (colored)

Follow the trend started by jmmv@. Thanks Julio!

Remove IRCD_HYBRID_DPATH from bsd.pkg.defaults.mk and BUILD_DEFS,
set PKG_SYSCONFSUBDIR to 'ircd-hybrid' instead: the package builder is
now expected to adjust Ircd Hybrid configuration directory with
PKG_SYSCONFBASE(.${PKG_SYSCONFVAR}).

Replace local DOC_SUBST stuff with FILES_SUBST from bsd.pkg.install.mk.

Go with the previous PKGREVISION bump.

XXX Having the log files as SUPPORT_FILES is not optimal.
XXX I really should update this package.

Revision 1.165 / (download) - annotate - [select for diffs], Tue Jul 29 19:53:19 2003 UTC (20 years, 8 months ago) by jmmv
Branch: MAIN
Changes since 1.164: +11 -1 lines
Diff to previous 1.164 (colored) to selected 1.90 (colored)

Go one step further: turn CANNA_GROUP and CANNA_USER build definitions and
handle the group and the user they specify with bsd.pkg.install.mk.  In fact,
these variables were already changeable.

Revision 1.164 / (download) - annotate - [select for diffs], Tue Jul 29 17:24:49 2003 UTC (20 years, 8 months ago) by jmmv
Branch: MAIN
Changes since 1.163: +2 -2 lines
Diff to previous 1.163 (colored) to selected 1.90 (colored)

Use PKG_SYSCONFDIR when setting the default value for IRCD_HYBRID_DPATH.

Revision 1.163 / (download) - annotate - [select for diffs], Sun Jul 27 19:59:40 2003 UTC (20 years, 8 months ago) by jmmv
Branch: MAIN
Changes since 1.162: +7 -1 lines
Diff to previous 1.162 (colored) to selected 1.90 (colored)

Introduce the MPLAYER_DISABLE_DRIVERS variable, which holds a list of "drivers"
that are not wanted in the binary program.  It is empty by default, so that all
drivers are linked in to get a full featured binary package.  Packages using
this variable include mplayer and gmplayer.  While building mencoder, disable
all of these drivers, as they are not needed.  Bump PKGREVISION.

arts is now a enabled if not present in the variable.  This detail closes
PR pkg/21775 by Marc Recht.

Revision 1.162 / (download) - annotate - [select for diffs], Sat Jul 26 23:08:47 2003 UTC (20 years, 8 months ago) by jmmv
Branch: MAIN
Changes since 1.161: +1 -6 lines
Diff to previous 1.161 (colored) to selected 1.90 (colored)

SDL_USE_NAS deprecated by the new audio/SDL-nas plugin.

Revision 1.160.2.3 / (download) - annotate - [select for diffs], Thu Jul 24 22:00:07 2003 UTC (20 years, 8 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160.2.2: +6 -1 lines
Diff to previous 1.160.2.2 (colored) to selected 1.90 (colored)

Restore pkgviews-mk branch modifications to pkgsrc/mk after botched sync to
HEAD (time to script the command sequence...).

Revision 1.160.2.2 / (download) - annotate - [select for diffs], Thu Jul 24 09:25:57 2003 UTC (20 years, 8 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160.2.1: +6 -6 lines
Diff to previous 1.160.2.1 (colored) to selected 1.90 (colored)

Sync with HEAD.

Revision 1.161 / (download) - annotate - [select for diffs], Thu Jul 17 09:09:58 2003 UTC (20 years, 8 months ago) by uebayasi
Branch: MAIN
CVS Tags: pkgviews-base
Changes since 1.160: +6 -1 lines
Diff to previous 1.160 (colored) to selected 1.90 (colored)

Introduce CUE_USE_CANNA, which determines whether to enable Canna support.
Default is NO.

This addresses PR19010 by Takashi Yamamoto.

Revision 1.160.2.1 / (download) - annotate - [select for diffs], Wed Jul 16 09:33:46 2003 UTC (20 years, 8 months ago) by jlam
Branch: pkgviews-mk
Changes since 1.160: +6 -1 lines
Diff to previous 1.160 (colored) to selected 1.90 (colored)

Initial work in merging bits of the pkgviews branch into modern pkgsrc.
Currently, the pkgviews/buildlink2 integration is incomplete.  People who
work on this branch should also check out src/usr.sbin/pkg_install from
the pkgviews branch.

Revision 1.160 / (download) - annotate - [select for diffs], Sat Jul 12 14:24:15 2003 UTC (20 years, 8 months ago) by salo
Branch: MAIN
Branch point for: pkgviews-mk
Changes since 1.159: +10 -5 lines
Diff to previous 1.159 (colored) to selected 1.90 (colored)

Add PURE_FTPD_USE_PGSQL and use sane default for PURE_FTPD_USE_MYSQL.

Revision 1.159 / (download) - annotate - [select for diffs], Wed Jul 2 16:07:01 2003 UTC (20 years, 9 months ago) by grant
Branch: MAIN
Changes since 1.158: +4 -2 lines
Diff to previous 1.158 (colored) to selected 1.90 (colored)

patch from seb@ to pass --split-size to gtexinfo >= 4.6.

thanks seb :)

Revision 1.158 / (download) - annotate - [select for diffs], Mon Jun 30 07:34:37 2003 UTC (20 years, 9 months ago) by jlam
Branch: MAIN
Changes since 1.157: +1 -7 lines
Diff to previous 1.157 (colored) to selected 1.90 (colored)

XLOCK_LIGHT is deprecated, but we still support it in xlockmore/Makefile
until users figure out to install xlockmore-lite instead.

Revision 1.157 / (download) - annotate - [select for diffs], Sun Jun 29 21:25:49 2003 UTC (20 years, 9 months ago) by jschauma
Branch: MAIN
Changes since 1.156: +7 -1 lines
Diff to previous 1.156 (colored) to selected 1.90 (colored)

Introduce a variable called "MAKEINFO_ARGS", which may be used to pass
arguments to makeinfo(1).  This was made necessary by the fact that under
IRIX64 makeinfo(1) does not use a default split-size of 50000, which breaks
our PLISTs.  After feedback from seb@, initialize MAKEINFO_ARGS per default
to _OPSYS_MAKEINFO_ARGS, which is set in defs.<OPSYS>.mk (currently only
for IRIX using 64-bit ABI).

Revision 1.156 / (download) - annotate - [select for diffs], Mon Jun 23 15:46:22 2003 UTC (20 years, 9 months ago) by salo
Branch: MAIN
Changes since 1.155: +7 -1 lines
Diff to previous 1.155 (colored) to selected 1.90 (colored)

Introduce MPLAYER_USE_MEDIALIB.
It's used to enable optional support for Sun mediaLib library.  (only takes
effect on Solaris).

Revision 1.155 / (download) - annotate - [select for diffs], Mon Jun 23 15:10:44 2003 UTC (20 years, 9 months ago) by salo
Branch: MAIN
Changes since 1.154: +2 -7 lines
Diff to previous 1.154 (colored) to selected 1.90 (colored)

Remove DOVECOT_USE_LDAP in favor of generic USE_OPENLDAP.
Correct USE_OPENLDAP comment accordingly.

Revision 1.154 / (download) - annotate - [select for diffs], Thu Jun 12 15:27:08 2003 UTC (20 years, 9 months ago) by jschauma
Branch: MAIN
Changes since 1.153: +42 -9 lines
Diff to previous 1.153 (colored) to selected 1.90 (colored)

Initiate support for X11 apps under IRIX.
We introduce two new variables: ABI and IMAKEOPTS
ABI determines the correct ABI to use and is set during bootstrapping
from /etc/compiler.defaults.
IMAKEOPTS are the options passed to imake to allow it to set the right
definitions and find the right paths etc.  Use IMAKEOPTS with SunOS, too.

IRIX will always require xpkgwedge, since it's got a bogus X11BASE.

When linking against libXaw, make sure we get the right ABI.

Revision 1.153 / (download) - annotate - [select for diffs], Thu Jun 5 12:13:34 2003 UTC (20 years, 9 months ago) by markd
Branch: MAIN
Changes since 1.152: +6 -1 lines
Diff to previous 1.152 (colored) to selected 1.90 (colored)

Add EMACS_USE_XAW3D.

Revision 1.152 / (download) - annotate - [select for diffs], Wed May 28 15:53:12 2003 UTC (20 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.151: +31 -1 lines
Diff to previous 1.151 (colored) to selected 1.90 (colored)

Add some, per default undefined, variables for the blender package.

Revision 1.151 / (download) - annotate - [select for diffs], Sat May 24 17:32:02 2003 UTC (20 years, 10 months ago) by salo
Branch: MAIN
Changes since 1.150: +1 -8 lines
Diff to previous 1.150 (colored) to selected 1.90 (colored)

Remove MPLAYER_USE_REALMEDIA, used by default on i386, powerpc and alpha.

Revision 1.150 / (download) - annotate - [select for diffs], Thu May 22 16:53:40 2003 UTC (20 years, 10 months ago) by salo
Branch: MAIN
Changes since 1.149: +4 -4 lines
Diff to previous 1.149 (colored) to selected 1.90 (colored)

Convert MTOOLS_ENABLE_FLOPPYD to YES/NO from defined/undefined.

Revision 1.149 / (download) - annotate - [select for diffs], Thu May 22 14:36:31 2003 UTC (20 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.148: +6 -1 lines
Diff to previous 1.148 (colored) to selected 1.90 (colored)

Add USE_LIBCRACK variable for PAM.

Revision 1.148 / (download) - annotate - [select for diffs], Thu May 15 11:31:49 2003 UTC (20 years, 10 months ago) by salo
Branch: MAIN
Changes since 1.147: +6 -1 lines
Diff to previous 1.147 (colored) to selected 1.90 (colored)

Add GOLEM_WITH_SOUND, default NO.

Revision 1.147 / (download) - annotate - [select for diffs], Wed May 14 04:11:48 2003 UTC (20 years, 10 months ago) by salo
Branch: MAIN
Changes since 1.146: +17 -1 lines
Diff to previous 1.146 (colored) to selected 1.90 (colored)

Add DOVECOT_USE_{GNUTLS,LDAP,PGSQL} defaults.

Revision 1.146 / (download) - annotate - [select for diffs], Thu May 8 14:55:13 2003 UTC (20 years, 10 months ago) by jmmv
Branch: MAIN
Changes since 1.145: +4 -4 lines
Diff to previous 1.145 (colored) to selected 1.90 (colored)

Update wmthemes to 0.80.0 (matches current windowmaker version):

- Themes must be fetched through freshmeat.net now, which maintains a
  different directory layout and file naming than themes.org.
- The WINDOWMAKER_THEMES variable now requires the version number of the
  package.
- Add two NetBSD related themes to the default list.

Revision 1.145 / (download) - annotate - [select for diffs], Tue May 6 08:40:08 2003 UTC (20 years, 10 months ago) by uebayasi
Branch: MAIN
Changes since 1.144: +2 -2 lines
Diff to previous 1.144 (colored) to selected 1.90 (colored)

Fix "Default:" line of MPLAYER_ENABLE_RUNTIME_CPU_DETECTION; it's
default is "YES".

Noticed by Kouichirou Hiratsuka <hira at po6 dot nsk dot ne dot jp>.

Revision 1.144 / (download) - annotate - [select for diffs], Mon May 5 21:45:41 2003 UTC (20 years, 10 months ago) by seb
Branch: MAIN
Changes since 1.143: +1 -6 lines
Diff to previous 1.143 (colored) to selected 1.90 (colored)

PKGVULNDIR entry was duplicated. Only keep the more recent one
which is allow the more fully documented.

Revision 1.143 / (download) - annotate - [select for diffs], Mon May 5 06:06:56 2003 UTC (20 years, 10 months ago) by grant
Branch: MAIN
Changes since 1.142: +7 -1 lines
Diff to previous 1.142 (colored) to selected 1.90 (colored)

commented block for BITCHX_WITH_GTK.

Revision 1.142 / (download) - annotate - [select for diffs], Wed Apr 30 03:05:06 2003 UTC (20 years, 11 months ago) by atatat
Branch: MAIN
Changes since 1.141: +1 -6 lines
Diff to previous 1.141 (colored) to selected 1.90 (colored)

Move MESA_REQD from bsd.pkg.defaults.mk to bsd.pkg.mk, since the
latter appears to be a much better place to put something like that.

Also, remove a ) from the awk expression in the check-vulnerable
target, since it is extraneous and only causes awk to die.

Revision 1.141 / (download) - annotate - [select for diffs], Fri Apr 25 20:05:19 2003 UTC (20 years, 11 months ago) by jmmv
Branch: MAIN
Changes since 1.140: +8 -1 lines
Diff to previous 1.140 (colored) to selected 1.90 (colored)

Make the PKGVULNDIR variable more generic, so one can choose where to
store the vulnerabilities file.  This variable was already recognized by
audit-packages but not by bsd.pkg.mk which hardcoded DISTDIR.

Revision 1.140 / (download) - annotate - [select for diffs], Thu Apr 17 13:04:56 2003 UTC (20 years, 11 months ago) by agc
Branch: MAIN
Changes since 1.139: +7 -1 lines
Diff to previous 1.139 (colored) to selected 1.90 (colored)

Add an ALLOW_VULNERABLE_PACKAGES switch, defaulting to undefined, to allow
vulnerable packages to be built (in extremis, of course).

Prompted by Thomas Klausner.

Revision 1.139 / (download) - annotate - [select for diffs], Thu Apr 10 20:32:29 2003 UTC (20 years, 11 months ago) by grant
Branch: MAIN
Changes since 1.138: +10 -10 lines
Diff to previous 1.138 (colored) to selected 1.90 (colored)

planetmirror -> http (the ftp server has a 250 user limit), use
`planetmirror.com.au' to help MASTER_SORT and add planetmirror to a
few MASTER_SITES.

Revision 1.138 / (download) - annotate - [select for diffs], Thu Apr 3 22:47:42 2003 UTC (21 years ago) by rh
Branch: MAIN
Changes since 1.137: +4 -1 lines
Diff to previous 1.137 (colored) to selected 1.90 (colored)

Add webwasher licence (commented out)

Revision 1.137 / (download) - annotate - [select for diffs], Wed Mar 26 20:19:51 2003 UTC (21 years ago) by agc
Branch: MAIN
Changes since 1.136: +11 -1 lines
Diff to previous 1.136 (colored) to selected 1.90 (colored)

Add default clamav user and group

Revision 1.136 / (download) - annotate - [select for diffs], Mon Mar 24 18:25:11 2003 UTC (21 years ago) by jschauma
Branch: MAIN
Changes since 1.135: +3 -3 lines
Diff to previous 1.135 (colored) to selected 1.90 (colored)

Set MESA_REQD per default to latest stable version, 5.0.

Revision 1.128.2.1 / (download) - annotate - [select for diffs], Sun Mar 23 00:52:10 2003 UTC (21 years ago) by jmc
Branch: netbsd-1-6-1
Changes since 1.128: +9 -1 lines
Diff to previous 1.128 (colored) next main 1.129 (colored) to selected 1.90 (colored)

Pullup rev 1.133 (requested by grant in ticket #1200)
 provide CDRECORD_CONF.

Revision 1.135 / (download) - annotate - [select for diffs], Sat Mar 22 07:11:54 2003 UTC (21 years ago) by grant
Branch: MAIN
Changes since 1.134: +3 -2 lines
Diff to previous 1.134 (colored) to selected 1.90 (colored)

add flow.dl.sourceforge.net (Flow Communications), an official
sourceforge download site in Australia.

Revision 1.134 / (download) - annotate - [select for diffs], Sun Mar 9 19:22:31 2003 UTC (21 years ago) by jschauma
Branch: MAIN
Changes since 1.133: +6 -1 lines
Diff to previous 1.133 (colored) to selected 1.90 (colored)

Introduce MESA_REQD variable.
Can be set to any default value, current default is 3.4.2 (ie the version
that comes with XF4.2).  Packages that require just any version of Mesa
and friends to be present need not set it.  If a package requires 5.0,
however, it can set this variable and regardless of xpkgwedge or the version
of XF installed, it will pull in Mesa 5.0 and install it in LOCALBASE.

Revision 1.133 / (download) - annotate - [select for diffs], Sat Mar 8 08:45:22 2003 UTC (21 years ago) by grant
Branch: MAIN
Changes since 1.132: +9 -1 lines
Diff to previous 1.132 (colored) to selected 1.90 (colored)

provide CDRECORD_CONF.

Revision 1.132 / (download) - annotate - [select for diffs], Tue Mar 4 00:29:14 2003 UTC (21 years, 1 month ago) by seb
Branch: MAIN
Changes since 1.131: +6 -1 lines
Diff to previous 1.131 (colored) to selected 1.90 (colored)

Document USE_SASL2: default value 'undefined'.

Revision 1.131 / (download) - annotate - [select for diffs], Sat Feb 22 05:47:01 2003 UTC (21 years, 1 month ago) by uebayasi
Branch: MAIN
Changes since 1.130: +10 -3 lines
Diff to previous 1.130 (colored) to selected 1.90 (colored)

Add MASTER_SITE_XEMACS.

Revision 1.130 / (download) - annotate - [select for diffs], Sun Feb 16 23:56:12 2003 UTC (21 years, 1 month ago) by seb
Branch: MAIN
Changes since 1.129: +7 -1 lines
Diff to previous 1.129 (colored) to selected 1.90 (colored)

Add default value for FLOW_TOOLS_USE_MYSQL.
It is used by flow-tools to enable support of flow records export
into a MySQL database.

Revision 1.129 / (download) - annotate - [select for diffs], Fri Feb 14 19:46:43 2003 UTC (21 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.128: +29 -3 lines
Diff to previous 1.128 (colored) to selected 1.90 (colored)

Add some SUSE mirror sites. From Juan RP in PR 19768.

Revision 1.128 / (download) - annotate - [select for diffs], Fri Jan 24 10:04:58 2003 UTC (21 years, 2 months ago) by agc
Branch: MAIN
CVS Tags: netbsd-1-6-1-base
Branch point for: netbsd-1-6-1
Changes since 1.127: +13 -1 lines
Diff to previous 1.127 (colored) to selected 1.90 (colored)

Use an /etc/mk.conf setting for libdvdcss's HOMEPAGE and MASTER_SITES,
following a suggestion by salo.

This allows users to specify

LIBDVDCSS_MASTER_SITES= ...
LIBDVDCSS_HOMEPAGE= ...

in their /etc/mk.conf files.

Revision 1.127 / (download) - annotate - [select for diffs], Tue Jan 21 08:24:32 2003 UTC (21 years, 2 months ago) by grant
Branch: MAIN
Changes since 1.126: +17 -1 lines
Diff to previous 1.126 (colored) to selected 1.90 (colored)

add MYSQL_USER, MYSQL_GROUP, MYSQL_DATADIR.

Revision 1.126 / (download) - annotate - [select for diffs], Mon Jan 20 23:39:35 2003 UTC (21 years, 2 months ago) by kristerw
Branch: MAIN
Changes since 1.125: +35 -31 lines
Diff to previous 1.125 (colored) to selected 1.90 (colored)

List which packages depend on the different variables, and some consistency
changes to the descriptions.

XXX I have only done the [A-C]* variables for now. The rest will be done RSN.

Revision 1.125 / (download) - annotate - [select for diffs], Mon Jan 20 23:15:34 2003 UTC (21 years, 2 months ago) by kristerw
Branch: MAIN
Changes since 1.124: +1 -7 lines
Diff to previous 1.124 (colored) to selected 1.90 (colored)

BOOTSTRAP_EGCS is not used any longer. Remove it.

Revision 1.124 / (download) - annotate - [select for diffs], Thu Jan 2 20:12:15 2003 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.123: +12 -2 lines
Diff to previous 1.123 (colored) to selected 1.90 (colored)

Correct comment on where defaults are set for DEFAULT_SERIAL_DEVICE, and
add USE_I586 and USE_OPENLDAP (used by gnupg, perhaps others?).

Revision 1.123 / (download) - annotate - [select for diffs], Thu Jan 2 05:55:11 2003 UTC (21 years, 3 months ago) by hubertf
Branch: MAIN
Changes since 1.122: +21 -1 lines
Diff to previous 1.122 (colored) to selected 1.90 (colored)

Add a few switches to allow changing compile-time options:
ATERM_USE_KANJI, ATERM_USE_BIG5, ATERM_USE_XTERM_SCROLL, ATERM_USE_GREEK.

Patch contributed by Jon Olsson <jon@joshua.haninge.kth.se> in PR 19382.

Revision 1.122 / (download) - annotate - [select for diffs], Sat Dec 28 17:14:10 2002 UTC (21 years, 3 months ago) by kristerw
Branch: MAIN
Changes since 1.121: +2 -2 lines
Diff to previous 1.121 (colored) to selected 1.90 (colored)

Note that USE_MMX is used by snes9x too.

Revision 1.121 / (download) - annotate - [select for diffs], Thu Dec 26 05:02:36 2002 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.120: +3 -2 lines
Diff to previous 1.120 (colored) to selected 1.90 (colored)

Update comment for USE_MMX to reflect changes.

Revision 1.120 / (download) - annotate - [select for diffs], Thu Dec 26 04:29:21 2002 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.119: +6 -1 lines
Diff to previous 1.119 (colored) to selected 1.90 (colored)

Add USE_MMX option.

Revision 1.119 / (download) - annotate - [select for diffs], Wed Dec 25 09:21:42 2002 UTC (21 years, 3 months ago) by grant
Branch: MAIN
Changes since 1.118: +6 -1 lines
Diff to previous 1.118 (colored) to selected 1.90 (colored)

Add optional Xft support to Mozilla and Phoenix, to enable various
font features including anti-aliasing.

The new variable MOZILLA_USE_XFT defaults to NO.

Bump PKGREVISIONs.

From Eric Gillespie in PR pkg/19433.

Revision 1.118 / (download) - annotate - [select for diffs], Tue Dec 24 09:08:47 2002 UTC (21 years, 3 months ago) by agc
Branch: MAIN
Changes since 1.117: +2 -2 lines
Diff to previous 1.117 (colored) to selected 1.90 (colored)

Comments begin with the '#' character in Makefiles, not '$'

Revision 1.117 / (download) - annotate - [select for diffs], Mon Dec 23 14:10:00 2002 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.116: +13 -13 lines
Diff to previous 1.116 (colored) to selected 1.90 (colored)

Update comments for MOTIF* variables.

Revision 1.116 / (download) - annotate - [select for diffs], Mon Dec 23 00:05:32 2002 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.115: +11 -1 lines
Diff to previous 1.115 (colored) to selected 1.90 (colored)

Add a new variable MPLAYER_ENABLE_RUNTIME_CPU_DETECTION that governs
the runtime CPU checks; it defaults to YES, which makes the binary package
usable on more machines; setting it to NO might make mplayer a bit faster.
Suggested by veego.

Revision 1.115 / (download) - annotate - [select for diffs], Sun Dec 22 20:05:34 2002 UTC (21 years, 3 months ago) by atatat
Branch: MAIN
Changes since 1.114: +9 -1 lines
Diff to previous 1.114 (colored) to selected 1.90 (colored)

Add the LSOF_LESS_SECURE_SOCKETS for the lsof pkg.

Revision 1.114 / (download) - annotate - [select for diffs], Sun Dec 22 17:16:23 2002 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.113: +2 -2 lines
Diff to previous 1.113 (colored) to selected 1.90 (colored)

"Possible:" instead of "Possible,", noted by Jeremy C. Reed.

Revision 1.113 / (download) - annotate - [select for diffs], Sun Dec 22 01:23:50 2002 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.112: +6 -1 lines
Diff to previous 1.112 (colored) to selected 1.90 (colored)

Add GNU_PROGRAM_PREFIX, defaulting to "g". See PR 18886 for details.

Revision 1.112 / (download) - annotate - [select for diffs], Sat Dec 7 21:23:25 2002 UTC (21 years, 3 months ago) by cjep
Branch: MAIN
Changes since 1.111: +6 -1 lines
Diff to previous 1.111 (colored) to selected 1.90 (colored)

Add an entry for WDM_MANAGERS.

Revision 1.111 / (download) - annotate - [select for diffs], Fri Dec 6 14:25:07 2002 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.110: +1 -6 lines
Diff to previous 1.110 (colored) to selected 1.90 (colored)

Remove now unused MPLAYER_FONT variable.

Revision 1.110 / (download) - annotate - [select for diffs], Thu Dec 5 21:52:33 2002 UTC (21 years, 3 months ago) by jmmv
Branch: MAIN
Changes since 1.109: +6 -1 lines
Diff to previous 1.109 (colored) to selected 1.90 (colored)

Add TKPASMAN_USE_SSL variable, used by the new package security/tkpasman.

Revision 1.109 / (download) - annotate - [select for diffs], Tue Nov 26 10:27:06 2002 UTC (21 years, 4 months ago) by salo
Branch: MAIN
Changes since 1.108: +16 -7 lines
Diff to previous 1.108 (colored) to selected 1.90 (colored)

Add note about IMAKE on Solaris with native compilers.
Move SAWFISH_THEMES to proper location.

Revision 1.108 / (download) - annotate - [select for diffs], Tue Nov 26 07:20:21 2002 UTC (21 years, 4 months ago) by martti
Branch: MAIN
Changes since 1.107: +6 -1 lines
Diff to previous 1.107 (colored) to selected 1.90 (colored)

Added POSTFIX_USE_LDAP

Revision 1.107 / (download) - annotate - [select for diffs], Sun Nov 17 08:58:49 2002 UTC (21 years, 4 months ago) by salo
Branch: MAIN
Changes since 1.106: +6 -1 lines
Diff to previous 1.106 (colored) to selected 1.90 (colored)

Introduce new framework which unifies registering packages providing login
shells to /etc/shells.

This feature can be disabled by setting PKG_REGISTER_SHELLS to NO in
/etc/mk.conf.

An excerpt from Packages.txt, section 10.28:

 10.28 Packages providing login shells
 =====================================

If the purpose of the package is to provide a login shell, the variable
PKG_SHELL should contain the full pathname of the shell executable installed
by this package. The package Makefile also must include
"../../mk/bsd.pkg.install.mk" prior to the inclusion of bsd.pkg.mk to use the
automatically generated INSTALL/DEINSTALL scripts.

An example taken from shells/zsh:

        PKG_SHELL=      ${PREFIX}/bin/zsh
        .include "../../mk/bsd.pkg.install.mk"

The shell is registered into /etc/shells file automatically in the
post-install target by the INSTALL script generated by bsd.pkg.install.mk and
removed in the deinstall target by the DEINSTALL script.

Revision 1.106 / (download) - annotate - [select for diffs], Sat Nov 16 05:26:28 2002 UTC (21 years, 4 months ago) by uebayasi
Branch: MAIN
Changes since 1.105: +47 -1 lines
Diff to previous 1.105 (colored) to selected 1.90 (colored)

Defaults for w3m.

Revision 1.105 / (download) - annotate - [select for diffs], Thu Nov 14 09:44:34 2002 UTC (21 years, 4 months ago) by jlam
Branch: MAIN
Changes since 1.104: +3 -3 lines
Diff to previous 1.104 (colored) to selected 1.90 (colored)

Comment out the X11BASE setting, which is set in bsd.prefs.mk conditionally
based on the value of OPSYS.  This was breaking pkgsrc on Solaris.

Revision 1.104 / (download) - annotate - [select for diffs], Sun Nov 10 18:20:44 2002 UTC (21 years, 4 months ago) by hubertf
Branch: MAIN
Changes since 1.103: +2 -2 lines
Diff to previous 1.103 (colored) to selected 1.90 (colored)

rename BINPKG_SITE to BINPKG_SITES
Adresses PR pkg/19004 by tv@pobox.com

Revision 1.103 / (download) - annotate - [select for diffs], Sun Nov 10 12:17:31 2002 UTC (21 years, 4 months ago) by grant
Branch: MAIN
Changes since 1.102: +2 -1 lines
Diff to previous 1.102 (colored) to selected 1.90 (colored)

add MASTER_SITE_MOZILLA for Australia.

Revision 1.102 / (download) - annotate - [select for diffs], Thu Nov 7 04:22:29 2002 UTC (21 years, 4 months ago) by dillo
Branch: MAIN
Changes since 1.101: +6 -1 lines
Diff to previous 1.101 (colored) to selected 1.90 (colored)

Add a test target to bsd.pkg.mk:

  It runs pre-test, do-test, and post-test.  The default pre-test and
post-test targets are empty; the default do-test target runs
TEST_TARGET (in each TEST_DIRS (defaults to BUILD_DIRS)) if it is set
and does nothing otherwise.  Thus the test target defaults to doing
nothing.

  The usual way to use this is to set TEST_TARGET to the target to run
(e.g. TEST_TARGET=check for GNU packages).

  If PKGSRC_RUN_TEST is set to yes (in mk.conf, defaults to no),
the test target is run before install.

(approved by agc)

Revision 1.101 / (download) - annotate - [select for diffs], Mon Oct 21 01:18:55 2002 UTC (21 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.100: +1 -6 lines
Diff to previous 1.100 (colored) to selected 1.90 (colored)

USE_GLX has been obsoleted a long time ago -- remove it here too.

Revision 1.100 / (download) - annotate - [select for diffs], Sun Oct 20 23:12:50 2002 UTC (21 years, 5 months ago) by jlam
Branch: MAIN
Changes since 1.99: +7 -1 lines
Diff to previous 1.99 (colored) to selected 1.90 (colored)

Document RPM_DB_PREFIX:

# Used in the rpm package to note the prefix of the path to the RPM
# databases.  The RPM databases are stored in ${RPM_DB_PREFIX}/lib/rpm.
# Possible: any valid location, e.g. ${LOCALBASE}
# Default: /var/pkg

Revision 1.99 / (download) - annotate - [select for diffs], Sun Oct 20 19:52:29 2002 UTC (21 years, 5 months ago) by jlam
Branch: MAIN
Changes since 1.98: +1 -6 lines
Diff to previous 1.98 (colored) to selected 1.90 (colored)

SAMBA_WITH_MSDFS is no longer needed...samba always builds with MSDFS
support now.

Revision 1.98 / (download) - annotate - [select for diffs], Sun Oct 20 16:45:04 2002 UTC (21 years, 5 months ago) by seb
Branch: MAIN
Changes since 1.97: +1 -7 lines
Diff to previous 1.97 (colored) to selected 1.90 (colored)

Gmake's configure does not support anymore --disable-nsec-timestamps.
So remove it and associated variable.

Revision 1.97 / (download) - annotate - [select for diffs], Sun Oct 13 23:13:50 2002 UTC (21 years, 5 months ago) by kim
Branch: MAIN
Changes since 1.96: +6 -1 lines
Diff to previous 1.96 (colored) to selected 1.90 (colored)

Add support for enabling MSDFS in Samba.

Revision 1.96 / (download) - annotate - [select for diffs], Sun Oct 13 00:36:20 2002 UTC (21 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.95: +23 -1 lines
Diff to previous 1.95 (colored) to selected 1.90 (colored)

Document some xlockmore options.
Patch from Lubomir Sedlacik in PR 18635.

Revision 1.95 / (download) - annotate - [select for diffs], Fri Oct 11 20:52:00 2002 UTC (21 years, 5 months ago) by jschauma
Branch: MAIN
Changes since 1.94: +1 -6 lines
Diff to previous 1.94 (colored) to selected 1.90 (colored)

Remove NS_INST variable, obsoleted by last changes to www/netscape7

Revision 1.94 / (download) - annotate - [select for diffs], Mon Oct 7 17:09:11 2002 UTC (21 years, 5 months ago) by jschauma
Branch: MAIN
Changes since 1.93: +7 -1 lines
Diff to previous 1.93 (colored) to selected 1.90 (colored)

Document (commented) SAWFISH_THEMES variable, specifying the DISTFILES for
wm/sawfish-themes (default: about 180 themes available on themes.freshmeat.net)

Revision 1.93 / (download) - annotate - [select for diffs], Mon Oct 7 14:55:08 2002 UTC (21 years, 5 months ago) by hubertf
Branch: MAIN
Changes since 1.92: +7 -1 lines
Diff to previous 1.92 (colored) to selected 1.90 (colored)

Add switch GIMP_WITH_HELPBROWSER to build gimp with help browser.
Disables to "no", which results in no gnome-libs being needed.

Patch contributed by Stefan Krüger <skrueger@europe.com> in private mail,
with some changes from me.

Revision 1.92 / (download) - annotate - [select for diffs], Thu Oct 3 20:30:21 2002 UTC (21 years, 5 months ago) by jlam
Branch: MAIN
Changes since 1.91: +8 -1 lines
Diff to previous 1.91 (colored) to selected 1.90 (colored)

Created a new variable USE_OSS that is used to enable OSS audio support in
preference to or in place of Sun audio support in various packages.  People
using audio/oss should set USE_OSS in their /etc/mk.conf when building
packages.

Revision 1.91 / (download) - annotate - [select for diffs], Tue Oct 1 13:35:12 2002 UTC (21 years, 6 months ago) by jschauma
Branch: MAIN
Changes since 1.90: +6 -1 lines
Diff to previous 1.90 (colored)

Document NS_INST variable, determining if netscape7 uses the complete or
the recommended (default) install, as pointed out by wiz.

Revision 1.90 / (download) - annotate - [selected], Mon Sep 30 13:55:54 2002 UTC (21 years, 6 months ago) by jschauma
Branch: MAIN
Changes since 1.89: +9 -1 lines
Diff to previous 1.89 (colored)

Add PKG_LANG variable, defaulting to english.
Currently only used by www/netscape7 but this can potentially be used by
many packages to help localize the installation.  Ok'd by wiz.

Revision 1.89 / (download) - annotate - [select for diffs], Mon Sep 23 13:37:21 2002 UTC (21 years, 6 months ago) by markd
Branch: MAIN
Changes since 1.88: +15 -1 lines
Diff to previous 1.88 (colored) to selected 1.90 (colored)

Add mimedefang defaults

Revision 1.88 / (download) - annotate - [select for diffs], Mon Sep 23 08:45:40 2002 UTC (21 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.87: +5 -5 lines
Diff to previous 1.87 (colored) to selected 1.90 (colored)

* buildlink1 -> buildlink2
* Replace ELK_USE_{X11,MOTIF} with ELK_GUI, which is either "none" or is
  some combination of "xaw" and/or "motif".
* Reenable Motif -- it seems to build properly with OpenMotif-2.0.x.
* Modernize this package a bit and clean up how linker flags are passed to
  the build process by using the new variables available.

Revision 1.87 / (download) - annotate - [select for diffs], Wed Sep 18 19:51:53 2002 UTC (21 years, 6 months ago) by tron
Branch: MAIN
Changes since 1.86: +6 -1 lines
Diff to previous 1.86 (colored) to selected 1.90 (colored)

Add secure HTTP support to the "wget" package. It is turned on by default
and can be turned of by "WGET_USE_SSL=NO".

Revision 1.86 / (download) - annotate - [select for diffs], Sun Sep 1 04:59:05 2002 UTC (21 years, 7 months ago) by schmonz
Branch: MAIN
Changes since 1.85: +21 -1 lines
Diff to previous 1.85 (colored) to selected 1.90 (colored)

Move default definitions of P4USER, P4GROUP, P4ROOT, and P4PORT here.

Revision 1.85 / (download) - annotate - [select for diffs], Sat Aug 31 19:51:17 2002 UTC (21 years, 7 months ago) by fredb
Branch: MAIN
Changes since 1.84: +4 -1 lines
Diff to previous 1.84 (colored) to selected 1.90 (colored)

Add TRPlayer license, in support of soon-to-be-imported TRPlayer package.

Revision 1.84 / (download) - annotate - [select for diffs], Sat Aug 31 10:08:59 2002 UTC (21 years, 7 months ago) by grant
Branch: MAIN
Changes since 1.83: +27 -1 lines
Diff to previous 1.83 (colored) to selected 1.90 (colored)

Add variables for openssh privilege separation to bsd.pkg.defaults.mk:

	OPENSSH_USER
	OPENSSH_UID
	OPENSSH_GROUP
	OPENSSH_GID
	OPENSSH_CHROOT

Use these to automatically create user/group if they do not already
exist. Assists platforms which do not have an 'sshd' user by default,
while adding flexibility for NetBSD systems.

Checked by Stoned Elipot <seb@netbsd.org>.

Revision 1.83 / (download) - annotate - [select for diffs], Mon Aug 26 06:42:10 2002 UTC (21 years, 7 months ago) by grant
Branch: MAIN
Changes since 1.82: +1 -6 lines
Diff to previous 1.82 (colored) to selected 1.90 (colored)

deprecate SQUID_SYSCONFDIR in favour of PKG_SYSCONFDIR.squid

Revision 1.59.2.3 / (download) - annotate - [select for diffs], Wed Aug 21 22:01:32 2002 UTC (21 years, 7 months ago) by jlam
Branch: buildlink2
Changes since 1.59.2.2: +0 -0 lines
Diff to previous 1.59.2.2 (colored) next main 1.60 (colored) to selected 1.90 (colored)

Merge conflicts.

Revision 1.59.2.2 / (download) - annotate - [select for diffs], Wed Aug 21 05:19:40 2002 UTC (21 years, 7 months ago) by jlam
Branch: buildlink2
Changes since 1.59.2.1: +95 -17 lines
Diff to previous 1.59.2.1 (colored) to selected 1.90 (colored)

Merge pkgsrc/mk from pkgsrc-current into the buildlink2 branch.

Revision 1.81.4.1 / (download) - annotate - [select for diffs], Tue Aug 20 12:49:42 2002 UTC (21 years, 7 months ago) by agc
Branch: netbsd-1-6
Changes since 1.81: +7 -1 lines
Diff to previous 1.81 (colored) next main 1.82 (colored) to selected 1.90 (colored)

Pullup version 1.30 of devel/gmake/Makefile, and version 1.82 of
mk/bsd.pkg.defaults.mk onto the pkgsrc 1.6 branch.

Requested by Stoned Elipot.

(This is a no-op on NetBSD, BTW).

> From: Stoned Elipot <seb@netbsd.org>
> Date: Mon, 19 Aug 2002 21:39:17 +0300 (EEST)
>
> Module Name:    pkgsrc
> Committed By:   seb
> Date:           Mon Aug 19 18:39:16 UTC 2002
>
> Modified Files:
>         pkgsrc/devel/gmake: Makefile
>         pkgsrc/mk: bsd.pkg.defaults.mk
>
> Log Message:
> Now by default the support of micro- and nano-second timestamp values provided
> by stat(2) is disabled: it causes grief even for package building.
>
> This is adjustable by the GMAKE_NSEC_TIMESTAMPS variable.
>
> Bump PKGREVISION.

Revision 1.82 / (download) - annotate - [select for diffs], Mon Aug 19 18:39:14 2002 UTC (21 years, 7 months ago) by seb
Branch: MAIN
CVS Tags: buildlink2-base
Changes since 1.81: +7 -1 lines
Diff to previous 1.81 (colored) to selected 1.90 (colored)

Now by default the support of micro- and nano-second timestamp values provided
by stat(2) is disabled: it causes grief even for package building.

This is adjustable by the GMAKE_NSEC_TIMESTAMPS variable.

Bump PKGREVISION.

Revision 1.81 / (download) - annotate - [select for diffs], Thu Aug 15 00:34:04 2002 UTC (21 years, 7 months ago) by fredb
Branch: MAIN
CVS Tags: netbsd-1-6-RELEASE-base
Branch point for: netbsd-1-6
Changes since 1.80: +9 -1 lines
Diff to previous 1.80 (colored) to selected 1.90 (colored)

Document `IMAP_UW_NO_SSL'.

Revision 1.80 / (download) - annotate - [select for diffs], Mon Aug 12 12:15:12 2002 UTC (21 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.79: +6 -1 lines
Diff to previous 1.79 (colored) to selected 1.90 (colored)

Add the default for USERPPP_GROUP for the userppp package

Revision 1.79 / (download) - annotate - [select for diffs], Mon Aug 12 09:47:34 2002 UTC (21 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.78: +11 -1 lines
Diff to previous 1.78 (colored) to selected 1.90 (colored)

Specify defaults for the Free wnn user and group.

Revision 1.78 / (download) - annotate - [select for diffs], Wed Aug 7 12:46:49 2002 UTC (21 years, 7 months ago) by veego
Branch: MAIN
Changes since 1.77: +11 -4 lines
Diff to previous 1.77 (colored) to selected 1.90 (colored)

Prepare for the mplayer 0.90pre6 aka 0.90rc6 update:

- Change the mplayer default font size from 18 to 14
- Add MPLAYER_USE_REALMEDIA, defaulting to NO
  Used by mplayer to enable realmedia support by using the realplayer
  libraries. Note that this only works on i386 and also adds a
  dependency for the linux emulation to this package.

Revision 1.77 / (download) - annotate - [select for diffs], Tue Jul 30 18:42:14 2002 UTC (21 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.76: +20 -12 lines
Diff to previous 1.76 (colored) to selected 1.90 (colored)

Add APACHE_USER and APACHE_GROUP variables, remove APACHE_SUEXEC_USER.

Revision 1.76 / (download) - annotate - [select for diffs], Tue Jul 30 00:09:23 2002 UTC (21 years, 8 months ago) by grant
Branch: MAIN
Changes since 1.75: +1 -8 lines
Diff to previous 1.75 (colored) to selected 1.90 (colored)

back out OBJOSMACHINE stuff as it is superfluous. pointed out by
jlam.

Revision 1.75 / (download) - annotate - [select for diffs], Mon Jul 29 07:25:38 2002 UTC (21 years, 8 months ago) by grant
Branch: MAIN
Changes since 1.74: +8 -1 lines
Diff to previous 1.74 (colored) to selected 1.90 (colored)

add OBJOSMACHINE, to use OS version and arch specific work
directories, eg.

  work.NetBSD-1.5-i386
  work.SunOS-5.7-sparc

Revision 1.74 / (download) - annotate - [select for diffs], Tue Jul 23 19:10:27 2002 UTC (21 years, 8 months ago) by cjep
Branch: MAIN
Changes since 1.73: +6 -1 lines
Diff to previous 1.73 (colored) to selected 1.90 (colored)

Add a variable SU_CMD_PATH_APPEND containing a colon separated list of
directories. When ${SU_CMD} is used, we add this list to the end of the
PATH environment variable.

This fixes PR#17532 from Hauke Fath.

Revision 1.73 / (download) - annotate - [select for diffs], Mon Jul 22 17:20:06 2002 UTC (21 years, 8 months ago) by cjep
Branch: MAIN
Changes since 1.72: +2 -2 lines
Diff to previous 1.72 (colored) to selected 1.90 (colored)

Documentation nit: SU_CMD does not default to ${SU} root -c.

Revision 1.71.2.1 / (download) - annotate - [select for diffs], Mon Jul 22 16:25:50 2002 UTC (21 years, 8 months ago) by agc
Branch: pkgviews
Changes since 1.71: +6 -1 lines
Diff to previous 1.71 (colored) next main 1.72 (colored) to selected 1.90 (colored)

Add basic support for package views.

Revision 1.72 / (download) - annotate - [select for diffs], Mon Jul 22 11:51:35 2002 UTC (21 years, 8 months ago) by martti
Branch: MAIN
Changes since 1.71: +6 -1 lines
Diff to previous 1.71 (colored) to selected 1.90 (colored)

Added POSTFIX_USE_TLS=YES

Revision 1.71 / (download) - annotate - [select for diffs], Sat Jul 20 12:42:35 2002 UTC (21 years, 8 months ago) by tron
Branch: MAIN
Branch point for: pkgviews
Changes since 1.70: +14 -1 lines
Diff to previous 1.70 (colored) to selected 1.90 (colored)

Add optional netboot support to "grub" package as suggested by
Julio Merino in PR pkg/17354.

Revision 1.70 / (download) - annotate - [select for diffs], Mon Jul 15 16:24:01 2002 UTC (21 years, 8 months ago) by schmonz
Branch: MAIN
Changes since 1.69: +2 -2 lines
Diff to previous 1.69 (colored) to selected 1.90 (colored)

Provide per-${OPSYS} defaults for how to run a command as root.

Darwin ships with a disabled root account and a working "sudo".

Revision 1.69 / (download) - annotate - [select for diffs], Sun Jun 30 19:07:27 2002 UTC (21 years, 9 months ago) by dmcmahill
Branch: MAIN
Changes since 1.68: +7 -1 lines
Diff to previous 1.68 (colored) to selected 1.90 (colored)

add entry for NS_USE_SUNOS.  If defined, the netscape and communicator
packages will use the old SunOS-4.1 binaries.  Otherwise, default to
using the recently enabled Solaris-2.5.1 binaries which include more
modern releases.

Revision 1.59.2.1 / (download) - annotate - [select for diffs], Sun Jun 23 18:54:37 2002 UTC (21 years, 9 months ago) by jlam
Branch: buildlink2
Changes since 1.59: +51 -6 lines
Diff to previous 1.59 (colored) to selected 1.90 (colored)

Merge from pkgsrc-current to buildlink2 branch.

Revision 1.68 / (download) - annotate - [select for diffs], Sun Jun 23 08:46:22 2002 UTC (21 years, 9 months ago) by kent
Branch: MAIN
Changes since 1.67: +6 -1 lines
Diff to previous 1.67 (colored) to selected 1.90 (colored)

Add MPG123_ARM_FIXED64.

Revision 1.67 / (download) - annotate - [select for diffs], Sun Jun 23 02:20:08 2002 UTC (21 years, 9 months ago) by kei
Branch: MAIN
Changes since 1.66: +2 -1 lines
Diff to previous 1.66 (colored) to selected 1.90 (colored)

introduce MASTER_SITE_MOZILLA.

Revision 1.66 / (download) - annotate - [select for diffs], Sat Jun 15 15:26:15 2002 UTC (21 years, 9 months ago) by fredb
Branch: MAIN
Changes since 1.65: +12 -6 lines
Diff to previous 1.65 (colored) to selected 1.90 (colored)

Actually set the defaults for MUTT_USE_SLANG and MUTT_USE_SSL, like
it says in the comments; add a section plus default for MUTT_USE_NCURSES,
and alphabetize.

Revision 1.65 / (download) - annotate - [select for diffs], Mon Jun 10 12:23:44 2002 UTC (21 years, 9 months ago) by sakamoto
Branch: MAIN
Changes since 1.64: +6 -1 lines
Diff to previous 1.64 (colored) to selected 1.90 (colored)

add IMDICTDIR for input method's dictionary installation.
default is /var/dict.

Revision 1.64 / (download) - annotate - [select for diffs], Sat May 25 07:40:36 2002 UTC (21 years, 10 months ago) by veego
Branch: MAIN
Changes since 1.63: +3 -3 lines
Diff to previous 1.63 (colored) to selected 1.90 (colored)

Ups, no need to use "'s for the MPLAYER_FONT.

Revision 1.63 / (download) - annotate - [select for diffs], Sat May 25 07:34:43 2002 UTC (21 years, 10 months ago) by veego
Branch: MAIN
Changes since 1.62: +6 -1 lines
Diff to previous 1.62 (colored) to selected 1.90 (colored)

Add an entry for MPLAYER_FONT, which will be used by the mplayer-share
package.

Revision 1.62 / (download) - annotate - [select for diffs], Mon May 20 14:08:49 2002 UTC (21 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.61: +7 -1 lines
Diff to previous 1.61 (colored) to selected 1.90 (colored)

Add section for POP_WITH_DRAC (for teapop, so far).

Revision 1.61 / (download) - annotate - [select for diffs], Sun May 12 16:54:58 2002 UTC (21 years, 10 months ago) by hubertf
Branch: MAIN
Changes since 1.60: +17 -1 lines
Diff to previous 1.60 (colored) to selected 1.90 (colored)

Add solid-pop3d-0.15: Flexible POP3 server

The Solid POP3 Server is an implementation of a Post Office Protocol
version 3 server that has flexibility as its main goal. The server is
easily configurable and has support for few features such as APOP
authentication scheme, virtual hosting, maildir and mailbox handling,
bulletins and expiration of messages. Each user can specify position and
type of his maildrop.

Contribyted by Piotr Stolc <socrtp@soclab.eu.org> in PR 16682

Revision 1.60 / (download) - annotate - [select for diffs], Wed May 8 11:05:39 2002 UTC (21 years, 10 months ago) by markd
Branch: MAIN
Changes since 1.59: +7 -1 lines
Diff to previous 1.59 (colored) to selected 1.90 (colored)

Added LATEX2HTML_ICONPATH

Revision 1.59 / (download) - annotate - [select for diffs], Tue May 7 17:52:18 2002 UTC (21 years, 10 months ago) by agc
Branch: MAIN
Branch point for: buildlink2
Changes since 1.58: +1 -18 lines
Diff to previous 1.58 (colored) to selected 1.90 (colored)

Remove some definitions which were committed before their time.

Revision 1.58 / (download) - annotate - [select for diffs], Tue May 7 17:50:38 2002 UTC (21 years, 10 months ago) by agc
Branch: MAIN
Changes since 1.57: +18 -1 lines
Diff to previous 1.57 (colored) to selected 1.90 (colored)

Sourceforge seem to have implemented a new policy, whereby an http
request to the prdownloads.sourceforge.net site, which used to return
the distfile, now returns 8KB (roughly) of html, including
advertisements, and a link to the real distfile.

Delete prdownloads from the MASTER_SITE_SOURCEFORGE list (sadly,
because it seemed to be the quickest way to download files from
sourceforge).

Revision 1.57 / (download) - annotate - [select for diffs], Sun May 5 17:52:24 2002 UTC (21 years, 10 months ago) by kei
Branch: MAIN
Changes since 1.56: +2 -1 lines
Diff to previous 1.56 (colored) to selected 1.90 (colored)

add (commented) GNOME mirror sites available in Japan.

Revision 1.56 / (download) - annotate - [select for diffs], Sat May 4 01:22:03 2002 UTC (21 years, 11 months ago) by jtb
Branch: MAIN
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored) to selected 1.90 (colored)

Possible values for NMH_PAGER should be "any pager", not "any editor".

Revision 1.55 / (download) - annotate - [select for diffs], Mon Apr 29 04:17:04 2002 UTC (21 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.54: +9 -9 lines
Diff to previous 1.54 (colored) to selected 1.90 (colored)

use www.planetmirror.com.au instead of www.planetmirror.com, so that
MASTER_SORT* does the right thing.

Revision 1.54 / (download) - annotate - [select for diffs], Fri Apr 26 12:56:27 2002 UTC (21 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.53: +6 -1 lines
Diff to previous 1.53 (colored) to selected 1.90 (colored)

add example PKGVULNDIR entry

Revision 1.53 / (download) - annotate - [select for diffs], Tue Apr 23 06:16:31 2002 UTC (21 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.52: +15 -12 lines
Diff to previous 1.52 (colored) to selected 1.90 (colored)

Update examples for Australia to mainly use ftp://www.planetmirror.com/

Revision 1.52 / (download) - annotate - [select for diffs], Mon Apr 15 08:31:14 2002 UTC (21 years, 11 months ago) by rh
Branch: MAIN
Changes since 1.51: +1 -6 lines
Diff to previous 1.51 (colored) to selected 1.90 (colored)

Remove SNORT_USE_PGSQL option.  This will be split out into a separate
package.  For that purpose, move most of Makefile into a new
Makefile.common.

Revision 1.51 / (download) - annotate - [select for diffs], Sun Apr 14 09:49:46 2002 UTC (21 years, 11 months ago) by rh
Branch: MAIN
Changes since 1.50: +6 -1 lines
Diff to previous 1.50 (colored) to selected 1.90 (colored)

Add a SNORT_USE_PGSQL option to compile in PostgreSQL support (and add
the appropriate dependency).  Patch provided by ww@GROOVY.NET

Revision 1.50 / (download) - annotate - [select for diffs], Fri Apr 12 01:50:34 2002 UTC (21 years, 11 months ago) by hubertf
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH003
Changes since 1.49: +6 -1 lines
Diff to previous 1.49 (colored) to selected 1.90 (colored)

Allow compiling in perl support for scripts.

Patch submitted by dawszy@ailuj.openbsd.org.pl in private mail.

Revision 1.49 / (download) - annotate - [select for diffs], Thu Apr 4 13:58:25 2002 UTC (21 years, 11 months ago) by seb
Branch: MAIN
Changes since 1.48: +7 -1 lines
Diff to previous 1.48 (colored) to selected 1.90 (colored)

Update to version 3.1.0 (lots of new features and bug fixes).

Enable this package for all platforms.

Added GAWK_ENABLE_PORTALS to mk/bsd.pkg.defaults.mk to enable/disable gawk
handling file names that start with `/p/' as a 4.4 BSD type portal file.

Changes from 3.0.4 to 3.0.5:
- bug fix release only.

Changes from 3.0.5 to 3.0.6:
- bug fix release only.

Changes from 3.0.6 to 3.1.0:
- A new PROCINFO array provides info about the process. The non-I/O /dev/xxx
  files are now obsolete, and their use always generates a warning.
- A new `mktime' builtin function was added for creating time stamps. The
  `mktime' function written in awk was removed from the user's guide.
- New `--gen-po' option creates GNU gettext .po files for strings marked
  with a leading underscore.
- Gawk now completely interprets special file names internally, ignoring the
  existence of real /dev/stdin, /dev/stdout files, etc.
- The mmap code was removed. It was a worthwhile experiment that just
  didn't work out.
- The BINMODE variable is new; on non-UNIX systems it affects how gawk
  opens files for text vs. binary.
- Gawk no longer supports `next file' as two words.
- On systems that support it, gawk now sets the `close on exec' flag on all
  files and pipes it opens. This makes sure that child processes run via
  system() or pipes have plenty of file descriptors available.
- If `--posix' is in effect, newlines are not allowed after ?:.
- Weird OFMT/CONVFMT formats no longer cause fatal errors.
- Diagnostics about array parameters now include the parameter's name,
  not just its number.
- It is now possible to open a two-way pipe via the `|&' operator.
  See the discussion in the manual about putting `sort' into such a pipeline,
  though.  (NOTE!  This is borrowed from ksh: it is not the same as
  the same operator in csh!)
- The close() function now takes an optional second string argument
  that allows closing one or the other end of the two-way pipe to
  a co-process.  This is needed to use `sort' in a co-process, see
  the doc.
- If TCP/IP is available, special file names beginning with `/inet'
  can be used with `|&' for IPC.
- With `--enable-portals' on the configure command line, gawk will also
  treat file names that start with `/p/' as a 4.4 BSD type portal file,
  i.e., a two-way pipe for `|&'.
- Unrecognized escapes, such as "\q" now always generate a warning.
- The LINT variable is new; it provides dynamic control over the --lint
  option.
- Lint warnings can be made fatal by using --lint=fatal or `LINT = "fatal"'.
  Use this if you're really serious about portable code.
- A number of lint warnings have been added.  Most notably, gawk will
  detect if a variable is used before assigned to.  Warnings for
  when a string that isn't a number gets converted to a number are
  in the code but disabled; they seem to be too picky in practice.
  Also, gawk will now warn about function parameter names that shadow
  global variable names.
- It is now possible to dynamically add builtin functions on systems
  that support dlopen. This facility is not (yet) as portable or well
  integrated as it might be.  *** WARNING *** THIS FEATURE WILL EVOLVE!
- Profiling has been added!  A separate version of gawk, named pgawk, is
  built and generates a run-time execution profile.  The --profile option
  can be used to change the default output file.   In regular gawk, this
  option pretty-prints the parse tree.
- Gawk has been internationalized, using GNU gettext.  Translations for
  future distributions are most welcome.
- New asort() function for sorting arrays.  See the doc for details.
- The match function takes an optional array third argument to hold
  the text matched by parenthesized sub-expressions.
- The bit op functions and octal and hex source code constants are on by
  default, no longer a configure-time option.  Recognition of non-decimal
  data is now enabled at runtime with --non-decimal-data command line option.
- Internationalization features available at the awk level: new TEXTDOMAIN
  variable and bindtextdomain() and dcgettext() functions. printf formats
  may contain the "%2$3.5d" kind of notation for use in translations.  See
  the texinfo manual for details.
- The return value from close() has been rationalized.  Most notably,
  closing something that wasn't open returns -1 but remains non-fatal.
- The array effeciency change from 3.0.5 was reverted; the semantics were
  not right.  Additionally, index values of previously stored elements
  can no longer change dynamically.
- The new option --dump-variables dumps a list of all global variables and
  their final types and values to a file you give, or to `awkvars.out'.
- Gawk now uses a recent version of random.c courtesy of the FreeBSD
  project.
- The gawk source code now uses ANSI C function definitions (new style),
  with ansi2knr to translate code for old compilers.
- `for (iggy in foo)' loops should be more robust now in the face of
   adding/deleting elements in the middle; they loop over just the elements
   that are present in the array when the loop starts.

Revision 1.48 / (download) - annotate - [select for diffs], Wed Apr 3 23:10:41 2002 UTC (22 years ago) by hubertf
Branch: MAIN
Changes since 1.47: +6 -1 lines
Diff to previous 1.47 (colored) to selected 1.90 (colored)

Allow teapop to use mysql, when TEAPOP_WITH_MYSQL is defined.
Bump pkg revision.

Contributed in private mail by Charlie Root <root@gornik.tgr.lubin.edu.pl>

Revision 1.47 / (download) - annotate - [select for diffs], Tue Mar 26 08:24:59 2002 UTC (22 years ago) by martti
Branch: MAIN
Changes since 1.46: +6 -1 lines
Diff to previous 1.46 (colored) to selected 1.90 (colored)

Added PURE_FTPD_USE_MYSQL

Revision 1.46 / (download) - annotate - [select for diffs], Mon Mar 25 08:04:04 2002 UTC (22 years ago) by martti
Branch: MAIN
Changes since 1.45: +6 -1 lines
Diff to previous 1.45 (colored) to selected 1.90 (colored)

Added VIM_EXTRA_OPTS

Revision 1.45 / (download) - annotate - [select for diffs], Fri Mar 22 09:01:14 2002 UTC (22 years ago) by martti
Branch: MAIN
Changes since 1.44: +6 -1 lines
Diff to previous 1.44 (colored) to selected 1.90 (colored)

Added POSTFIX_USE_MYSQL=YES

Revision 1.44 / (download) - annotate - [select for diffs], Mon Mar 18 17:11:04 2002 UTC (22 years ago) by fredb
Branch: MAIN
Changes since 1.43: +16 -9 lines
Diff to previous 1.43 (colored) to selected 1.90 (colored)

Add an option to disallow cleartext on the wire in "mail/imap-uw",
and while we're in here, prefix the CCLIENT_MBOX_FMT option with the
name of the package. Reviewed by hubertf.

Revision 1.43 / (download) - annotate - [select for diffs], Thu Mar 7 09:00:14 2002 UTC (22 years ago) by seb
Branch: MAIN
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored) to selected 1.90 (colored)

Whitespace fix.

Revision 1.42 / (download) - annotate - [select for diffs], Wed Mar 6 17:05:30 2002 UTC (22 years ago) by seb
Branch: MAIN
Changes since 1.41: +4 -1 lines
Diff to previous 1.41 (colored) to selected 1.90 (colored)

Mention ms-ttf-license in the list of ACCEPTABLE_LICENCES.
Add the license for the ms-ttf package.

Revision 1.41 / (download) - annotate - [select for diffs], Tue Mar 5 13:32:42 2002 UTC (22 years ago) by seb
Branch: MAIN
Changes since 1.40: +4 -1 lines
Diff to previous 1.40 (colored) to selected 1.90 (colored)

Mention graphviz-license in the list of ACCEPTABLE_LICENCES.
Add the licence for the graphviz package.

Revision 1.40 / (download) - annotate - [select for diffs], Tue Mar 5 12:57:38 2002 UTC (22 years ago) by seb
Branch: MAIN
Changes since 1.39: +46 -46 lines
Diff to previous 1.39 (colored) to selected 1.90 (colored)

Sort the ACCEPTABLE_LICENSES template entries.

Revision 1.39 / (download) - annotate - [select for diffs], Sun Mar 3 23:29:48 2002 UTC (22 years, 1 month ago) by hubertf
Branch: MAIN
Changes since 1.38: +6 -1 lines
Diff to previous 1.38 (colored) to selected 1.90 (colored)

Add SILC_CLIENT_WITH_PERL, for silc-client 0.8 and up

Revision 1.38 / (download) - annotate - [select for diffs], Sat Feb 16 01:29:05 2002 UTC (22 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored) to selected 1.90 (colored)

Don't mention 'Letterdj' as valid PAPERSIZE, pkg/15599.

Revision 1.37 / (download) - annotate - [select for diffs], Tue Feb 5 04:12:07 2002 UTC (22 years, 1 month ago) by jlam
Branch: MAIN
Changes since 1.36: +1 -6 lines
Diff to previous 1.36 (colored) to selected 1.90 (colored)

Obsolete SSH_CONF_DIR in favor of PKG_SYSCONFDIR.

Revision 1.36 / (download) - annotate - [select for diffs], Mon Feb 4 10:32:01 2002 UTC (22 years, 1 month ago) by martti
Branch: MAIN
Changes since 1.35: +6 -1 lines
Diff to previous 1.35 (colored) to selected 1.90 (colored)

Added SAMBA_USE_LDAP

Revision 1.35 / (download) - annotate - [select for diffs], Thu Jan 31 21:18:37 2002 UTC (22 years, 2 months ago) by jlam
Branch: MAIN
Changes since 1.34: +6 -6 lines
Diff to previous 1.34 (colored) to selected 1.90 (colored)

Deprecate POSTFIX_USE_SASL_AUTH in favor of more generic USE_SASL.

Revision 1.34 / (download) - annotate - [select for diffs], Mon Jan 21 17:31:02 2002 UTC (22 years, 2 months ago) by zuntum
Branch: MAIN
Changes since 1.33: +6 -1 lines
Diff to previous 1.33 (colored) to selected 1.90 (colored)

Add QMAILDIR variable that defaults to /var/qmail, may be set in /etc/mk.conf

Also substitute QMAILDIR in PLIST because more packages than just mail/qmail
need it.

Revision 1.33 / (download) - annotate - [select for diffs], Sat Jan 19 21:29:41 2002 UTC (22 years, 2 months ago) by agc
Branch: MAIN
Changes since 1.32: +19 -1 lines
Diff to previous 1.32 (colored) to selected 1.90 (colored)

Add coarse-grained locking to pkgsrc builds, by means of a beefed
up version of the bare-bones code in PR 7590, from David Maxwell.

The definition governing the type of locking used is PKGSRC_LOCKTYPE,
which can take any of the values "none", "sleep", and "once".  The
default is "none".  If "sleep" locking is used, and process A is
building a package, when process B attempts to build the same package,
process B will sleep for PKGSRC_SLEEPSECS seconds, and attempt to grab
the lock again.

Coarse-grained locking uses the OBJHOSTNAME definition to ensure that
the PID space is regular for shlock(1) to do its work.  The
pkgsrc/pkgtools/shlock package has been provided for environments
where shlock is not standard.

Revision 1.32 / (download) - annotate - [select for diffs], Fri Jan 11 14:41:42 2002 UTC (22 years, 2 months ago) by agc
Branch: MAIN
Changes since 1.31: +7 -1 lines
Diff to previous 1.31 (colored) to selected 1.90 (colored)

Add and document a new OBJHOSTNAME definition.

If set, the first component of the hostname (up to the first '.', if any),
will be appended to "work." to form the WRKDIR_BASENAME.

OBJHOSTNAME takes precedence over OBJMACHINE.

Revision 1.31 / (download) - annotate - [select for diffs], Wed Jan 9 23:13:11 2002 UTC (22 years, 2 months ago) by seb
Branch: MAIN
Changes since 1.30: +6 -1 lines
Diff to previous 1.30 (colored) to selected 1.90 (colored)

Add elk package variable used to determine if X11 module is enabled or not.

Revision 1.30 / (download) - annotate - [select for diffs], Tue Jan 1 18:21:27 2002 UTC (22 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.29: +1 -7 lines
Diff to previous 1.29 (colored) to selected 1.90 (colored)

NS_ENCRYPTION hasn't been user-decidable for over a year now -- remove option.

Revision 1.29 / (download) - annotate - [select for diffs], Wed Dec 26 21:20:26 2001 UTC (22 years, 3 months ago) by jlam
Branch: MAIN
Changes since 1.28: +8 -2 lines
Diff to previous 1.28 (colored) to selected 1.90 (colored)

(1) Create new variable "APACHE_SUEXEC_CONFIGURE_ARGS" that may contain
    --suexec-* configure options that are passed directly to the Apache
    configure script.  This may be used to tune the suEXEC configuration
    in more restrictive ways, e.g. --suexec-uidmin=1000.  This solution
    is more open-ended than the fix proposed in pkg/14973.  Also, we
    don't duplicate all of the options from the Apache configure script
    in pkgsrc bsd.pkg.defaults.mk.  This closes pkg/14973 by Eric
    Schnoebelen <eric@cirr.com>

(2) For namespace consistency, deprecate APACHE_USER in favor of
    APACHE_SUEXEC_USER.  Move APACHE_USER into bsd.pkg.obsolete.mk.

(3) Create the suEXEC user when the functionality is enabled in the server
    so that CGI scripts will work properly.  This closes pkg/14903 by
    Wojciech Puchar <wojtek@3miasto.net>

Revision 1.28 / (download) - annotate - [select for diffs], Fri Dec 21 03:59:15 2001 UTC (22 years, 3 months ago) by fredb
Branch: MAIN
Changes since 1.27: +3 -3 lines
Diff to previous 1.27 (colored) to selected 1.90 (colored)

By popular demand, change the default screen library for "lynx" to
curses. On NetBSD-1.5.*, the appearance in an xterm is nearly the same
as with libslang.

Revision 1.27 / (download) - annotate - [select for diffs], Tue Dec 18 20:22:59 2001 UTC (22 years, 3 months ago) by jlam
Branch: MAIN
Changes since 1.26: +6 -7 lines
Diff to previous 1.26 (colored) to selected 1.90 (colored)

Since print/cups conflicts with another popular print package,
print/lprng, we make a new variable USE_CUPS that is used by packages to
determine whether depend on print/cups and to compile in support for CUPS.
USE_CUPS may be either "YES" or undefined.  Deprecate SAMBA_WITH_CUPS as
its purpose is superseded by USE_CUPS.  Convert net/samba and net/samba20
to use USE_CUPS and make x11/kdelibs2 respect USE_CUPS.

Revision 1.26 / (download) - annotate - [select for diffs], Mon Dec 17 11:45:05 2001 UTC (22 years, 3 months ago) by bouyer
Branch: MAIN
Changes since 1.25: +9 -1 lines
Diff to previous 1.25 (colored) to selected 1.90 (colored)

Add an example of use of the french distfile mirrror.

Revision 1.25 / (download) - annotate - [select for diffs], Sat Dec 15 20:25:37 2001 UTC (22 years, 3 months ago) by agc
Branch: MAIN
Changes since 1.24: +3 -3 lines
Diff to previous 1.24 (colored) to selected 1.90 (colored)

Modify all references to PKGSRCDIR to _PKGSRCDIR, except in the external
references of the pkglint package.

_PKGSRCDIR is an internal definition in bsd.pkg.mk, and a few packages
which would like to refer to other packages in the build tree. It should
not be set by users, but neither should it stop a user from building a
package if it is defined, so make it obvious that this is the case.

Revision 1.24 / (download) - annotate - [select for diffs], Mon Dec 10 12:43:58 2001 UTC (22 years, 3 months ago) by martti
Branch: MAIN
Changes since 1.23: +6 -1 lines
Diff to previous 1.23 (colored) to selected 1.90 (colored)

Added SASL_USE_GSSAPI=YES

Revision 1.23 / (download) - annotate - [select for diffs], Thu Dec 6 09:50:12 2001 UTC (22 years, 3 months ago) by martti
Branch: MAIN
Changes since 1.22: +6 -1 lines
Diff to previous 1.22 (colored) to selected 1.90 (colored)

Added optional IPv6 support for Cyrus.

Revision 1.22 / (download) - annotate - [select for diffs], Mon Dec 3 06:20:22 2001 UTC (22 years, 4 months ago) by martti
Branch: MAIN
Changes since 1.21: +6 -1 lines
Diff to previous 1.21 (colored) to selected 1.90 (colored)

Added POSTFIX_USE_INET6

Revision 1.21 / (download) - annotate - [select for diffs], Mon Dec 3 04:51:08 2001 UTC (22 years, 4 months ago) by kent
Branch: MAIN
Changes since 1.20: +7 -2 lines
Diff to previous 1.20 (colored) to selected 1.90 (colored)

Add POSTFIX_USE_SASL_AUTH.
Rename POSTFIX_PCRE to POSTFIX_USE_PCRE.

Revision 1.20 / (download) - annotate - [select for diffs], Fri Nov 30 00:30:40 2001 UTC (22 years, 4 months ago) by wiz
Branch: MAIN
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored) to selected 1.90 (colored)

Update XCONTRIB path for .at.

Revision 1.19 / (download) - annotate - [select for diffs], Wed Nov 28 12:05:20 2001 UTC (22 years, 4 months ago) by jlam
Branch: MAIN
Changes since 1.18: +8 -2 lines
Diff to previous 1.18 (colored) to selected 1.90 (colored)

Fix problem where bsd.pkg.obsolete.mk wouldn't be found when "make" was
executed outside of a package directory.  Problem and fix noted by Stoned
Elipot in private email.

Revision 1.18 / (download) - annotate - [select for diffs], Tue Nov 27 02:07:53 2001 UTC (22 years, 4 months ago) by hubertf
Branch: MAIN
Changes since 1.17: +7 -2 lines
Diff to previous 1.17 (colored) to selected 1.90 (colored)

Add commented-out entry for GQMPEG_NO_RUSSIAN

Revision 1.17 / (download) - annotate - [select for diffs], Sun Nov 25 19:29:56 2001 UTC (22 years, 4 months ago) by jlam
Branch: MAIN
Changes since 1.16: +2 -22 lines
Diff to previous 1.16 (colored) to selected 1.90 (colored)

Deprecate APACHE_SYSCONFDIR, PHP_CONFDIR, VTUN_SYSCONFDIR by moving them
to bsd.pkg.obsolete.mk.

Revision 1.16 / (download) - annotate - [select for diffs], Fri Nov 23 16:09:24 2001 UTC (22 years, 4 months ago) by kim
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.90 (colored)

Change SQUID_SYSCONF_DIR to SQUID_SYSCONFDIR to match www/squid/Makefile

Revision 1.15 / (download) - annotate - [select for diffs], Fri Nov 23 10:23:45 2001 UTC (22 years, 4 months ago) by tron
Branch: MAIN
Changes since 1.14: +6 -1 lines
Diff to previous 1.14 (colored) to selected 1.90 (colored)

Add documentation of variable "SQUID_SYSCONFDIR".

Revision 1.14 / (download) - annotate - [select for diffs], Thu Nov 22 21:40:19 2001 UTC (22 years, 4 months ago) by tron
Branch: MAIN
Changes since 1.13: +7 -2 lines
Diff to previous 1.13 (colored) to selected 1.90 (colored)

Add a new option "MUTT_USE_SLANG" to use the "slang" library instead of
"curses" because the first deals with resize better, especially under
NetBSD 1.5/1.5.x. This change was suggested by Joe Abley in PR pkg/13630.

Revision 1.13 / (download) - annotate - [select for diffs], Mon Nov 12 23:04:26 2001 UTC (22 years, 4 months ago) by enami
Branch: MAIN
Changes since 1.12: +4 -4 lines
Diff to previous 1.12 (colored) to selected 1.90 (colored)

Set values only when not defined yet.

Revision 1.12 / (download) - annotate - [select for diffs], Thu Nov 8 12:47:13 2001 UTC (22 years, 4 months ago) by agc
Branch: MAIN
Changes since 1.11: +6 -7 lines
Diff to previous 1.11 (colored) to selected 1.90 (colored)

Set the default values of SU_CMD and PRE_ROOT_CMD in bsd.pkg.defaults.mk,
not bsd.pkg.mk, so that the user is more aware of them (there were placeholder
examples of both definitions in bsd.pkg.defaults.mk already).

Explain PRE_ROOT_CMD a bit more throroughly, and correct an example of
its use.

Make an alternative definition for SU_CMD sync with reality.

Revision 1.11 / (download) - annotate - [select for diffs], Fri Nov 2 01:24:06 2001 UTC (22 years, 5 months ago) by hubertf
Branch: MAIN
Changes since 1.10: +9 -1 lines
Diff to previous 1.10 (colored) to selected 1.90 (colored)

Add GQMPEG_NO_JAPANESE variable to allow keeping gqmpeg from interpreting
russian-language ID3 tags as japanese-language ones.

Patch submitted by Sergey Svishchev <svs@ropnet.ru> in PR 14426.

Revision 1.10 / (download) - annotate - [select for diffs], Fri Oct 26 16:18:46 2001 UTC (22 years, 5 months ago) by jwise
Branch: MAIN
Changes since 1.9: +4 -3 lines
Diff to previous 1.9 (colored) to selected 1.90 (colored)

Expand description of the ${PKG_JVM} selector to note that ${JAVA_HOME} is
set based on this choice if unset, and that blackdown-jdk13 is the default
on powerpc.

Revision 1.9 / (download) - annotate - [select for diffs], Fri Oct 26 16:08:53 2001 UTC (22 years, 5 months ago) by jwise
Branch: MAIN
Changes since 1.8: +4 -2 lines
Diff to previous 1.8 (colored) to selected 1.90 (colored)

Correct description of ${JAVA_HOME}.  ${JAVA_HOME} is used to select an
installed JVM to use to build java-based packages.

${JAVA_HOME} is not used to select where to install java based packages.  All
packages which install java .jar files should install them in
${PREFIX}/lib/java, so that they will be accessible to multiple installed
JVMs.

Revision 1.8 / (download) - annotate - [select for diffs], Thu Oct 25 18:12:53 2001 UTC (22 years, 5 months ago) by tron
Branch: MAIN
Changes since 1.7: +3 -3 lines
Diff to previous 1.7 (colored) to selected 1.90 (colored)

Sort "PATCH_SITES" using "MASTER_SORT" and "MASTER_SORT_REGEX", too.

Revision 1.7 / (download) - annotate - [select for diffs], Sun Oct 21 21:26:57 2001 UTC (22 years, 5 months ago) by seb
Branch: MAIN
Changes since 1.6: +132 -1 lines
Diff to previous 1.6 (colored) to selected 1.90 (colored)

Added support variables for chat/ircd-hybrid

Revision 1.6 / (download) - annotate - [select for diffs], Tue Oct 9 10:01:11 2001 UTC (22 years, 5 months ago) by agc
Branch: MAIN
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored) to selected 1.90 (colored)

Fix from Allen D.  Ball <ball@iprotium.com> in PR 14183 - allow the
value of X11BASE to be set in /etc/mk.conf by using the usual
X11BASE?= /usr/X11R6 construct when setting the defaults in
bsd.pkg.defaults.mk

Revision 1.5 / (download) - annotate - [select for diffs], Mon Oct 1 04:16:43 2001 UTC (22 years, 6 months ago) by tv
Branch: MAIN
Changes since 1.4: +3 -3 lines
Diff to previous 1.4 (colored) to selected 1.90 (colored)

Don't set SU_CMD twice (the setting here was wrong anyway).  The default
may need to be platform-dependent, so let bsd.pkg.mk (not .defaults.mk
set the default.

Revision 1.4 / (download) - annotate - [select for diffs], Wed Sep 26 18:48:53 2001 UTC (22 years, 6 months ago) by tron
Branch: MAIN
Changes since 1.3: +6 -1 lines
Diff to previous 1.3 (colored) to selected 1.90 (colored)

Add optional IPv6 and OpenSSL support to the "xchat" package. Both are
turned on by default but can be turned of with "USE_INET6=NO" and
"XCHAT_USE_SSL=NO".

Revision 1.3 / (download) - annotate - [select for diffs], Fri Sep 21 19:50:28 2001 UTC (22 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.2: +38 -7 lines
Diff to previous 1.2 (colored) to selected 1.90 (colored)

Add back descriptions of MOTIF12_TYPE and MOTIF12BASE and fix
the descriptions of MOTIF_TYPE and MOTIFBASE lost during the
mk.conf.example --> bsd.pkg.defaults.mk conversion.  Also,
document MOTIF_TYPE_DEFAULT and MOTIF12_TYPE_DEFAULT which are
used as the final default values for MOTIF_TYPE and MOTIF12_TYPE.

Note: none of these values need to be explicitly set, as
motif.buildlink.mk will choose sensible values for all of these
variables.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Sep 19 17:18:41 2001 UTC (22 years, 6 months ago) by drochner
Branch: MAIN
Changes since 1.1: +3 -3 lines
Diff to previous 1.1 (colored) to selected 1.90 (colored)

setting MOTIFBASE explicitely breaks motif type auto detection,
so comment it out

Revision 1.1 / (download) - annotate - [select for diffs], Tue Sep 18 21:30:05 2001 UTC (22 years, 6 months ago) by agc
Branch: MAIN
Diff to selected 1.90 (colored)

Add a new bsd.pkg.defaults.mk file, derived from the old mk.conf.example.

This file is "included" automatically before <bsd.own.mk> includes
/etc/mk.conf, so that pkgsrc-wide default values are set.

It is now possible just to set values in mk.conf only where they differ
from the default, thereby easing the problems of updating mk.conf when
new values get added.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>