Use MASTER_SITE_SUNSITE to MASTER_SITES

Support CC properly
Update WWW: line of pkg/DESCR

PR:		21134
Submitted by:	Ports Fury
This commit is contained in:
Ade Lovett 2000-09-16 18:09:56 +00:00
parent b5e4b159e2
commit 11ea1550f5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32713
4 changed files with 34 additions and 10 deletions

View File

@ -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

View File

@ -1 +1 @@
MD5 (unacepub.zip) = 1a73dda37e4d8d8ef70f27a858e32a55
MD5 (unace-1.2b.tar.gz) = da2b8d1bc4338ba14e11a682dde859a6

View File

@ -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

View File

@ -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>