summaryrefslogtreecommitdiff
path: root/misc/getopt
AgeCommit message (Collapse)AuthorFilesLines
2014-12-01Update to 1.1.6:wiz2-11/+8
20141124: Bumped up version number to 1.1.6 20141124: Properly quote backslashes for tcsh 20141124: Detect ambiguous long options properly Thanks to Klaus Wulff <dinw.klswlff@dfgh.net> 20141123: Create test harnass and tests 20141122: Update translations (sync with util-linux (git 20141120)) 20141120: Update manual page (sync with util-linux (git 20141120)) 20141120: Minor code changes (sync with util-linux (git 20141120))
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2013-04-12try to clean up a bitdrochner4-33/+14
there is no point in using msgfmt if the result isn't installed
2013-04-12Added msgfmt to USE_TOOLS; added a patch to avoid getopt_long_only() on NetBSDadam3-3/+20
2013-04-11Changes 1.1.5:adam4-24/+22
Sync with util-linux 2.21. More translations. Fixed some build problems. No known bugs.
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2011-04-22recursive bump from gettext-lib shlib bump.obache1-1/+2
2010-01-30Added LICENSE information.heinz1-1/+2
2008-01-15Update to 1.1.4:wiz2-7/+6
20051107: Bumped up version number to 1.1.4 20051107: Makefile: package target 20051107: Changed email and website to current ones 20051107: Fixed a few typos in the manpage (sync with util-linux (2.12r)
2008-01-04Add DESTDIR support.obache1-3/+5
2008-01-04Update MASTER_SITES, noticed by Zafer Aydogan in private mail.obache1-3/+3
Also update HOMEPAGE.
2006-10-21Fixed PKGMANDIR.rillig1-3/+3
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-1/+2
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+2
2004-12-26Enable pkgviews installation.minskim1-1/+5
2004-12-26Initial import of getopt, a getopt(1) replacement supporting long options.wiz6-0/+114
Getopt(1) is a program to help shell scripts parse command-line parameters. It is for example included in the util-linux distribution (versions up to 2.7.1) for Linux. But, there were some problems with that getopt(1) implementation, as listed in the 'BUGS' section of its man-page: * Whatever getopt(3) has. * Arguments containing white space or imbedded shell metacharacters generally will not survive intact; this looks easy to fix but isn't. * The error message for an invalid option is identified as coming from getopt rather than from the shell procedure containing the invocation of getopt; this again is hard to fix. * The precise best way to use the set command to set the arguments without disrupting the value(s) of shell options varies from one shell version to another. Additionally, the example in the manual-page does not run correctly (at least not with any bash shell I have tried). This implementation of getopt(1) solves some of these problems, while still staying (for all practical purposes) completely compatible with other getopt(1) implementations. It has replaced the old util-linux version, but it should be useful for other Unixes too.