Commit graph

130 commits

Author SHA1 Message Date
seb
5e67d3e639 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.
2003-02-16 23:56:12 +00:00
wiz
0cd357ab3c Add some SUSE mirror sites. From Juan RP in PR 19768. 2003-02-14 19:46:43 +00:00
agc
5f6807909a 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.
2003-01-24 10:04:23 +00:00
grant
f8a44170f0 add MYSQL_USER, MYSQL_GROUP, MYSQL_DATADIR. 2003-01-21 08:24:32 +00:00
kristerw
afc3b5c6af 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.
2003-01-20 23:39:35 +00:00
kristerw
d81abd3c52 BOOTSTRAP_EGCS is not used any longer. Remove it. 2003-01-20 23:15:34 +00:00
wiz
f85281b9b8 Correct comment on where defaults are set for DEFAULT_SERIAL_DEVICE, and
add USE_I586 and USE_OPENLDAP (used by gnupg, perhaps others?).
2003-01-02 20:12:15 +00:00
hubertf
28a6492fea 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.
2003-01-02 05:55:11 +00:00
kristerw
e7c52c4ac8 Note that USE_MMX is used by snes9x too. 2002-12-28 17:14:10 +00:00
wiz
0fa9b394d7 Update comment for USE_MMX to reflect changes. 2002-12-26 05:02:36 +00:00
wiz
04beced10d Add USE_MMX option. 2002-12-26 04:29:21 +00:00
grant
1d6ceb0dfd 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.
2002-12-25 09:21:42 +00:00
agc
715752bb11 Comments begin with the '#' character in Makefiles, not '$' 2002-12-24 09:08:47 +00:00
wiz
f0da31f644 Update comments for MOTIF* variables. 2002-12-23 14:10:00 +00:00
wiz
ff83298890 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.
2002-12-23 00:05:32 +00:00
atatat
8865f34c24 Add the LSOF_LESS_SECURE_SOCKETS for the lsof pkg. 2002-12-22 20:05:34 +00:00
wiz
2cd46ae1f0 "Possible:" instead of "Possible,", noted by Jeremy C. Reed. 2002-12-22 17:16:23 +00:00
wiz
e0c1d850f0 Add GNU_PROGRAM_PREFIX, defaulting to "g". See PR 18886 for details. 2002-12-22 01:23:50 +00:00
cjep
0db91836b9 Add an entry for WDM_MANAGERS. 2002-12-07 21:23:25 +00:00
wiz
bac349fdc6 Remove now unused MPLAYER_FONT variable. 2002-12-06 14:25:07 +00:00
jmmv
3a9c0b552e Add TKPASMAN_USE_SSL variable, used by the new package security/tkpasman. 2002-12-05 21:52:33 +00:00
salo
81f845e191 Add note about IMAKE on Solaris with native compilers.
Move SAWFISH_THEMES to proper location.
2002-11-26 10:27:06 +00:00
martti
57e44c940d Added POSTFIX_USE_LDAP 2002-11-26 07:20:21 +00:00
salo
1fde293f32 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.
2002-11-17 08:58:49 +00:00
uebayasi
cef3a36124 Defaults for w3m. 2002-11-16 05:26:28 +00:00
jlam
97412de3a3 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.
2002-11-14 09:44:34 +00:00
hubertf
d019306132 rename BINPKG_SITE to BINPKG_SITES
Adresses PR pkg/19004 by tv@pobox.com
2002-11-10 18:20:44 +00:00
grant
f07e00c1f9 add MASTER_SITE_MOZILLA for Australia. 2002-11-10 12:17:31 +00:00
dillo
03a99c0834 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)
2002-11-07 04:22:29 +00:00
wiz
6b9d47990b USE_GLX has been obsoleted a long time ago -- remove it here too. 2002-10-21 01:18:55 +00:00
jlam
c2431016c7 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
2002-10-20 23:12:50 +00:00
jlam
8d07e4003b SAMBA_WITH_MSDFS is no longer needed...samba always builds with MSDFS
support now.
2002-10-20 19:52:29 +00:00
seb
7bb88e29b0 Gmake's configure does not support anymore --disable-nsec-timestamps.
So remove it and associated variable.
2002-10-20 16:45:04 +00:00
kim
d4f819ef7a Add support for enabling MSDFS in Samba. 2002-10-13 23:13:50 +00:00
wiz
dd9c03590f Document some xlockmore options.
Patch from Lubomir Sedlacik in PR 18635.
2002-10-13 00:36:20 +00:00
jschauma
038079f3df Remove NS_INST variable, obsoleted by last changes to www/netscape7 2002-10-11 20:52:00 +00:00
jschauma
58933cb993 Document (commented) SAWFISH_THEMES variable, specifying the DISTFILES for
wm/sawfish-themes (default: about 180 themes available on themes.freshmeat.net)
2002-10-07 17:09:11 +00:00
hubertf
c378823256 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.
2002-10-07 14:54:42 +00:00
jlam
ab22ba864a 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.
2002-10-03 20:30:21 +00:00
jschauma
dd7020be6e Document NS_INST variable, determining if netscape7 uses the complete or
the recommended (default) install, as pointed out by wiz.
2002-10-01 13:35:12 +00:00
jschauma
d2dd18dbfa 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.
2002-09-30 13:55:54 +00:00
markd
427592ad77 Add mimedefang defaults 2002-09-23 13:37:21 +00:00
jlam
e11cfce83c * 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.
2002-09-23 08:45:40 +00:00
tron
d37d1a1495 Add secure HTTP support to the "wget" package. It is turned on by default
and can be turned of by "WGET_USE_SSL=NO".
2002-09-18 19:51:53 +00:00
schmonz
169b48dc9d Move default definitions of P4USER, P4GROUP, P4ROOT, and P4PORT here. 2002-09-01 04:59:05 +00:00
fredb
0c11c3b7f2 Add TRPlayer license, in support of soon-to-be-imported TRPlayer package. 2002-08-31 19:51:17 +00:00
grant
dc8fcff76a 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>.
2002-08-31 10:08:59 +00:00
grant
e2b0ec1e59 deprecate SQUID_SYSCONFDIR in favour of PKG_SYSCONFDIR.squid 2002-08-26 06:42:10 +00:00
seb
6490d0675b 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.
2002-08-19 18:39:14 +00:00
fredb
fed81d8aec Document `IMAP_UW_NO_SSL'. 2002-08-15 00:34:04 +00:00