summaryrefslogtreecommitdiff
path: root/mk/bsd.pkg.defaults.mk
AgeCommit message (Collapse)AuthorFilesLines
2004-10-06Reorganize some of the files under pkgsrc/mk:jlam1-2344/+0
(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.
2004-10-06Add SUN_JRE15_USE_JCE (forgot this file in the commit).tv1-1/+7
2004-09-30Make APR_USE_DB4 default to NO everywhere, now that subversion-baseepg1-8/+4
can build without it.
2004-09-27LIBTOOLIZE_PLIST doesn't even need to be conditional. If USE_LIBTOOL istv1-7/+1
set in the package Makefile, then a libtool transform will be done, period.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-2/+2
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".
2004-09-21X11_TYPE=xorg users:xtraeme1-1/+5
* 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.
2004-09-14Document THTTPD_LOG_FACILITY.wiz1-1/+7
2004-09-10* Do the *.la expansion within the current _PLIST_AWK_SCRIPT framework.jlam1-1/+7
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.
2004-09-01Match the default value and the "Default" line (W3M_USE_UNICODE).uebayasi1-2/+2
2004-08-25Add a knob PKGSRC_SHOW_PATCH_ERRORMSG to control whether the newlyschmonz1-1/+10
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.
2004-08-10ezmlm-idx's options have moved to its options.mk.schmonz1-11/+1
2004-08-09Use bsd.options.mk framework for flow-tools package.seb1-13/+1
2004-08-07Convert bash2 to use bsd.options.mk.minskim1-6/+1
2004-08-07Remove unused JABBERD_METHOD, it was replaced by PKG_OPTIONS.jabberd2.xtraeme1-6/+1
2004-08-05G/C the MUTT_* variables as they're documented in the mutt packagejlam1-17/+1
Makefiles and will be removed and some point in the future.
2004-08-05Garbage collect package-specific default settings that have migrated intojlam1-58/+1
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).
2004-08-04Introduce GAMEDATAMODE and INSTALL_GAME_DATA, which will take carejschauma1-1/+11
of files installed for SETGIDGAME packages. This will help address PR pkg/25313 and PR pkg/26236.
2004-08-02Remove QMAIL_AUTOCONFIG. No need to mark it obsolete; it hasn'tschmonz1-6/+1
been around long.
2004-07-30Add a new variable to specify the installation prefix forxtraeme1-1/+16
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.
2004-07-27erm, I had PKG_RESUME_TRANSFERS set to yes, disable it for now.xtraeme1-3/+3
2004-07-27Make the option to resume transfer optional, as suggested byxtraeme1-1/+7
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.
2004-07-27Fix some more troubles with my modification for resume transfers:xtraeme1-1/+5
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.
2004-07-27Add support to resume transfers, by default it will be disabled ifxtraeme1-1/+16
$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
2004-07-25move PKG_SUFX=.tbz example to bsd.pkg.defaults.mk.grant1-1/+6
2004-07-21Add QMAIL_AUTOCONFIG, QMAIL_QUEUE_DIR, and QMAIL_QUEUE_EXTRA, whichschmonz1-4/+22
will control some aspects of the about-to-be-imported qmail package, and note that you probably don't need to change QMAILDIR anymore.
2004-07-20Remove external Matroska support from mplayer packages.salo1-2/+2
The new internal demuxer is the only one supported now, works better and support for the external one will be removed in next releases.
2004-07-19Introduce EZMLM_IDX_USE_{MY,PG}SQL, which provide database supportschmonz1-1/+11
in mail/ezmlm-idx.
2004-07-19Stop the proliferation of <PKG>_USE_<FOO> yes/no variables in thejlam1-25/+6
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.
2004-07-16Enable OpenLDAP support in devel/apr, by default it's disabled.xtraeme1-1/+6
If you want to use it, "APR_USE_OPENLDAP" should be set to [Yy][Ee][Ss]. This closes PR pkg/25356.
2004-07-14Update chat/jabberd2 to 2.0s3.xtraeme1-1/+6
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
2004-07-10Add default values for CONSERVER_DEFAULTPORT and CONSERVER_DEFAULTHOST,salo1-1/+11
used by comms/conserver.
2004-07-06Retire buildlink2, now that all packages using it have been converted towiz1-4/+4
buildlink3.
2004-07-06Add SUN_JRE14_USE_JCE which pulls in Sun's Unlimited Strengthabs1-1/+7
Java Cryptography Extension. Implemented as a variable rather than as an additional package as it needs to replace JRE jar files.
2004-06-26as per bsd.pkg.mk rev 1.1449, flow.dl.sourceforge.net in Australia isgrant1-2/+2
still unreachable. replace it with optusnet.dl.sourceforge.net, another fast, up-to-date mirror.
2004-06-22Enable drac support in mail/qpopper package, patch was suppliedxtraeme1-1/+6
by John Nemeth in PR pkg/22925. The new option to use is "QPOPPER_USE_DRAC" and by default is not defined. Bump PKGREVISION.
2004-06-20Update sysutils/grub to 0.95, and remove obsoleted optionsxtraeme1-11/+1
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.
2004-06-20Remove obsoleted options USE_TETEX2 and LIBWRAP_FWD, they are not usedxtraeme1-14/+1
under any package, reported by Jim Bernard in PRs pkg/25975, pkg/25976.
2004-06-18Remove Motif 1.2 functionality.kristerw1-22/+1
2004-06-06Introduce VARBASE per discussion on tech-pkg@. It is set to "/var" byminskim1-39/+44
default.
2004-06-04Note usage of PKG_LANG by misc/openoffice.mrauch1-2/+2
2004-05-31Use a cleaner approach for previous:jschauma1-3/+3
- 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
2004-05-30Add MASTER_SITE_OPENOFFICE for the misc/openoffice* packages.mrauch1-1/+21
List extracted from http://download.openoffice.org/1.1.1/source.html
2004-05-28Update mail/dovecot to 0.99.10.5.xtraeme1-1/+6
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.
2004-05-27Add two patches from CVS:recht1-1/+6
- 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.
2004-05-25Add VICE_USE_FFMPEG switch to enable ffmpeg support in vice.wiz1-1/+6
Document it in bsd.pkg.defaults.mk. Defaults to "no". PKGREVISION not bumped since package does not change (by default).
2004-05-23Introduce and use three new variables:jschauma1-1/+19
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.
2004-05-22add XEN12_USE_COM2 option to switch Xen console on com port2cl1-1/+6
2004-05-22Introduce and use two new variables:jschauma1-1/+11
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.
2004-05-15update suggested CPAN mirror for Australia to mirror.aarnet.edu.au,grant1-2/+2
which is much more up-to-date than planetmirror.
2004-05-12Introduce new variables:jschauma1-1/+31
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.