summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2003-12-11Use stdarg instead of varargs.ben1-1/+2
2003-12-11Update MASTER_SITES and HOMEPAGE to www.snake.net.ben6-18/+18
2003-12-11milter-spamc is another milter/spamassassin interface.manu2-2/+4
2003-12-11Yet another milter/spamassassin interfacemanu7-0/+147
2003-12-11This needs ncurses. Include the buildlink2.mk so it works on systemserh1-1/+2
without a system ncurses.
2003-12-11Fix from PR/18771: mtools privilegesadam2-1/+24
2003-12-11Update audit-packages to version 1.27.agc1-1/+2
Difference from previous version (1.26): + if the vulnerability list is older than a week, just display a warning message - don't consider this a fatal error.
2003-12-11Update audit-packages to version 1.27.agc2-4/+4
Difference from previous version (1.26): + if the vulnerability list is older than a week, just display a warning message - don't consider this a fatal error.
2003-12-11automake-1.8 update done. s/ / /gwiz1-5/+6
2003-12-11Update to 1.8:wiz4-29/+27
* New features - Default source file names in the absence of a _SOURCES declaration are made by removing any target extension before appending `.c', so to make the libtool module `foo.la' from `foo.c', you only need to do this: lib_LTLIBRARIES = foo.la foo_la_LDFLAGS = -module For backward compatibility, foo_la.c will be used instead of foo.c if this file exists or is the explicit target of a rule. However -Wobsolete will warn about this deprecated naming. - AR's `cru' flags are now set in a global ARFLAGS variable instead of being hard-coded in each $(AR) invocation, so they can be substituted from configure.ac. This has been requested by people dealing with non-POSIX ar implementations. - New warning option: -Woverride. This will warn about any user target or variable definitions which override Automake definitions. - Texinfo rules back up and restore info files when makeinfo fails. - Texinfo rules now support the `html' target. Running this requires Texinfo 4.0 or greater. `html' is a new recursive target, so if your package mixes hand-crafted `Makefile.in's with Automake-generated `Makefile.in's, you should adjust the former to support (or ignore) this target so that `make html' recurses successfully. If you had a custom `html' rule in your `Makefile.am', it's better to rename it as `html-local', otherwise your rule will override Automake's new rule (you can check that by running `automake -Woverride') and that will stop the recursion to subdirectories. Last but not least, this `html' rule is declared PHONY, even when overridden. Fortunately, it appears that few packages use a non-PHONY `html' rule. - Any file which is m4_included from configure.ac will appear as a configure and Makefile.in dependency, and will be automatically distributed. - The rules for rebuilding Makefiles and Makefile.ins will now rebuild all Makefiles and all Makefile.ins at once when one of configure's dependencies has changed. This is considerably faster than previous implementations, where config.status and automake were run separately in each directory (this still happens when you change a Makefile.am locally, without touching configure.ac or friends). Doing this also solves a longstanding issue: these rebuild rules failed to work when adding new directories to the tree, forcing you to run automake manually. - For similar reasons, the rules to rebuild configure, config.status, and aclocal.m4 are now defined in all directories. Note that if you were using the CONFIG_STATUS_DEPENDENCIES and CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you should better define them in all directories. This is easily done using an AC_SUBST (make sure you prefix these dependencies with $(top_srcdir) since this variable will appear at different levels of the build tree). - aclocal will now use `m4_include' instead of copying local m4 files into aclocal.m4. (Local m4 files are those you ship with your project, other files will be copied as usual.) Because m4_included files are automatically distributed, it means for most projects there is no point in EXTRA_DISTing the list of m4 files which are used. (You can probably get rid of m4/Makefile.am if you had one.) - aclocal will avoid touching aclocal.m4 when possible, so that Autom4te's cache isn't needlessly invalidated. This behavior can be switched off with the new `--force' option. - aclocal now uses Autoconf's --trace to detect macros which are actually used and will no longer include unused macros simply because they where mentioned. This was often the case for macros called conditionally. - New options no-dist and no-dist-gzip. - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs, py-compile, and ylwrap, now all understand --version and --help. - Automake will now recognize AC_CONFIG_LINKS so far as removing created links as part of the distclean target and including source files in distributions. - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND argument. The latter can be used to override the default behavior (which is to abort). - Automake will exit with $? = 63 on version mismatch. (So does Autoconf 2.58) missing knows this, and in this case it will emulate the tools as if they were absent. Because older versions of Automake and Autoconf did not use this exit code, this change will only be useful in projects generated with future versions of these tools. - When using AC_CONFIG_FILES with multiple input files, Automake generates the first ".in" input file for which a ".am" exists. (Former versions would try to use only the first input file.) - lisp_DATA is now allowed. If you are using the empty ELCFILES idiom to disable byte-compilation of lisp_LISP files, it is recommended that you switch to using lisp_DATA. Note that this is not strictly equivalent: lisp_DATA will install elisp files even if emacs is not installed, while *_LISP do not install anything unless emacs is found. - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is available. This selection is achieved through the Makefile variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or `$(install_sh) -m 0755 -d'. * Obsolete features - Because `mkdir -p' is available on most platforms, and we can use `install-sh -d' when it is not, the use of the mkinstalldirs script is being phased out. `automake --add-missing' no longer installs it, and if you remove mkinstalldirs from your package, automake will define $(mkinstalldirs) as an alias for $(mkdir_p). Gettext 1.12.1 still requires mkinstalldirs. Fortunately gettextize and autopoint will install it when needed. Automake will continue to define the $(mkinstalldirs) and to distribute mkinstalldirs when this script is in the source tree. - AM_PROG_CC_STDC is now empty. The content of this macro was merged in AC_PROG_CC. If your code uses $am_cv_prog_cc_stdc, you should adjust it to use $ac_cv_prog_cc_stdc instead. (This renaming should be safe, even if you have to support several, versions of Automake, because AC_PROG_CC defines this variable since Autoconf 2.54.) - Some users where using the undocumented ACLOCAL_M4_SOURCES variable to override the aclocal.m4 dependencies computed (inaccurately) by older versions of Automake. Because Automake now tracks configure's m4 dependencies accurately (see m4_include above), the use of ACLOCAL_M4_SOURCES should be considered obsolete and will be flagged as such when running `automake -Wobsolete'. * Bug fixes - Defining programs conditionally using Automake conditionals no longer leads to a combinatorial explosion. The following construct used to be troublesome when used with dozens of conditions. bin_PROGRAMS = a if COND1 bin_PROGRAMS += a1 endif if COND2 bin_PROGRAMS += a2 endif if COND3 bin_PROGRAMS += a3 endif ... Likewise for _SOURCES, _LDADD, and _LIBADD variables. - Due to implementation constraints, previous versions of Automake proscribed multiple conditional definitions of some variables like bin_PROGRAMS: if COND1 bin_PROGRAMS = a1 endif if COND2 bin_PROGRAMS = a2 endif All _PROGRAMS, _LDADD, and _LIBADD variables were affected. This restriction has been lifted, and these variables now support multiple conditional definitions as do other variables. - Cleanup the definitions of $(distdir) and $(top_distdir). $(top_distdir) now points to the root of the distribution directory created during `make dist', as it did in Automake 1.4, not to the root of the build tree as it did in intervening versions. Furthermore these two variables are now only defined in the top level Makefile, and passed to sub-directories when running `make dist'. - The --no-force option now correctly checks the Makefile.in's dependencies before deciding not to update it. - Do not assume that make files are called Makefile in cleaning rules. - Update .info files in the source tree, not in the build tree. This is what the GNU Coding Standard recommend. Only Automake 1.7.x used to update these files in the build tree (previous versions did it in the source tree too), and it caused several problems, varying from mere annoyance to portability issues. - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten when --add-missing and --force-missing are used. For backward compatibility --add-missing will continue to install COPYING (in `gnu' strictness) when none of these three files exist, but this use is deprecated: you should better choose a license yourself and install it once for all in your source tree (and in your code management system). - Fix ylwrap so that it does not overwrite header files that haven't changed, as the inline rule already does. - User-defined rules override automake-defined rules for the same targets, even when rules do not have commands. This is not new (and was documented), however some of the automake-generated rules have escaped this principle in former Automake versions. Rules for the following targets are affected by this fix: clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am, info, info-am, install-data-am, install-exec-am, install-info, install-info-am, install-man, installcheck-am, maintainer-clean, maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am, ps, ps-am, uninstall-am, uninstall-info, uninstall-man Practically it means that an attempt to supplement the dependencies of some target, as in clean: my-clean-rule will now *silently override* the automake definition of the rule for this target. Running `automake -Woverride' will diagnose all such overriding definitions. It should be noted that almost all these targets support a *-local variant that is meant to supplement the automake-defined rule (See node `Extending' in the manual). The above rule should be rewritten as clean-local: my-clean-rule These *-local targets have been documented since at least Automake 1.2, so you should not fear the change if you have to support multiple automake versions. * Miscellaneous - The Automake manual is now distributed under the terms of the GNU FDL. - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined. - core dumps are no longer removed by the cleaning rules. There are at least three reasons for this: 1. These files should not be created by any build step, so their removal do not fit any of the cleaning rules. Actually, they may be precious to the developer. 2. If such file is created during a build, then it's clearly a bug Automake should not hide. Not removing the file will cause `make distcheck' to complain about its presence. 3. Operating systems have different naming conventions for core dump files. A core file on one system might be a completely legitimate data file on another system. - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer defined by Automake. This means that any definition in the environment will be used, unless overridden in the Makefile.am or on the command line. The old behavior, where these variables were defined empty in each Makefile, can be obtained by AC_SUBSTing or AC_ARG_VARing each variable from configure.ac. - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now documented. (The is not a new feature, these variables have been there since at least Automake 1.4.)
2003-12-11Bump version to 1.5.1. Fixes bug when using pkg_tarup to tar up multiple pkgs.erh1-2/+2
2003-12-11Clear out PKG_ARGS each time we create a package to avoid grabbingerh1-1/+2
files from other packages.
2003-12-11Updated mtools to 3.9.9adam2-3/+3
2003-12-11Changes 3.9.9:adam7-57/+61
* Large disk fixes, especially for Solaris * Floppyd robustness * Zip 250 support in mzip * Protect against division by zero when reading BSD disks * Fixed parsing of Unix filenames ending with slash * Fixes for floppyd to work with current protocol version of floppyd * Warn for invalid partition numbers * Support for geometry-less Atari disks * Support for byte-swapping disks * Fixed max numbers of sectors for FAT12 and FAT16 See ChangeLog for details
2003-12-11sync PLIST with realityagc1-2/+1
2003-12-11work/.buildlink -> ${BUILDLINK_DIR} to make it work on more systems.agc1-4/+4
2003-12-11Updated sylpheed-claws to 0.9.7adam2-3/+3
2003-12-11Changes 0.9.7:adam4-29/+190
* the MIME parser has been rewritten * GnuPG/GPGME: the method of checking signed messages has been improved and the reporting of signed messages has been modified. * GnuPG/GPGME: decrypted messages are no longer saved and the user will now be prompted to decrypt each time the message is selected. * new icons have been added for MIME types * Filtering: 3 new actions have been added. * IMAP: UIDPLUS support for COPY and EXPUNGE has been added * Folder Properties: 'Procesing on startup' has been added. * LDAP: it is possible to browse an entry that was retrieved using an explicit LDAP search * LDAP: a 'contains' query is now possible * SpamAssassin plugin: updated spamc to version 2.60. Support for new libspamc transports has been added * updated translations: Croatian, French, German, Japanese, Polish, Spanish, Serbian, Simpilified Chinese, and Slovak * Bug fixes
2003-12-11Note import of phpsview, qcamviewhamajima1-1/+3
2003-12-11New package for qcamview-0.2, software for use with Logitech Quickcam ↵hamajima4-0/+54
Express USB cameras
2003-12-11New package for phpsview-1.0, software for use with Philips USB camerashamajima4-0/+47
2003-12-11add missing }.grant1-2/+2
from Aidan Kehoe in PR pkg/23676.
2003-12-11the configure script uses --disable-oss-dsp to disable OSS support,grant1-2/+2
not --without-oss-dsp. fixes linking on NetBSD. (how did this ever link given that -lossaudio is not passed??)
2003-12-11MESSAGE file is specifically talking about "NetBSD" kernel configuration.reed2-0/+13
So move to MESSAGE.NetBSD (so other platform users aren't confused when teh day comes that cvsup in pkgsrc
2003-12-11Fix badly botched package list handling in case "mutt_dotlock" exists.tron1-3/+5
2003-12-11+ spamassassin 2.61heinz1-1/+2
2003-12-11only print SUBST_MESSAGE if it's defined.grant1-1/+3
2003-12-10share/gnome/wm-properties belongs to gnome2-dirs, don't try to removegrant1-2/+1
it.
2003-12-10Update p5-Net-DNS to 0.42heinz2-3/+3
2003-12-10Update to version 0.42.heinz3-10/+10
Changes since 0.40: *** 0.42 October 26, 2003 Fixed compilation problems on panther (Mac OS 10.3). Fixed a bug in Net::DNS::Resolver::Recurse which allowed an endless loop to arise in certain situations. (cpan #3969, patch by Rob Brown) Applied Mike Mitchell's patch implementing a presistant UDP socket. See the Net::DNS::Resolver documentation for details. *** 0.41 October 3, 2003 Added some documentation about modifying the behavior of Net::DNS::Resolver. ** 0.40_01 September 26, 2003 Fixed some uninitialized value warnings when running under windows. Fixed a bug in the test suite that caused 00-version.t to fail with certain versions of ExtUtils::MakeMaker. Thanks to David James, Jos Boumans and others for reporting it. Reply handlers in Net::DNS::Nameserver are now passed the peerhost. (Assen Totin <assen@online.bg>) Reply handlers in Net::DNS::Nameserver can now tweak the header bits that the nameserver returns. [Olaf] The AD header bit is now documented, and twiddleable. [Olaf] The change log has been trimmed, entries for versions older than 0.21 have been removed. ** NOTICE ** Net::DNS::Resolver::axfr_old() has been removed from the package. An exception will be thrown if you attempt to use this method. Use axfr() or axfr_start() instead.
2003-12-10Import of p5-Digest-1.05heinz1-1/+6
Update of p5-Digest-MD4 to 1.3 p5-Digest-MD2 to 2.03 p5-Digest-MD5 to 2.33 p5-Digest-SHA1 to 2.07
2003-12-10Update to version 2.07heinz2-6/+9
Take maintainership. Add HOMEPAGE. Changes since 2.06: 2003-12-05 Gisle Aas <gisle@ActiveState.com> Release 2.07 Inherit add_bits() from Digest::base if available.
2003-12-10Update to version 2.33heinz2-6/+9
Take maintainershi. Add HOMEPAGE. Changes since 2.30: 2003-12-07 Gisle Aas <gisle@ActiveState.com> Release 2.33 Enable explicit context passing for slight performance improvement in threaded perls. Tweaks to the Makefile.PL so that it is suitable both for core and CPAN use. 2003-12-05 Gisle Aas <gisle@ActiveState.com> Release 2.32 Don't run u32align test program on HP-UX 10.20 as it will hang. Patch by H.Merijn Brand <h.m.brand@hccnet.nl>. Fixed documentation typo. 2003-11-28 Gisle Aas <gisle@ActiveState.com> Release 2.31 Inherit add_bits() from Digest::base if available.
2003-12-10Update to version 2.03heinz2-5/+5
Changes since 2.01: Release 2.03 The only reason for this release it to clean up my CPAN directory. There is no change in this release besides the version number. Release 2.02 Sync up with Digest-MD5-2.26 - added clone method - $md2->addfile croak on read errors - safer patchlevel include - warn if functional interface used as methods
2003-12-10Add HOMEPAGEheinz1-2/+2
2003-12-10Update to version 1.3heinz2-5/+5
Changes: Version 1.3 Fixed compile errors reported while being built unders windows cywin with Perl 5.8.2 Version 1.2 Rebuilt from Digest::MD5 1.30, to achieve Digest:: spec compatibility
2003-12-10Enable p5-Digestheinz1-1/+2
2003-12-10Initial import of Digest-1.05heinz4-0/+26
A simple frontend module for autoloading of various Digest:: modules. It also provide documentation of the interface that all Digest:: modules should provide.
2003-12-10Add patches to allow galeon to compile on NetBSD-1.6ZG.agc4-1/+57
2003-12-10Tweak (ugly) post-buildlink: hack to only occur if gcc3 is found. Tested on:abs1-2/+7
- i386 current (1.6ZE) - i386 1.6.2_RC3 - i386 1.6.2_RC3 with USE_GCC3 Previous version was committed by accident No change to generated package, only to if package could be generated at all, so no PKGREVISION change. Does not fix, but provides a workaround for PR pkg/23053 and PR pkg/23509
2003-12-10bump PKGREVISION for latest change:jdolecek1-1/+2
enable use of /dev/uscanner problem reported and patch provided in pkg/23665 by Thilo Manske
2003-12-10enable use of /dev/uscannerjdolecek2-1/+15
problem reported and patch provided in pkg/23665 by Thilo Manske
2003-12-10note update of py-pyrex to 0.9recht1-1/+2
2003-12-10update to 0.9recht3-6/+12
New Features: * An extension type can inherit from another built-in or extension type. * Extension types can have properties. * Extension types can have C methods. Numerous bugs have also been fixed - see the CHANGES file for details.
2003-12-10Don't force -O2 any more, use CFLAGS insteadadam1-3/+3
2003-12-10override bootstrap-pkgsrc's incorrect OBJECT_FMT on NetBSD 1.4. fromgrant1-2/+13
krister. XXX this should also be fixed in bootstrap-pkgsrc and bmake's mk-files.
2003-12-10Replace hardcoded '/usr/pkgsrc' in comments.sketch3-7/+7
2003-12-10handle older NetBSD systems where bootstrap-pkgsrc is needed, andgrant1-1/+5
therefore the pkgtools are in ${LOCALBASE}/sbin. patch from krister.
2003-12-10Ensure CPP is defined to use the Sun compiler when building packagessketch1-1/+2
under USE_SUNPRO, to avoid the possibility of picking up "cpp" from a local GCC installation.
2003-12-10note update of libnbcompat to 20031210.grant1-1/+2