summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2001-11-13* Strongly buildlinkify.jlam4-8/+45
* Use qt2-designer-kde for a uic that understands KDE2 widgets. * On Linux, kmtrace is installed, so handle it in the PLIST. * libkstartperf.so needs to link against libltdl.so so add run-time dependency on libtool.
2001-11-13* Strongly buildlinkify.jlam4-16/+109
* Remove dependency on python. The python KDE2 interface objects weren't being built and installed anyway.
2001-11-13* Strongly buildlinkify.jlam2-27/+33
* Use qt2-designer-kde for a uic that understands KDE2 widgets. * Sort and fix PLIST.
2001-11-13Upgrade to version 5.1.seb6-61/+144
While here added the support of Exuberant etags (exetags in this package). List of changes for version 5.1: * Changed name of option configuration files for MSDOS, MSWindows, and OS/2. * Changed regex support to enforce REG_NEWLINE. This fixes problem where the newline character was explicity being matched by user patterns [Bug #431477]. * Added new public domain library for reading tag files (see readtags.h). * Added support for variables and namespaces, provided by Jay Glanville [Vim]. * Added report of non-options in option configuration files and CTAGS environment variable. * Added support for YACC language, submitted by Nick Hibma [YACC]. * Added support for Perl packages, submitted by Nick Hibma [Perl]. * Added '$' as valid identifier character for DEC C compiler [VMS, Bug #425147]. * Added compilation date and time to --version output. * Added configure check for HP-UX to determine if ANSI options needed [HP-UX]. * Removed tags for forward class/struct declarations [C/C++, Bug #432563]. * Eliminated ;" separator from end of tag line when no extension fields are present. * Fixed segmentation violation for some Lisp files [Lisp]. * Fixed segmentation violation occurring when file referenced in #line directive was from an unknown language. * Fixed loss of sync when parsing bit fields named with C++ reserved word [C]. * Fixed compilation problem on gcc-2.7.2. * Fixed problem parsing verbatim strings [Eiffel]. * Fixed problem with PHP references [PHP]. * Fixed handling of Perl __DATA__ sections [Perl]. * Fixed problem resulting from white space in tag name due to regex name specifier. * Fixed double reading of $HOME/.ctags when current directory is $HOME. * Fixed problem reading option configuration files using CR-LF newlines. * Fixed problem preventing output control over tag kinds of regex patterns [Bug #429869]
2001-11-12Darwin "support", by Yuji Yamano from pkg/14546.wiz1-3/+7
2001-11-11Update to version 0.2.4 (Required for Gnumeric 0.75)damon3-7/+7
Changelog: * libole2/ms-ole.c (ms_ole_open_vfs) : simplify. * libole2/ms-ole.c: first attempt at handling files that are not an integer number of 512-byte blocks. (ms_ole_open_vfs): Fix file leaks. Verify block sizes. (ms_ole_setup): Prepare the right number of blocks. (ms_ole_destroy): Plug leak. (ms_ole_lseek): Fix seek-from-end case. * libole2/ms-ole.c (ms_ole_stream_open) : Be more careful about where we are wiping. * libole2.spec.in: don't point at sgml files we don't install.
2001-11-11Adjust format a bit:hubertf1-0/+4
* 75 * '=' * RCS ID * blank line * message text * optional blank line * 75 * '='
2001-11-10Make sure the distfile can be fetched - set the PKGNAME var to ...nb1,agc1-2/+3
not the DISTNAME.
2001-11-09Update to ElectricFence 2.1nb1:hubertf4-7/+39
Fix this pkg to run on sparc64 (and probably some others), by changing the 2ns argument of mmap(2) from (int)size to size. Patches contributed by Volker Stolz <stolz@hyperion.informatik.rwth-aachen.de> in PR pkg/14493.
2001-11-03- Fix build failure - exposed after lastest modification ofseb8-147/+216
../../devel/gettext-lib/buildlink.mk - due to incorrect usage of @INTLIBS@ in Automake's prog_LDADD variable. Thanks Johnny Lam for hints and explanations! - While here get ride off build dependencies on auto* tools and GNU make by using a new set of patches and AUTOMAKE_OVERRIDE. Note: new Makefile.am files and hence their patches were generated with automake-1.1b! - sort PLIST and use same `install-info' arguments as those generated by `make print-PLIST'. - Fix broken dependencies when USE_XEMACS is defined.
2001-11-02Fix build error.kent1-1/+2
2001-11-01Move pkg/ files into package's toplevel directoryzuntum595-322/+322
2001-10-29Fix COMMENT, per PR 14395 by Greg A. Woods <woods@weird.com>hubertf1-2/+2
2001-10-29add and enable acmedillo1-1/+2
2001-10-29Initial import of acme 0.85, a cross assembler for 6052 and compatibles.dillo6-0/+130
2001-10-29Use AUTOMAKE_OVERRIDE instead of custom pre-configure target.seb1-9/+3
2001-10-29Update to 6.1.wiz2-5/+5
Changes since 5.8: + Added the module "Carp::Clan" to the distribution. + Splitted the Vector.pm module; separated XS and overloaded Perl part for improved performance (reduces loading time for XS part). + Corrected the handling of numerical overflow in arithmetic methods ("add()", "subtract()", "Multiply()", "from_Dec()", "new_Dec()"). + Methods "add()" and "subtract()" now return the carry as well as the overflow flag if called in list context (only the carry in scalar context, as before). + Added two new methods "inc()" and "dec()", which return the overflow flag (whereas "increment()" and "decrement()" return the carry flag). The new methods also allow to copy-and-increment/decrement in addition to in-place operation. + Methods "from_Dec()" and "new_Dec()" now allow you to enter large positive numbers which will have the MSB set (this was forbidden previously because these numbers are considered to be negative in two's complement binary representation). and some bugfixes and compatibility changes.
2001-10-26Define INTLLIBS to be the flags needed to link against libintl.a, and passjlam1-4/+6
${INTLLIBS} through to the configure environment. This should fix pkg/14360 (x11/gtk: gtk-config does not list "-lintl") by Jun-ichiro itojun Hagino <itojun@itojun.org>.
2001-10-26At present, if there is a pre-<target> or post-<target> script inagc1-5/+3
the scripts/ directory, it will be run automatically as part of the build process, by bsd.pkg.mk. There are now exactly 5 packages in pkgsrc which use this facility, and yet, for every package build, the existence of a script is checked by bsd.pkg.mk once before the target is executed, and once afterwards. This incurs needless overhead. Move the separate pre- and post- script handling out of bsd.pkg.mk into the individual package Makefiles, where it's much more obvious what is happening, anyway.
2001-10-26Fix a typo that has there for ages so that the previous fix for newskrll2-4/+4
toolchains actually works. I had reports that the problem that the definition of "output_verbose_link_cmd" was supposed to fix had indeed been fixed. (Never believe everything you read)
2001-10-26Fix ltcf-cxx.sh to work on -current/new toolchains. That is make sure thatskrll3-6/+6
/usr/lib/crtbeginS.o and /usr/lib/crtendS.o make it into {pre,post}dep_objects. Fixes pkg/14353 from Witold J. Wnuk <witek@pd37.warszawa.sdi.tpnet.pl> Tested as "still" working on 1.5.2. Bump minor number of pkg and make pkgsrc depend on this version.
2001-10-25Move the configuration stage from a separate script into the packageagc5-56/+42
Makefile, using the standard target. Add the required Makefile and Makefile.inc in a more standard way. Get rid of the now unnecessary configure script.
2001-10-25Fix typo that somehow crept in the last commit.jlam1-2/+2
2001-10-25Note package is strongly-buildlinked (trivially).jlam1-1/+2
2001-10-25Add buildlink.mk file for use by other package Makefiles.jlam1-0/+36
2001-10-24I am a triple idiot. The only relevant variable that x11.buildlink.mkjlam8-16/+16
redefines about which buildlink.mk files would care is BUILDLINK_X11_DIR, which points to the location of the X11R6 hierarchy used during building. If x11.buildlink.mk isn't included, then BUILDLINK_X11_DIR defaults to ${X11BASE} (set in bsd.pkg.mk), so its value is always safe to use. Remove the ifdefs surrounding the use of BUILDLINK_X11_DIR in tk/buildlink.mk and revert changes to move x11.buildlink.mk before the other buildlink.mk files.
2001-10-24Back out previous change. The problem noted in net/mtr should be fixed byjlam1-3/+3
the recent commits to bsd.buildlink.mk (1.46) and bsd.pkg.mk (1.828).
2001-10-24Two of the TRANSFORMs were round the wrong way in the "use curses" case -agc1-3/+3
when you encounter libncurses, turn it into libcurses, and likewise when you encounter ncurses.h, turn it into curses.h. Makes mtr work on a 1.5.2 shark.
2001-10-23Buildlinkify (trivially).jlam2-3/+50
2001-10-23x11.buildlink.mk needs to be included before any buildlink.mk files thatjlam8-16/+16
use X11_BUILDLINK_MK as a test value. Generally just reordering the inclusions so that x11.buildlink.mk comes before the other buildlink.mk files will make everthing work.
2001-10-23libsigc++ is in devel/, not textproc/ =)jlam1-2/+2
2001-10-21Mark USE_BUILDLINK_ONLY, and add buildlink.mk.wiz2-1/+52
Nearly as in pkg/14203 by Eric Gillespie, Jr.
2001-10-21Sync with PEACE repositry.kent9-53/+91
* Upgrade base distribution: w32api-0.4 -> w32api-1.1 * Create static libraries for UUID definitions. * Modify typedefs to avoid a bug of gcc.
2001-10-21Update to 2.1, requested in pkg/14264.wiz2-6/+6
Change: Remove work-arounds, most operating systems and C libraries have been fixed now.
2001-10-21Update to 7.0.2, provided by Ingolf Steinbach in pk/14296.wiz3-9/+7
Changes: - Fixed duplicate items when using Control-B1 to add items to the selection in the workdir browser. - Several bugfixes to the module browser. You can now have "&" composites at the end of a nested module without blowing it out of the graphical tree structure. Also fixed bugs in finding a module's title and choosing the right icon. - The ability to group alias modules in their own folder is back, but as an option cvscfg(aliasfolder). It defaults to true. - There's now an Options menu in the module browser to turn tracing on and off and temporarily change the display of alias modules. - New "File->Module File" item in the module browser menu displays the CVSROOT/modules file in a text window. - Do a "file join" on the CVSROOT variable to put it in the native path format. That helps with a PC and a Samba-mounted repository and doesn't seem to hurt anything else.
2001-10-21Install documentation, as prompted in pkg/14300 by Hiramatsu Yoshifumi,wiz2-2/+12
but done slightly differently.
2001-10-19Conform better to pkgsrc conventions.sjg1-5/+10
Reviewed: agc
2001-10-19Make the ${WRKSRC}/checks/stamp-checks writeable, otherwise a build wouldveego1-1/+4
fail on solaris.
2001-10-18Update to bmake-3.1.12sjg3-14/+14
Changes of note: synched with NetBSD make as of 2001/10/16 fix for bug in compat mode .END processing fix for bug in cleanup of jobs when using -jN addition of .USEBEFORE simpler bootstrap - compiles again on recent linux (Red Hat) The Makefile here now deals with the fact that we may not have installed a sys.mk in /usr/pkg/share/mk on BSD systems. Reviewed: agc
2001-10-18Update to current macros mk-1.2.5 (no the bsd* ones are still way old).sjg3-21/+35
Changes of note: Added target-flags.mk allows frobbing CFLAGS for individual targets. prog.mk and lib.mk attempt to use bsd.prog.mk and bsd.lib.mk to help ensure the right magic happens on ELF systems. Several improvments to autodep.mk - now the default unless NO_AUTODEP is defined. The bsd.*.mk files are no longer installed on BSD systems as they are almost guaranteed to do more harm than good. Reviewed: agc
2001-10-18SVR4 packages have a limit of 9 chars for a package name.veego50-50/+100
The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME.
2001-10-18Add and enable unidiffagc1-1/+2
2001-10-18Initial import of unidiff-1.0 into the NetBSD Packages Collection.agc4-0/+45
Unify will accept either a regular context diff (old- or new-style) or a unified context diff as input, and generate either a unified diff or a new-style context diff as output. The default is to output the opposite style of whatever was input, but this can be overridden by the -c or -u options. If the source file is not mentioned, it will be read from the standard input. Various other options allow you to echo the non-diff (comment) lines to stderr, modify the diff by removing the comment lines, and/or tweak the diff into a format that is good for releasing patches. Unipatch is a filter to turn a unified diff into a degenerate context diff (no '!'s) for patch. With thanks to Alan Barrett for the nudge.
2001-10-18Make this build.skrll4-42/+133
2001-10-17Add and enable javadeps.agc1-1/+2
2001-10-17Initial import of javadeps-1.1 into the NetBSD Packages Collection.agc5-0/+77
JavaDeps - Automatic Dependency Tracking for Java Tracking dependencies amongst a group of source files is always a chore. With Java it's even worse: source files may be mutually-dependent, and make doesn't deal with this situation at all! JavaDeps is a tool to generate dependency rules for Java sources, inspired by the "-MM" flag of gcc. This program analyzes a set of java source files, and outputs their dependencies, along with makefile rules to build the resulting classes. Provided in PR 14258 by Ben Wong (ben@wongs.net), munged around slightly by myself.
2001-10-17Sync package description with the current README. Most notably, remove therh1-7/+11
comments about GConf being incredibly alpha. Pointed out by Thomas Klausner <wiz@netbsd.org> in private mail.
2001-10-17This package (and all of coda) works on the arm32 (tested on a shark).phil1-2/+3
2001-10-16Note addition of php4-gmp.jlam1-1/+2
2001-10-16Find Makefile.module in ../../www/php4.jlam7-14/+14