From d6eb1f4d15e4985aa6eedec4d76c4c8142cddda7 Mon Sep 17 00:00:00 2001 From: Mario Sergio Fujikawa Ferreira Date: Fri, 20 Sep 2002 04:03:43 +0000 Subject: [PATCH] Update to 1.2: using getopt from binutils 2.12.1/2.11.2 --- devel/libgnugetopt/Makefile | 5 +++-- devel/libgnugetopt/distinfo | 2 +- devel/libgnugetopt/files/patch-Makefile | 19 ------------------- 3 files changed, 4 insertions(+), 22 deletions(-) delete mode 100644 devel/libgnugetopt/files/patch-Makefile 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 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