e7521a8030
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
26 lines
632 B
Makefile
26 lines
632 B
Makefile
# 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>
|