1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00
Approved by:	portmgr@
This commit is contained in:
Vanilla I. Shu 2014-06-19 15:52:28 +00:00
parent 52c6ba061f
commit 65ef55a95f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=358434
2 changed files with 13 additions and 7 deletions

View File

@ -9,9 +9,6 @@ MASTER_SITES= http://www.nesbitt.ca/downloads/loop/
MAINTAINER= freebsd@nesbitt.ca
COMMENT= Prints to stdout a series of numbers from `start' to `end'
MAN1= loop.1
MANCOMPRESSED= yes
PLIST_FILES= bin/loop
PLIST_FILES= bin/loop man/man1/loop.1.gz
NO_STAGE= yes
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- Makefile.orig Wed Nov 2 01:23:17 2005
+++ Makefile Wed Nov 2 01:18:17 2005
--- Makefile.orig 2005-11-02 16:44:21.000000000 +0800
+++ Makefile 2014-06-19 23:50:39.847155161 +0800
@@ -1,7 +1,7 @@
-CC = gcc
@ -7,7 +7,16 @@
-DESTDIR = /usr/local
+CC ?= gcc
+CFLAGS += -Wall
+DESTDIR = ${PREFIX}
+#DESTDIR = ${PREFIX}
loop:
${CC} ${CFLAGS} -o loop loop.c
@@ -17,6 +17,6 @@ clean:
rm -f loop loop.1.gz
install: loop man
- install loop ${DESTDIR}/bin
- install loop.1.gz $(DESTDIR)/man/man1
+ install loop $(DESTDIR)${PREFIX}/bin
+ install loop.1.gz $(DESTDIR)${PREFIX}/man/man1