summaryrefslogtreecommitdiff
path: root/devel/libgnugetopt
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2002-09-20 04:03:43 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2002-09-20 04:03:43 +0000
commitd6eb1f4d15e4985aa6eedec4d76c4c8142cddda7 (patch)
treeaa1cc69ca2608b25dd801e61789c83be5a6986d5 /devel/libgnugetopt
parentMake buildable on 4-STABLE. (diff)
Update to 1.2: using getopt from binutils 2.12.1/2.11.2
Notes
Notes: svn path=/head/; revision=66783
Diffstat (limited to 'devel/libgnugetopt')
-rw-r--r--devel/libgnugetopt/Makefile5
-rw-r--r--devel/libgnugetopt/distinfo2
-rw-r--r--devel/libgnugetopt/files/patch-Makefile19
3 files changed, 4 insertions, 22 deletions
diff --git a/devel/libgnugetopt/Makefile b/devel/libgnugetopt/Makefile
index cacc8aa841c8..074a1926b8eb 100644
--- a/devel/libgnugetopt/Makefile
+++ b/devel/libgnugetopt/Makefile
@@ -12,13 +12,14 @@
# distfile. -- David O'Brien <obrien@FreeBSD.org>
PORTNAME= libgnugetopt
-PORTVERSION= 1.1
+PORTVERSION= 1.2
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_LOCAL}
-MASTER_SITE_SUBDIR= obrien
+MASTER_SITE_SUBDIR= lioux
MAINTAINER= lioux@FreeBSD.org
+USE_BZIP2= yes
INSTALLS_SHLIB= yes
do-install:
diff --git a/devel/libgnugetopt/distinfo b/devel/libgnugetopt/distinfo
index 568bfe02ffa3..7dbef2cc6dc9 100644
--- a/devel/libgnugetopt/distinfo
+++ b/devel/libgnugetopt/distinfo
@@ -1 +1 @@
-MD5 (libgnugetopt-1.1.tar.gz) = 9b891a8b17a05448cddb134118d83281
+MD5 (libgnugetopt-1.2.tar.bz2) = 356d12620d006a71a307f339803a86a2
diff --git a/devel/libgnugetopt/files/patch-Makefile b/devel/libgnugetopt/files/patch-Makefile
deleted file mode 100644
index 8c82373f86a6..000000000000
--- a/devel/libgnugetopt/files/patch-Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
---- Makefile.orig Mon May 3 00:33:35 1999
-+++ Makefile Sun Mar 11 14:59:36 2001
-@@ -2,10 +2,15 @@
- # GNU getopt library
- #
-
--all: libgnugetopt.so.1
-+all: libgnugetopt.so.1 libgnugetopt.a
-
- libgnugetopt.so.1: getopt.o getopt1.o
- ${CC} ${CFLAGS} -shared -Wl,-soname,libgnugetopt.so.1 -o libgnugetopt.so.1 getopt.o getopt1.o
-+
-+libgnugetopt.a: getopt.o getopt1.o
-+ @echo building static libgnugetopt library
-+ ar cq libgnugetopt.a `lorder getopt.o getopt1.o | tsort -q`
-+ ranlib libgnugetopt.a
-
- getopt1.o: getopt1.c
- ${CC} ${CFLAGS} -fPIC -o getopt1.o -c -s getopt1.c