Update port to 1.0

PR:		17324
Submitted by:	Maintainer
This commit is contained in:
Chris D. Faulhaber 2000-03-21 00:25:33 +00:00
parent 1901efed8d
commit 0915e1328f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=26881
3 changed files with 12 additions and 28 deletions

View file

@ -6,7 +6,7 @@
# $FreeBSD$ # $FreeBSD$
# #
DISTNAME= hppsmtools-0.92 DISTNAME= hppsmtools-1.0
CATEGORIES= graphics CATEGORIES= graphics
MASTER_SITES= http://unimut.fsk.uni-heidelberg.de/unimut/photosmart/ \ MASTER_SITES= http://unimut.fsk.uni-heidelberg.de/unimut/photosmart/ \
http://www.freenix.no/~anders/ \ http://www.freenix.no/~anders/ \

View file

@ -1 +1 @@
MD5 (hppsmtools-0.92.tar.gz) = 2e24ddfd036ee02ca8cfbcde39526f41 MD5 (hppsmtools-1.0.tar.gz) = 5ff36dfa7f187ecd70d839870d9d1e79

View file

@ -1,28 +1,12 @@
--- Makefile.orig Sun Jan 30 17:23:28 2000 --- Makefile.orig Wed Mar 1 09:23:12 2000
+++ Makefile Sun Jan 30 17:24:52 2000 +++ Makefile Mon Mar 20 19:23:54 2000
@@ -7,21 +7,20 @@ @@ -6,8 +6,7 @@
# Set this to your liking
PREFIX=/usr/local
-COPTS=$(ADDIT_DEFS) -Wall -pedantic
-CC=gcc
+COPTS=$(ADDIT_DEFS) -Wall -pedantic $(CFLAGS)
COPTS=-g $(ADDIT_DEFS) -Wall FILES= psm.h psm.c \
-CC=gcc $(COPTS) exif.h exifparse.c \
.c.o:
- $(CC) -c $<
+ $(CC) $(COPTS) -c $<
DESTDIR=hppsmtools-$(PSM_VERSION)
psmget: psmget.o
- $(CC) psmget.o -o psmget
+ $(CC) $(COPTS) psmget.o -o psmget
psmget.o: psmget.c psmget.h
- $(CC) -c psmget.c -DPSM_VERSION=\"$(PSM_VERSION)\"
+ $(CC) $(COPTS) -c psmget.c -DPSM_VERSION=\"$(PSM_VERSION)\"
crcguess: crcguess.o crc32.o
- gcc crcguess.o crc32.o -o crcguess
+ $(CC) crcguess.o crc32.o -o crcguess
distri:
-mkdir $(DESTDIR)