Index: head/devel/shflags/Makefile =================================================================== --- head/devel/shflags/Makefile (revision 391013) +++ head/devel/shflags/Makefile (revision 391014) @@ -1,19 +1,25 @@ # Created by: Yi-Jheng Lin # $FreeBSD$ PORTNAME= shflags PORTVERSION= 1.0.3 CATEGORIES= devel -MASTER_SITES= GOOGLE_CODE -EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Command-line flags module for Unix shell scripts +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/doc/LGPL-2.1 + +USE_GITHUB= yes +GH_ACCOUNT= kward + +NO_ARCH= yes NO_BUILD= yes + PLIST_FILES= lib/shflags do-install: ${INSTALL_DATA} ${WRKSRC}/src/shflags ${STAGEDIR}${PREFIX}/lib .include Index: head/devel/shflags/distinfo =================================================================== --- head/devel/shflags/distinfo (revision 391013) +++ head/devel/shflags/distinfo (revision 391014) @@ -1,2 +1,2 @@ -SHA256 (shflags-1.0.3.tgz) = 956a14771230760e24fa6ad5692bf858d1c9ee2d314320091fd045181cec8a22 -SIZE (shflags-1.0.3.tgz) = 43549 +SHA256 (kward-shflags-1.0.3_GH0.tar.gz) = ffc7eb68b583eba7eb468f7cd5d5f4174b7ad014e24aae2e43f8b5c2d0da0602 +SIZE (kward-shflags-1.0.3_GH0.tar.gz) = 43017 Index: head/devel/shflags/pkg-descr =================================================================== --- head/devel/shflags/pkg-descr (revision 391013) +++ head/devel/shflags/pkg-descr (revision 391014) @@ -1,12 +1,13 @@ -Shell Flags (shFlags) is a library written to greatly simplify the handling of -command-line flags in Bourne based Unix shell scripts (bash, dash, ksh, sh, -zsh) on many Unix OSes (Linux, Solaris, Mac OS X, etc.). +Shell Flags (shFlags) is a library written to greatly simplify the +handling of command-line flags in Bourne based Unix shell scripts (bash, +dash, ksh, sh, zsh) on many Unix OSes (Linux, Solaris, Mac OS X, etc.). -Most shell scripts use getopt for flags processing, but the different versions -of getopt on various OSes make writing portable shell scripts difficult. -shFlags instead provides an API that doesn't change across shell and OS -versions so the script writer can be confident that the script will work. +Most shell scripts use getopt for flags processing, but the different +versions of getopt on various OSes make writing portable shell scripts +difficult. shFlags instead provides an API that doesn't change across +shell and OS versions so the script writer can be confident that the +script will work. shFlags is a port of the google-gflags C++/Python library. -WWW: http://code.google.com/p/shflags/ +WWW: http://github.com/kward/shflags