summaryrefslogtreecommitdiff
path: root/devel/id-utils
AgeCommit message (Collapse)AuthorFilesLines
2006-06-09move Makefile .SUFFIXES statement before pattern rules which use itdbj3-8/+44
this fixes compile problems on darwin. This could have been alternately fixed by setting USE_TOOLS+=gmake instead
2006-04-17Strip ${PKGLOCALEDIR} from PLISTs of packages that already obeyjlam1-3/+3
PKGLOCALEDIR and which install their locale files directly under ${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries. From now on, pkgsrc/mk/plist/plist-locale.awk will automatically handle transforming the PLIST to refer to the correct locale directory.
2006-04-13BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace withjlam1-2/+2
USE_TOOLS+=msgfmt.
2006-04-08* Don't byte-compile the *.el files... just install them.jlam6-201/+20
* Note conflict with coreutils (gid). * List the info files directly in the PLIST. Bump the PKGREVISION to 9.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2005-12-08Bumped the PKGREVISION of the packages that have been broken by the recentrillig1-2/+2
"pkglint --autofix" change.
2005-12-08Fixed improper use of '@comment ' in the LISPDIR and CLISPDIR variables.rillig1-8/+5
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-7/+7
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-10-31bump PKGSREVISION for root inode search bugfix in patch-asdbj1-2/+2
2005-10-31fix logic error when searching for the root inodedbj2-1/+15
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-24Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to bewiz1-3/+1
useful.
2005-02-23Add RMD160 digests.agc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-04-27Convert to buildlink3.snj1-3/+3
2004-02-16Remove info files entries from PLIST.seb1-2/+1
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-2/+2
2003-06-23Convert to USE_NEW_TEXINFO.seb2-5/+3
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-02-26Lately, sh-utils might be installing a gid executable again, so addwiz1-1/+3
a CONFLICTS line for it here. (hi grant!)
2003-01-08#include statements in asm files that did not match the form:thorpej4-219/+222
#include "foo.h" ..or.. #include <foo.h> would cause mkid to happily loop forever. Fix this, making the scanner properly detect EOL/EOF and defined name tokens in #include statements, as well. Merge all libidu/scanners.c patches into a single patch file. Bump package revision to nb3.
2002-11-30USE_PKGLOCALEDIR, remove unnecessary patches, delint.salo1-1/+3
2002-10-13buildlink1 -> buildlink2.wiz1-3/+3
2002-06-21+ In assert_writeable(), don't depend upon dirname(3) not modifying thelukem3-9/+31
argument; POSIX allows this, even though the replacement lib/dirname.c (from glibc?) returns a strndup-ed strings *except* for the "." case. [mmm, possible memory leaks]. Instead, just implement most of guts of lib/dirname.c directly in assert_writeable(), always copy string, and always free it. This fixes ``mkid -f /some/path/to/id'' + Crank PKGREVISION.
2002-04-03don't limit symbol length to BUFSIZ, and similarly don't limit lidjoda3-1/+259
line length to BUFSIZ; it should now be possible to index the mozilla source
2002-03-01Make last more pkglint-friendly.wiz1-3/+2
2002-03-01Make this a nb1 versionjmc1-1/+3
2002-03-01Change some of the short's to ints and extend the hash table size so /usr/src isjmc4-1/+63
indexable again.
2002-02-27get rid of the last few evil calls to alloca;joda3-6/+123
this fixes some stack overflow segfaults
2002-02-18Introduce new framework for handling info files generation and installation.seb2-4/+5
Summary of changes: - removal of USE_GTEXINFO - addition of mk/texinfo.mk - inclusion of this file in package Makefiles requiring it - `install-info' substituted by `${INSTALL_INFO}' in PLISTs - tuning of mk/bsd.pkg.mk: removal of USE_GTEXINFO INSTALL_INFO added to PLIST_SUBST `${INSTALL_INFO}' replace `install-info' in target rules print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info' - a couple of new patch files added for a handful of packages - setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it - devel/cssc marked requiring texinfo 4.0 - a couple of packages Makefiles were tuned with respect of INFO_FILES and makeinfo command usage See -newly added by this commit- section 10.24 of Packages.txt for further information.
2002-01-31eat more asm and c++ files. *chomp* *chomp*mrg2-7/+11
2001-12-04By default, prevent invocation of GNU "auto*" driven by the generatedjlam1-2/+1
Makefiles during the build process by touching various auto{conf,make} source files to make them up-to-date. Packages that require regenerating the configure script and Makefile.in files should make the appropriate calls to auto{conf,make} in a pre-configure target. This allows the various targets listed in ${_CONFIG_PREREQ} to modify the generated files without triggering the GNU auto* tools and having the modifications be overwritten.
2001-11-22Since we're not depending on autoconf/-make anymore, we don't need gettext'swiz1-2/+1
m4 file, either. Remove BUILD_USES_GETTEXT_M4.
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-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-03Make sure the PLIST is correct when not using emacs or xemacs.agc1-3/+4
2001-09-27Mechanical changes to 375 files to change dependency patterns of the formjlam1-4/+4
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this.
2001-09-19remove unnecessary alloca's; quash one buffer overrunjoda4-1/+94
2001-08-04Some fixes provided by Stoned Elipot in pkg/13340:wiz7-6/+189
. Use ${PKGLOCALEDIR} instead of share . No more additional files installed depending on whether {x}emacs is installed or not -- define USE_EMACS or USE_XEMACS if you want to have .elc files installed. . buildlinkify
2001-05-17Lose leading '(The|the) ' from COMMENTabs1-2/+2
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-9/+7
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-27Change BUILD_DEPENDS semantics:hubertf1-2/+2
first component is now a package name+version/pattern, no more executable/patchname/whatnot. While there, introduce BUILD_USES_MSGFMT as shorthand to pull in devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current). Patch by Alistair Crooks <agc@netbsd.org>
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-11-02add USE_LIBINTL, and BUILD_DEPENDS to devel/gettext.itojun1-1/+4
2000-08-22patch-adjoda1-1/+2
2000-08-22use local buffer in fnid instead of allocating lots of memoryjoda1-0/+13