summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2002-04-14This packages uses xmkmf, so required USE_X11BASE. It needs to bejlam1-1/+2
investigated why USE_IMAKE wasn't used, but do this for now as a stopgap for the 1.5.3 tag.
2002-04-14For similar reasons as canna-lib, this package must also be marked asjlam1-1/+2
USE_X11BASE.
2002-04-14Include mk/bsd.prefs.mk so that FVWM2_USE_GTK and FVWM2_USE_RPLAY canveego1-2/+4
work if you have that in /etc/mk.conf. Also changce --with-iconpath to --with-imagepath, so the default pixmap and bitmap path is now correct again. That changed some versions ago.
2002-04-14Now, fix PR pkg/16038 for real. Remember to do a clean build after addingveego2-6/+6
a patch, a Makefile could be overwritten by a Makefile.in. So we have to patch Makefile.in and not the Makefile.
2002-04-14Add and enable "opera-plugins".tron1-1/+2
2002-04-14Import new "opera-plugins" package:tron2-0/+44
Plugins for the Opera browser
2002-04-14Strongly buildlinkify. Approved by garbled.schmonz2-2/+8
2002-04-14Add build dependency on bison>=1.32rh1-1/+2
2002-04-14Add files missing in previous commitrh2-0/+648
2002-04-14Bump netsaint-base to nb1 using patches provided in PR 16293 by Gregrh7-53/+86
A. Woods <woods@planix.com> with some modifications by me. Changes are: - better support for building optional plugin packages - install no longer overwrites existing config files - sample config files are installed in share/examples - build no longer fails if not done as root - appropriate netsaint users and groups are now created - no longer installs one-time setup script in sbin - daemon logo
2002-04-14Add and enable "suse_openmotif" package.tron1-1/+2
2002-04-14Import new "suse_openmotif" package:tron3-0/+32
Linux compatibility package for the Motif libraries
2002-04-14Bump to nb2 fixing some configure script bugs. Also convert dependenciesrh3-8/+38
on automake and autoconf into simple BUILD_DEPENDS. Fix provided by Greg A. Woods <woods@planix.com> in PR 16238, thanks!
2002-04-14Add a SNORT_USE_PGSQL option to compile in PostgreSQL support (and addrh2-3/+11
the appropriate dependency). Patch provided by ww@GROOVY.NET
2002-04-13Another week, another update and no old distfile.veego2-5/+5
This time dat-4196.
2002-04-13--------------------------------------------------------------------------------jlam20-358/+375
Update www/apache2 to 2.0.35, the first stable release of Apache 2.x. Pkgsrc changes include: *) Compiling the included modules statically. Add-ons will be built dynamically. *) Match improvements to www/apache rc.d script. *) Automatically add "Listen 0.0.0.0:80" to the sample config files as the default install of NetBSD is IPv4/IPv6 and we want the default install of Apache to work out-of-the-box. *) Automatically reset the User and Group directives to match the ones for suEXEC in the config files to ease the use of suEXEC in Apache. Changes from version 2.0.32 beta include: *) Small bug fixes across the board. *) Bug fixes to the various MPMs. *) Performance improvements. *) Fixes for mod_include errors on boundary conditions *) Bug fixes for mod_proxy to prevent hangs and for RFC2616 compliance. *) Improvements to mod_dav for improved API and for RFC 3253 compliance *) Improvemants to mod_ssl to support SSL proxy and RSA SSLC 1.x/2.x *) Greatly improve mod_cache (disk/mem) [this is disabled in pkgsrc] *) New scoreboard file implementation that is readable by 3rd-party apps. *) Allow all Perchild directives to accept either numerical UID/GID or logical user/group names. *) Add support for macro expansion within the variable names in <!--#echo--> and <!--#set--> directives *) Implement SSLSessionCache shmht and shmcb. *) New directive ProxyIOBufferSize. Sets the size of the buffer used when reading from a remote HTTP server in proxy. *) Scrap CacheMaxExpireMin and CacheDefaultExpireMin. Change CacheMaxExpire and CacheDefaultExpire to use seconds rather than hours. *) New Directive SSIUndefinedEcho. to change the '(none)' echoed for a undefined variable. *) Introduce PassPhraseDialog "|/path/to/pipe" mechanism to mod_ssl. *) New Directive for mod_proxy: ProxyRemoteMatch. *) Fix IPv6 name-based virtual hosts. *) Introduce AddOutputFilterByType directive.
2002-04-13Update this package to jakarta-ant-1.4.1.jwise5-98/+185
In addition to changes in the package as distributed, we no longer install the optional tasks from this package -- what tasks got included in the optional task jarfile was highly dependent on what other packages the user had installed. It is neither reasonable to depend on all of these packages (many of them themselves built with ant!) in the ant package, nor reasonable for two builds of the ant optional tasks to vary so widely. In a few days, I will import a jakarta-ant-optional package, which depends on a wide range of other packages, and builds all those optional tasks currently supportable by pkgsrc. Relevant changes since jakarta-ant 1.3 (the last pkgsrc version): (For full changes, see ${LOCALBASE}/share/doc/java/ant/WHATSNEW) * XmlLogger and <antstructure> now add an encoding declaration to the XML files they generate. * <fileset> has a new attribute "casesensitive" to make it match filenames in a case insensitive way (if you set it to false) - by default filesets remain case sensitive. * <rmic> is now implemented using a factory. This makes extending rmic to use a new compiler a lot easier but may break custom versions of this task that rely on the old implementation. * several Zip methods have changed their signature as we now use a Zip package of our own that handles Unix permissions for directories. Furthermore <zip> will now use the platform's default character encoding for filenames - this is consistent with the command line ZIP tools, but causes problems if you try to open them from within Java and your filenames contain non US-ASCII characters. Use the new encoding attribute of the task and set it to UTF8 to get the old behavior. * Ant will no longer use the canonical version of a path internally - this may yield different results on filesystems that support symbolic links. * Pattern matching rules have changes slightly, the pattern foo* doesn't match files contained in a directory named foo - use foo/* instead. * <fixcrlf> will not remove trailing whitespace at the end of lines anymore. * Invalid manifest files will now cause build failures in the <jar> task. * A delete task like <delete includeEmptyFilesets="true"> <fileset dir="somedir" /> </delete> will now remove "somedir" as well, unless there are still files left in it (matched by the default excludes). * The copy task will now fail if the file to be copied is not found. * Ant properties defined in properties files now behave the same way as properties defined in the build file. In particular the $ character needs to be escaped in property values by doubling it to $$. So, to define a property with the value $hello, you need to define it in a properties file as test.prop=$$hello This was not the case in Ant 1.3 * <tar> will now add empty directories as well * <touch> can now work on <fileset>s * <uptodate> now supports a value attribute * <fail> supports nested text * <fixcrlf> won't override files that are already in the correct format. * <sql> now supports REM comments as well as // and -- * <jar> now has a nested <metainf> element following the same idea as <war>'s <webinf>. * <available> now has a "type" attribute you can use in conjunction with the "file" attribute to specify whether the "file" you're looking for is a file or a directory. * Allow the <sql> Delimiter to be set in the so that Oracle stored procs may be entered * <execon> and <apply> can now optionally skip empty filesets. * <javadoc> has a new useexternalfile attribute that makes it use a temporary file for sourcefile and package names - helps to defeat command line length limitations. * Data types like <path> can now be defined inside of <target>s * New filesonly attribute for <zip> and friends to suppress directory entries. * New update attribute for <zip> and friends - update an existing archive instead of creating a new one. * <apply> and <execon> have been merged into a single task. * <available> has a new filepath attribute/nested element that allows you top search for a file in a given path. * <taskdef> can now define several tasks at once, reading the name/classname pairs from a property file or resource. * <unzip/unjar/unwar> and <untar> now have an overwrite attribute that defaults to true. If set to false, files that are newer than the files in the archive will not be replaced. * <patternset> and <fileset> now support nested <in/excludesfile> elements - using these you can have more than one in/excludes file per <patternset>. * <fixcrlf> can now with CR only line-ends and can use an arbitrary between 2 and 80. * <move> will now try to rename() files before copying them byte by byte - only if filtering is of, of course. * <ant> and <antcall> tasks now support a new attribute inheritAll. When set to false, only user properties are passed through to the target Ant instance. This includes properties set on the command line and properties explicitly passed * <javadoc> now skips off line links if the package list cannot be found. * <java> task will set the Thread contextClassLoader under JDKs 1.2+ to the classloader for the class being executed. * Introduce the concept of a TaskContainer - a task or element which can contain Ant Tasks. * Add new tasks implementing the TaskContainer interface <parallel> and <sequential> which allow parallel execution of tasks to be specified. * <depend> task will now take into account dependencies on jar files and class files from a given classpath. * <jar> manifest entries may now be specified in the build file either completely or to be merged with a manifest file. * <tstamp> task custom formats now support locales. * Introduced the concept of <filtersets> to allow for more control in which filters get applied in a <copy> or <move> operation. * The <depend> task cache format has changed and all dependency information is now stored in a single file.
2002-04-13Add and enable crimson.jwise1-1/+2
2002-04-13Initial import of packages for crimson-1.1.3, the apache.org implementationjwise4-0/+219
of JAXP (it also includes implementations of SAX and DOM). We install from the binary (bytecode) distribution of crimson, as crimson is required to run jakarta-ant, and jakarta-ant is used to build crimson from sources.
2002-04-13Fix reference to section 8 to point to section 9 instead.wiz1-2/+2
By Julio Merino from pkg/16333.
2002-04-13Make this build on current - NetBSD-1.5ZC/gcc-2.95.3/mac68k.fredb11-72/+526
2002-04-13The last commit commented out the x11 buildlink file, because the packageagc1-1/+2
has not yet been strongly buildlinked. However, we need to indicate that the package needs X11 to build, so fall back to USE_X11=yes. Fixes a problem in the i386 bulk build.
2002-04-13Fix problem with MASTER_SITES reported by Dan McMahill in private email.jlam1-10/+9
The make variable expansion differs between 1.5.x make and a -current make, so simplify it by flattening it out.
2002-04-13Revert patch-ab to revision 1.1, as suggested by jlam@netbsd.org.jwise2-22/+18
Fixes build problem with canna-server picked up by bulk build system.
2002-04-13It's actually USE_X11BASE implies that imake is there and that we installjlam1-2/+2
into ${X11BASE}, as all imake-using programs do (barring xpkgwedge).
2002-04-12Note that this package is only meant to be built on NetBSD 1.5.xagc1-6/+3
2002-04-12Note that canna-lib uses imake by defining USE_X11. We can't use USE_IMAKEjlam1-1/+2
for other reasons, but we should prevent building this package on machines without X11.
2002-04-12Use libmcrypt22 instead of libmcrypt. Reported to fix pkg/16198 byjlam1-2/+4
Stephen Borrill <netbsd@precedence.co.uk>.
2002-04-12Add and enable security/libmcrypt22.jlam1-1/+2
2002-04-12Older 2.2.x release of libmcrypt provided for those apps for which thejlam6-0/+97
newer libmcrypt (>=2.4.x) seem to cause core dumps. Import approved by Alistair <agc@netbsd.org>.
2002-04-12Give PHP4 distfile a make variable name.jlam1-1/+4
2002-04-12Back out previous. Wine won't be able to run any nontrivial apps onjunyoung2-17/+1
1.5.x releases due to lack of support for clone(2).
2002-04-12This package installs binaries compiled for the NetBSD 1.2 and 1.3 releasesmrauch1-1/+16
and so needs the emulation packages if we run on a later release.
2002-04-12Updated abiword-personal to 0.99.5martti4-13/+14
* bug fixes * localisation updates * new templates
2002-04-12Build C++ library, too.jschauma2-2/+9
(Commit approved by hubertf)
2002-04-12Add note explaining when x11.buildlink.mk should be used.jlam1-2/+5
2002-04-12Several changes:jlam1-11/+11
* It's CONFIGURE_ARGS, not CONFIGURE_ARG. * Use Mesa/buildlink.mk to properly handle whether we're using XF3 or XF4 (the latter contains its own MesaGL libraries). * Comment out inclusion of x11.buildlink.mk since we're not even weakly buildlinked, so jumping ahead to trying to strongly buldlinkify this package is overboard. * Sort the buildlink.mk file (just personal aesthetics).
2002-04-12Add dependency on guile. It used to be pulled in incidentally from thejlam1-1/+2
dependency on GConf where it was recently removed; however, unlike GConf, this package actually uses guile.
2002-04-12Buildlink magic for guile.jlam1-0/+55
2002-04-12Updated fvwm2 to 2.4.7martti3-11/+11
Fvwm 2.4.7 is a maintenance release for 2.4.6 that fixes a number of minor or rare problems. System administrators are strongly encouraged to move to 2.4.6 or 2.4.7 from any earlier 2.4.x release. Changes: * Fixed parsing of WindowList with conditions and a position at the same time that was broken in 2.4.6. * Fixed some problems with the DeskOnly option of FvwmTaskBar (windows were duplicated when moving to a different Desk; the StickyIcon style was ignored). * Fixed config.h warnings with some compilers introduced in 2.4.6. * Fixed icon titles being raised when they should not be. * Fixed initial drawing of the internals of the FvwmPager window. * Fixed the FvwmAudio compatible mode in FvwmEvent when external audio player is used. * Minor improvements in the man page.
2002-04-12Updated xpmroot to 2.4.7 (to match the current fvwm2 version). There aremartti2-5/+5
no changes in the xpmroot code...
2002-04-12Add and enable bpaloginrh1-1/+2
2002-04-12Initial import of bpalogin-2.0.1, a login client for Telstra's BigPondrh7-0/+104
Advance cable internet service.
2002-04-12Allow compiling in perl support for scripts.hubertf2-4/+19
Patch submitted by dawszy@ailuj.openbsd.org.pl in private mail.
2002-04-11The location of the gconf headers as output by gconf-config must bejlam1-1/+6
properly translated for buildlink.
2002-04-11Move comment in such a way that make doesn't stumble over it.wiz1-3/+3
2002-04-11Explain why the package is restricted to i386 -current.magick1-1/+3
Pointed out by tron@zhadum.de.
2002-04-11Add and enable grub.magick1-1/+2
2002-04-11Import new package grub. Submitted by jgoerzen@complete.org inmagick5-0/+77
pkg/15065. I updated it to 0.91 and removed patch-aa which the submitter already sent to the grub people. GRUB is the GRand Unified Bootloader. Briefly, bootloader is the first software program that runs when a computer starts. It is responsible for loading and transferring control to the operating system kernel software (such as NetBSD orLinux). GRUB understands ffs, FAT{16,32}, ext2fs, ReiserFS, minixfs, and VSTafs. It can directly boot NetBSD, FreeBSD, OpenBSD and Linux without any other bootloader, loading a.out and ELF kernels from the disk and passing along necessary arguments (in most cases). It can also boot any operating system (the above, plus eg Windows, OS/2) by chaining to that operating system's specific loader. Grub features a runtime command line and loads its configuration at boot rather than requiring rerunning of a separate utility. Other features are TFTP booting, serial console support, large disk support, support for both DOS MBR label and BSD disklabel simultaneously, booting from hard drive or floppy. GRUB is available for the i386 architecture only.
2002-04-11Consolidate two patches for the same file.fredb3-18/+13