1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-06 11:41:52 +00:00

UltraGetopt is a versatile and customizable implementation of getopt() with

support for many common extensions, MS-DOS formatted option strings, and much
more.  It can function as a drop-in replacement for getopt() on systems with or
without existing vendor-provided implementations and also as a separate
co-existing function.

WWW: http://kevinlocke.name/programs/ultragetopt.php

PR:		ports/166288
Submitted by:	Timothy Beyer <beyert@cs.ucr.edu>
Approved by:	wen@ (mentor)
Feature safe:	yes
This commit is contained in:
Carlo Strub 2012-04-06 18:12:26 +00:00
parent 582adbdb84
commit e7521a8030
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=294304
4 changed files with 36 additions and 0 deletions

View File

@ -3970,6 +3970,7 @@
SUBDIR += ucommon
SUBDIR += ucpp
SUBDIR += udis86
SUBDIR += ultragetopt
SUBDIR += umem
SUBDIR += umlgraph
SUBDIR += universalindentgui

View File

@ -0,0 +1,26 @@
# New ports collection makefile for: ultragetopt
# Date created: 20 Mar 2012
# Whom: Timothy Beyer <beyert@cs.ucr.edu>
#
# $FreeBSD$
#
PORTNAME= ultragetopt
PORTVERSION= 0.6.0
CATEGORIES= devel
MASTER_SITES= http://kevinlocke.name/programs/ ${MASTER_SITE_LOCAL}
MAINTAINER= beyert@cs.ucr.edu
COMMENT= Versatile and customizable implementation of getopt()
LICENSE= MIT
USE_GMAKE= yes
GNU_CONFIGURE= yes
MAKE_ARGS= PREFIX="${PREFIX}"
USE_LDCONFIG= yes
PLIST_FILES= include/ultragetopt.h lib/libultragetopt.a \
lib/libultragetopt.la lib/libultragetopt.so \
lib/libultragetopt.so.0
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (ultragetopt-0.6.0.tar.gz) = d1fcddc07c04a1b5f0bb803eb9c3220ebc793a5b6674e9047217f09d152ea051
SIZE (ultragetopt-0.6.0.tar.gz) = 243465

View File

@ -0,0 +1,7 @@
UltraGetopt is a versatile and customizable implementation of getopt() with
support for many common extensions, MS-DOS formatted option strings, and much
more. It can function as a drop-in replacement for getopt() on systems with or
without existing vendor-provided implementations and also as a separate
co-existing function.
WWW: http://kevinlocke.name/programs/ultragetopt.php