summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2001-06-22Fix typo.jlam1-2/+2
2001-06-21Mark as USE_BUILDLINK_ONLY.jlam1-2/+3
2001-06-21Mark as USE_BUILDLINK_ONLY.jlam1-5/+5
2001-06-20Remove libtool archive target and related variables -- buildlink.mk doesn'tjlam1-35/+1
like libtool archives.
2001-06-20Add a buildlink.mk file for libltdl.* for use by other package Makefiles.jlam1-0/+30
2001-06-20Mention that this is the development version.wiz2-2/+4
2001-06-20add and enable nasm-develwiz1-1/+2
2001-06-20Initial import of nasm-devel, development version of nasm.wiz7-0/+224
Provided by Hiramatsu Yoshifumi in pkg/13226, with slight changes by me.
2001-06-20Fix --mode=execute quoting problem.skrll3-6/+15
Bump to nb2. Fix has been sent to libtool maintainers.
2001-06-20Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. Alsojlam1-13/+12
use a slightly more general mechanism to replaces references to <curses.h> to <ncurses.h> in the source files.
2001-06-20Fix stupid change by package author that looked for files explicitly injlam3-1/+53
/usr/local/lib and that explicitly set LDFLAGS to nothing.
2001-06-19Mark as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-06-19Add a buildlink.mk file for use by other packages. This file links thejlam1-0/+78
ncurses libraries and headers into ${BUILDLINK_DIR}, or if a sufficiently advanced curses is available in-system, then it links the curses libraries and headers into ${BUILDLINK_DIR} with ncurses names. This allows us to consistently reference "ncurses" capability via <ncurses.h> and -lncurses.
2001-06-19Mark as USE_BUIDLINK_ONLY and remove -I$(includedir) from the headerjlam3-11/+19
search path.
2001-06-19Fix glibconfig.h to define the correct glib version number as well.jlam1-1/+17
2001-06-19Set GLIB_VERSION from the DISTNAME, not the PKGNAME, as the PKGNAME mayjlam1-2/+2
have an nbX suffix that we don't want.
2001-06-19Make sure that installed files announce the correct version number forjlam1-1/+19
the installed package. We patch the version info in the configure scripts to deal with shared library versioning, but we don't want those version numbers to leak into installed files. Fixes 1st part of pkg/12146 by Dan Winship <danw@ximian.com>.
2001-06-19Remove explicit inclusion of -I$(includedir) into CPPFLAGS and -L$(libdir)jlam7-1/+129
into LDFLAGS. This makes building of ncurses on a system already having ncurses installed possible. This is just another chapter of the continuing buildlink saga.
2001-06-19Mark as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-06-19Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY.jlam1-2/+4
2001-06-19Mark as USE_BUILDLINK_ONLY.jlam1-8/+7
2001-06-19Set USE_BUILDLINK_ONLY and remove unnecessary config.cache entry to preventjlam1-9/+7
detection of libncurses.
2001-06-19Set USE_BUILDLINK_ONLY and remove unnecessary config.cache entry to preventjlam1-8/+5
detection of libpthread.
2001-06-18Use zlib buildlink.mk for zlib dependency (from pkg/13217 by Stoned Elipot)jlam3-25/+9
and install locale files under PKGLOCALEDIR.
2001-06-18Mark these packages as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-06-18Add comment on why we depend on pth.jlam1-1/+2
2001-06-18Add libpthread.* to BUILDLINK_FILES, and create buildlink config wrappersjlam1-1/+12
for pth-config and pthread-config.
2001-06-18LIBS is automatically added to CONFIGURE_ENV if GNU_CONFIGURE is defined.jlam1-2/+1
2001-06-18Convert to use buildlink.mk files.jlam1-2/+4
2001-06-17Update package to version 3.1.10, sync-ing with NetBSD-current in one fellagc3-13/+13
swoop. Changes since previous version: Tue Jun 12 16:48:57 2001 Simon J. Gerraty <sjg@zen.quick.com.au> * var.c (Var_Set): Add 4th (flags) arg so VarLoopExpand can tell us not to export the iterator variable when using VAR_CMD context. Sun Jun 10 21:55:21 2001 Simon J. Gerraty <sjg@zen.quick.com.au> * job.c (Job_CatchChildren): don't call Job_CatchOutput() here, its the wrong "fix". Sat Jun 9 00:11:24 2001 Simon J. Gerraty <sjg@zen.quick.com.au> * Redesigned export of VAR_CMD's via MAKEFLAGS. We now simply append the variable names to .MAKEOVERRIDES, and handle duplicate suppression and quoting in ExportMAKEFLAGS using: ${.MAKEOVERRIDES:O:u:@v@$v=${$v:Q}@} Apart from fixing quoting bugs in previous version, this allows us to export vars to the environment by simply doing: .MAKEOVERRIDES+= PATH Merged again with NetBSD make, but the above is the only change. * configure.in: added --disable-pwd-override disable $PWD overriding getcwd() --disable-check-make-chdir disable make trying to guess when it should automatically cd ${.CURDIR} * Merge with NetBSD make, changes include: parse.c (ParseDoDependency): Spot that the syntax error is caused by an unresolved cvs/rcs conflict and say so. var.c: most of Var* functions now take a ctxt as 1st arg. now does variable substituion on rhs of sysv style modifiers. * var.c (Var_Set): exporting of command line variables (VAR_CMD) is now done here. We append the name='value' to .MAKEOVERRIDES rather than directly into MAKEFLAGS as this allows a Makefile to use .MAKEOVERRIDES= to disable this behaviour. GNU make uses a very similar mechanism. Note that in adding name='value' to .MAKEOVERRIDES we do the moral equivalent of: .MAKEOVERRIDES:= ${.MAKEOVERRIDES:Nname=*} name='val'
2001-06-17Update of ftnchek to 3.1.1jtb5-46/+62
Some new features in version 3.1: 1. Block structure of the program is now kept track of, and proper nesting of blocks is checked. 2. New check for modification of a DO index-variable within the range of the loop. 3. New option -style to allow extra-picky warnings about obsolescent or old-fashioned programming constructions. 4. Limited support for attribute-based type declarations (using ::). See the manual for limitations on the accepted syntax. Note that this new feature should be seen as a first step toward full support for Fortran 90 type declarations, but it is not there yet. The level of support may be sufficient for novice programmers, but it is not yet ready for serious use. 5. Some implementation changes were made for faster execution. The improvement in speed is greatest for small and medium-sized programs, which are now processed about 2 times faster. Bugs fixed in patch 1: 1. Erroneously reported "Block not closed when END statement encountered" at end of an unnamed block data subprogram. 2. Under -pretty=embedded-space, warned of embedded space between slashes in COMMON / / X, Y, Z
2001-06-17Update p5-Test-Cmd to 1.04zuntum2-5/+5
Changes: The run() method has been fixed so that it can be used to execute a subsidiary executable or script that's not in the same interpreted language as the script being tested.
2001-06-16Add buildlink.mk files for use by other packages.jlam1-0/+46
2001-06-16Override internal libtool with USE_LIBTOOL and LTCONFIG_OVERRIDE.wiz1-1/+3
2001-06-16Don't install m4 files; part of update to 0.10.35nb2.jlam1-4/+1
2001-06-16Update gettext to 0.10.35nb2. The only change is to factor out the m4jlam3-6/+8
files into a separate package, gettext-m4, and add a dependency on it.
2001-06-16Add and enable gettext-m4.jlam1-1/+2
2001-06-16gettext-m4: autoconf/automake m4 files for GNU NLS library split outjlam3-0/+32
from the gettext package
2001-06-15patch from Havard Eidnes: correct handling of "mode" argument todrochner2-7/+12
ensure_ep_open()
2001-06-15Use devel/pth/buildlink to get dependency, CPPFLAGS, and LDFLAGS for pth.jlam1-3/+3
2001-06-15buildlink.mk file for pth for use by other packagesjlam1-0/+33
2001-06-14Update libtool to a newer snapshot.skrll16-333/+79
Notable changes are: * Fix memory leak in libltdl * Handle large dependency_libs entries in .la files better * Integration of a lot of the NetBSD changes
2001-06-14Update to 1.5. (Incomplete, alas) changes:mjl5-51/+16
- heavy dose of const's - poptParseArgvString() now NULL terminates the list - added support for single - - misc bug fixes - portability improvements - fixed memset() in help message generation - added extern "C" stuff to popt.h for C++ compilers - const'ified poptParseArgvString - fixed bug in chaind alias happens which seems to have only affected --triggers in rpm - added POPT_ARG_VAL - popt.3 installed by default - added POPT_ARG_INTL_DOMAIN - updated Makefile's to be more GNUish
2001-06-13Update to 3.3skrll4-26/+52
This closes pkg/12893 from Martti Kuparinen <martti.kuparinen@iki.fi> Changes are - data themes - debugger interaction while the program is running - support for JDB 1.2 - several bug fixes More information is available at ftp://ftp.gnu.org/pub/gnu/ddd/NEWS
2001-06-13Add patches to Makefile.am and configure.in that mirror patches tojlam3-1/+30
Makefile.in and configure.
2001-06-12LIBS is automatically added to CONFIGURE_ENV by bsd.pkg.mk ifjlam1-2/+2
GNU_CONFIGURE is defined, so simply set LIBS to the appropriate value.
2001-06-12Update p5-Test-Cmd to 1.03zuntum2-5/+5
Changelog 1.03 Sat Jun 9 16:57:16 CDT 2001 - Make specification of an 'interpreter' to the run() method independent of whether a 'prog' has been specified. - Actually store the absolute path to a workdir specified as a relative path, as advertised. (Thanks to Jonathan Ross <Jonathan.C.Ross@fmr.com> for finding this bug and contributing a patch.) 1.02 - Small fix to make match() backwards compatible to Perl 5.003. - Add diff_exact() and diff_regex() methods for returning UNIX diff(1)-like output from file comparisons. - Accomodate $TMPDIR specifications that vary from Cwd::cwd() due to symbolic links or omission of NT drive letters.
2001-06-12Work arround for build problems under NetBSD-current. This fixestron2-1/+18
PR pkg/13171 by myself.
2001-06-11CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, sojlam20-42/+34
adapt by moving CPPFLAGS settings to top-level, and removing explicit inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-06-11Use bsd.buildlink.mk more fully.jlam1-62/+48