summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-07-31Update opera7 package to version 7.53.jdolecek3-17/+18
Changes since Opera 7.52: Security * Fixed a JavaScript problem that made it possible to show one URL in the address bar, but load a different URL in the page (Secunia Advisory SA12028) Only the Linux binary tested, but updated also the Solaris/FreeBSD version of the pkg.
2004-07-31Minimize diffs with pkgsrc/mail/postfix to simplify maintenance of thisjlam14-256/+379
package.
2004-07-31Sort.jlam1-3/+3
2004-07-31Detect builtin libdes. (NetBSD 2.0, for instance, has one.)tv1-0/+18
2004-07-31Remove unnecessary line in DESCR... IPv6 is a well-received patch in thejlam1-4/+0
Postfix community nowadays.
2004-07-31Replace a few instances of ${PKGBASE} with "postfix". This has no effectjlam1-4/+4
in this package, but simplifies maintaining the postfix-current package by minimizing diffs between the two.
2004-07-31Remove trailing whitespace.jlam1-2/+2
2004-07-31I'm currently using pkgsrc under OpenBSD 3.5, so update the commentxtraeme1-2/+2
about tested versions.
2004-07-31Update comment about supported versions, I'm using pkgsrc underxtraeme1-2/+2
FreeBSD -current and in the past I used it succesfully on 4.x.
2004-07-31Update status, XFree86 and xorg are known to work without problemsxtraeme1-1/+3
under FreeBSD, NetBSD and Linux at the moment (OpenBSD support not finished).
2004-07-31Fix the code in post-patch so that man pages correctly reference pagesjlam1-12/+18
that have been prepended with "cyrus-".
2004-07-31USE_GCC_SHLIB is deprecated.xtraeme2-4/+2
2004-07-31USE_GCC_SHLIB will be deprecated soon, so change it toxtraeme1-2/+2
USE_LANGUAGES+=c++.
2004-07-31Convert to use bsd.options.mk.jlam1-24/+53
2004-07-31Restructure the flow so that we use pipes to pass information betweenjlam1-13/+11
processes instead of saving values in shell variables and then iterating over them. Using pipes is more scalable and is just as easy to read, so it's a net win.
2004-07-31Actually warn about the IMAP directories if they can't be removed.jlam1-6/+23
Removing directories happens at POST-DEINSTALL time, but the imapd.conf file may be removed during the DEINSTALL stop, so we need to add the code to remove the IMAP directories explicitly in the DEINSTALL step, as well.
2004-07-31I'm maintainer for the XFree86/X.org packages from pkgsrc.xtraeme14-28/+28
2004-07-31Define ProjectRoot inside of BeforeVendorCF, so xpkgwedge worksxtraeme1-11/+23
finally. Bump PKGREVISION.
2004-07-31I don't know why, but using XFree86 or xorg from pkgsrc, doesn't getxtraeme3-5/+25
the correct link flags, anyway adding ExtraLoadFlags seems to fix this. Bump version to 1.12 (XFree86/xorg fix).
2004-07-31As suggested by Kouichirou Hiratsuka in PR pkg/26483, movextraeme2-9/+23
ProjectRoot definition inside #ifdef BeforeVendorCF, otherwise it's overwritten by xpkgwedge two times. Finally xpkgwedge works, bump PKGREVISION.
2004-07-31Fix a build problem seen on OS X.kristerw2-1/+22
The Apple toolchain has some quirks with common symbols in archives which makes it fail to pull in a file into a binary if only common symbols are needed from that file. Work around this by initializing one of the variables.
2004-07-31Welcome to the new world: bsd.options.mk.xtraeme2-21/+42
2004-07-30Use ${XORG_VER}.xtraeme7-33/+33
2004-07-30Remove empty definition (PreLoadSetup).xtraeme2-4/+2
2004-07-30Actually warn about the IMAP directories if they can't be removed.jlam1-8/+27
Removing directories happens at POST-DEINSTALL time, but the imapd.conf file may be removed during the DEINSTALL stop, so we need to add the code to remove the IMAP directories explicitly in the DEINSTALL step, as well.
2004-07-30Apply patch from Kouichirou Hiratsuka PR pkg/26480 to not installxtraeme1-7/+7
the header files properly (previous change broke "update" target).
2004-07-30Note update of glib2 to 2.4.5.jmmv1-1/+2
2004-07-30Update to 2.4.5:jmmv3-10/+11
* Fix g_filename_from_uri() to work with non-UTF-8 filenames [Robert Ă–gren, Matthias Clasen] * Make GMarkup parser handle of whitespace inside tags according to XML 1.1 [Hiroyuki Ikezoe, Matthias] * Documentation improvements [Soeren Sandmann, Christophe Fergeau, Danek Duvall] * Other bug fixes [Oliver Guntermann, Sven Neumann, James Henstridge, Murray Cumming, Matthias, Tommi Komulainen] * New and updated translations (bg,hi,sq)
2004-07-30Remove some C99isms; hopefully fixes build on NetBSD 1.6.2.jmmv2-1/+27
Addresses PR pkg/26479.
2004-07-30PostgreSQL table support is a standard (if compiled) feature of Postfix.jlam1-16/+12
A patch is no longer need to add the support.
2004-07-30VERP support is a standard feature in Postfix.jlam1-8/+5
2004-07-30Convert to use bsd.options.mk. The relevant options variable to setjlam39-445/+789
for each package can be determined by invoking: make show-var VARNAME=PKG_OPTIONS_VAR The old options are still supported unless the variable named in PKG_OPTIONS_VAR is set within make(1) (usually via /etc/mk.conf).
2004-07-30bsd.options.mk provides boilerplate code for standard naming conventionsjlam2-1/+170
for handling per-package build options. Before including this file, the following variables should be defined: PKG_OPTIONS_VAR This is a list of the name of the make(1) variables that contain the options the user wishes to select. This variable should be set in a package Makefile. E.g., PKG_OPTIONS_VAR= WIBBLE_OPTIONS or PKG_OPTIONS_VAR= FOO_OPTIONS BAR_OPTIONS PKG_SUPPORTED_OPTIONS This is a list of build options supported by the package. This variable should be set in a package Makefile. E.g., PKG_SUPPORTED_OPTIONS= kerberos ldap ssl Optionally, the following variables may also be defined: PKG_DEFAULT_OPTIONS This is a list the options that should be built into every package, if that option is supported. This variable should be set in /etc/mk.conf. ${PKG_OPTIONS_VAR} (the variables named in PKG_OPTIONS_VAR) These variables list the selected build options and override any default options given in PKG_DEFAULT_OPTIONS. If any of the options begin with a '-', then that option is always removed from the selected build options, e.g. PKG_DEFAULT_OPTIONS= kerberos ldap sasl PKG_OPTIONS_VAR= WIBBLE_OPTIONS WIBBLE_OPTIONS= ${PKG_DEFAULT_OPTIONS} -sasl # implies PKG_OPTIONS == "kerberos ldap" or PKG_OPTIONS_VAR= WIBBLE_OPTIONS WIBBLE_OPTIONS= kerberos -ldap ldap # implies PKG_OPTIONS == "kerberos" This variable should be set in /etc/mk.conf. PKG_FAIL_UNSUPPORTED_OPTIONS If this is set to "yes", then the presence of unsupported options in PKG_OPTIONS.<pkg> (see below) causes the build to fail. Set this to "no" to silently ignore unsupported options. Default: "yes". After including this file, the following variables are defined: PKG_OPTIONS This is the list of the selected build options, properly filtered to remove unsupported and duplicate options. Example usage: -------------8<-------------8<-------------8<-------------8<------------- # Global and legacy options .if defined(USE_OPENLDAP) || defined(USE_SASL2) . if !defined(PKG_OPTIONS.wibble) . if defined(USE_OPENLDAP) && !empty(USE_OPENLDAP:M[yY][eE][sS]) PKG_OPTIONS.wibble+= ldap . endif . if defined(USE_SASL2) && !empty(USE_SASL2:M[yY][eE][sS]) PKG_OPTIONS.wibble+= sasl . endif . endif .endif PKG_OPTIONS_VAR= PKG_OPTIONS.wibble PKG_SUPPORTED_OPTIONS= ldap sasl .include "../../mk/bsd.options.mk" # Package-specific option-handling ### ### LDAP support ### .if !empty(PKG_OPTIONS:Mldap) . include "../../databases/openldap/buildlink3.mk" CONFIGURE_ARGS+= --enable-ldap=${BUILDLINK_PREFIX.openldap} .endif ### ### SASL authentication ### .if !empty(PKG_OPTIONS:Msasl) . include "../../security/cyrus-sasl2/buildlink3.mk" CONFIGURE_ARGS+= --enable-sasl=${BUILDLINK_PREFIX.sasl} .endif -------------8<-------------8<-------------8<-------------8<-------------
2004-07-30-dvdrip-0.50.18recht1-2/+1
2004-07-30note update of dvdrip to 0.50.18recht1-1/+2
2004-07-30Update documentation for the current state of buildlink3.jlam2-227/+309
2004-07-30update to 0.50.18recht2-6/+5
0.50.18 - [stable branch] - Sun Apr 18 2004, joern Bugfixes: - ac3 passthrough was broken. Thanks for reporting to James Broberg <jbrobergAT cs.rmit.edu.au> and TOSOVSKY Ales <tosovsky AT znalecka.cz> 0.50.17 - [stable branch] - Sat Apr 10 2004, joern Features: - support for another transcode deinterlacer (I=5), suggested by Jean-Yves Simon <lethalwp AT tiscali.be> Bugfixes: - mp3 samplerate setting didn't work, only 48khz for CVD. Thanks for the report to Neverstopdreaming <neverstopdreaming AT tiscali.it>. - dvd::rip couldn't open empty project files - prevent timeouts when encoding Ogg/Vorbis in cluster mode - vobsub creation now splits with millisecond precision, thanks for the patch to Jean-Yves Simon
2004-07-30Check the version of as using the just-computed ${AS_PATH}, not ${AS}.jlam1-2/+2
2004-07-30Note bump of PKGREVISION for vice.kristerw1-1/+2
2004-07-30Make the emulator work when vidmode extension cannot be used.kristerw4-8/+31
Bump PKGREVISION.
2004-07-30note update of py-docutils to 0.3.5recht1-1/+2
2004-07-30update to 0.3.5recht3-6/+50
Major changes: * improved, extended and reorganized documentation; see http://docutils.sourceforge.net/docs/ * new cvs-table directive * many minor improvements, additions and bug fixes For a detailed list see: http://docutils.sourceforge.net/0.3.5/HISTORY.html
2004-07-30Enable pkgviews installation.minskim27-27/+129
2004-07-30No need to include bsd.prefs.mk.minskim1-3/+1
2004-07-30Enable pkgviews installation.minskim1-1/+5
2004-07-30Recompute patchsum to go with revision to patch-ae:shannonjr1-2/+2
Change for AMD64: The patch incorrectly AMD64 to be identified as x86_64--netbsdelf when it is identified as x86_64--netbsd. This effect the building of the Ada front-end on the AMD64 target only.
2004-07-30Change for AMD64: The patch incorrectly AMD64 to be identifiedshannonjr1-2/+2
as x86_64--netbsdelf when it is identified as x86_64--netbsd. This effect the building of the Ada front-end on the AMD64 target only.
2004-07-30Note addition of p5-Locale-Maketext-Fuzzy and p5-Locale-Maketext-Lexicon.cube1-1/+3
2004-07-30Add p5-Locale-Maketext-Fuzzy and p5-Locale-Maketext-Lexicon.cube1-1/+3
2004-07-30Fix dependency.cube1-2/+2