diff options
author | ade <ade@FreeBSD.org> | 2000-09-17 02:09:56 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-09-17 02:09:56 +0800 |
commit | fc1da69f5e31c186b829b4c1ac0e277d0844d679 (patch) | |
tree | 23cc5329731277ddd1bbaf527ebabd9a43f3572f /archivers/unace | |
parent | 22dcf1cdd695ce6185505bf3a193340ba784a2c3 (diff) | |
download | freebsd-ports-gnome-fc1da69f5e31c186b829b4c1ac0e277d0844d679.tar.gz freebsd-ports-gnome-fc1da69f5e31c186b829b4c1ac0e277d0844d679.tar.zst freebsd-ports-gnome-fc1da69f5e31c186b829b4c1ac0e277d0844d679.zip |
Use MASTER_SITE_SUNSITE to MASTER_SITES
Support CC properly
Update WWW: line of pkg/DESCR
PR: 21134
Submitted by: Ports Fury
Diffstat (limited to 'archivers/unace')
-rw-r--r-- | archivers/unace/Makefile | 11 | ||||
-rw-r--r-- | archivers/unace/distinfo | 2 | ||||
-rw-r--r-- | archivers/unace/files/patch-ab | 29 | ||||
-rw-r--r-- | archivers/unace/pkg-descr | 2 |
4 files changed, 34 insertions, 10 deletions
diff --git a/archivers/unace/Makefile b/archivers/unace/Makefile index cb8cc70edae6..e4eb7c331a42 100644 --- a/archivers/unace/Makefile +++ b/archivers/unace/Makefile @@ -9,18 +9,13 @@ PORTNAME= unace PORTVERSION= 1.2b CATEGORIES= archivers -MASTER_SITES= http://members.aol.com/mlemke6413/ -DISTNAME= unacepub +MASTER_SITES= ${MASTER_SITE_SUNSITE} +MASTER_SITE_SUBDIR= utils/compress MAINTAINER= jonny@jonny.eng.br -FETCH_BEFORE_ARGS= -t - -USE_ZIP= yes USE_GMAKE= yes -ALL_TARGET= unace -MAKEFILE= unix/makefile -NO_WRKSUBDIR= yes +ALL_TARGET= clean unace do-install: ${INSTALL_PROGRAM} ${WRKSRC}/unace ${PREFIX}/bin diff --git a/archivers/unace/distinfo b/archivers/unace/distinfo index f45c359acfa3..aed0c71673ed 100644 --- a/archivers/unace/distinfo +++ b/archivers/unace/distinfo @@ -1 +1 @@ -MD5 (unacepub.zip) = 1a73dda37e4d8d8ef70f27a858e32a55 +MD5 (unace-1.2b.tar.gz) = da2b8d1bc4338ba14e11a682dde859a6 diff --git a/archivers/unace/files/patch-ab b/archivers/unace/files/patch-ab new file mode 100644 index 000000000000..8a6189c0a6bc --- /dev/null +++ b/archivers/unace/files/patch-ab @@ -0,0 +1,29 @@ +--- Makefile.orig Wed May 12 16:10:27 1999 ++++ Makefile Tue Aug 22 02:20:26 2000 +@@ -13,14 +13,14 @@ + #CFLAGS = -dNOSTRICMP #for UNIX compilers not supporting stricmp() + #CFLAGS = -dHI_LO_BYTE_ORDER #select correct byte order for your machine!! + +-#CFLAGS = -Wall -O3 -s #-DNDEBUG ++CFLAGS += -DNDEBUG + #CFLAGS = -g -Wall -DMDEBUG +-CFLAGS = -O3 -fno-strength-reduce -fomit-frame-pointer # These are for Linux ++#CFLAGS = -O3 -fno-strength-reduce -fomit-frame-pointer # These are for Linux + #CFLAGS = -O -g -Wall -dLO_HI_BYTE_ORDER + CHALLOC = challoc.o + CHALLOC = + CHNEW = chnew.o challoc.o +-CC = gcc ++CC ?= gcc + + ifeq ($(OSTYPE), Linux) + CFLAGS += -DUNIX -DCASEINSENSE +@@ -38,7 +38,7 @@ + + + unace$(EXEEXT): $(OBJ) $(CHALLOC) +- gcc $(CFLAGS) -o $@ $^ $(LIBS) ++ $(CC) $(CFLAGS) -o $@ $^ $(LIBS) + + clean: + rm -f *.o a.out core unace unace.exe diff --git a/archivers/unace/pkg-descr b/archivers/unace/pkg-descr index 85dbd554560c..16cbe2c2660c 100644 --- a/archivers/unace/pkg-descr +++ b/archivers/unace/pkg-descr @@ -1,5 +1,5 @@ This is a port of a (un)archiver which deals with ACE archives. -WWW: http://members.aol.com/mlemke6413/ace.html +WWW: http://www.winace.com/ - Joao Carlos Mendes Luis <jonny@jonny.eng.br> |