1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
Approved by:	portmgr@
This commit is contained in:
Vanilla I. Shu 2014-06-20 08:45:05 +00:00
parent d0fb5d31da
commit 42ab8219e0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=358530
2 changed files with 22 additions and 6 deletions

View File

@ -12,9 +12,10 @@ MAINTAINER= jabley@automagic.org
COMMENT= Optimise a list of route prefixes to help make nice short filters
GNU_CONFIGURE= yes
USES= shebangfix
SHEBANG_FILES= aggregate-ios
PLIST_FILES= bin/aggregate bin/aggregate-ios
MAN1= aggregate.1 aggregate-ios.1
PLIST_FILES= bin/aggregate bin/aggregate-ios \
man/man1/aggregate.1.gz man/man1/aggregate-ios.1.gz
NO_STAGE= yes
.include <bsd.port.mk>

View File

@ -1,6 +1,6 @@
--- Makefile.in.orig Fri Nov 2 10:49:52 2001
+++ Makefile.in Fri Nov 2 12:04:11 2001
@@ -25,7 +25,6 @@
--- Makefile.in.orig 2002-03-07 00:59:37.000000000 +0800
+++ Makefile.in 2014-06-20 16:42:05.475964834 +0800
@@ -25,7 +25,6 @@ CC = @CC@
INSTALL = @INSTALL@
DEFS = @DEFS@
LIBS = @LIBS@
@ -8,3 +8,18 @@
LDFLAGS = -s
prefix = @prefix@
@@ -41,10 +40,10 @@ clean:
rm -f *.o
install: $(PROGS)
- $(INSTALL) -m 0755 aggregate $(prefix)/bin/
- $(INSTALL) -m 0644 aggregate.1 $(prefix)/man/man1/
- $(INSTALL) -m 0755 aggregate-ios $(prefix)/bin/
- $(INSTALL) -m 0644 aggregate-ios.1 $(prefix)/man/man1/
+ $(INSTALL) -m 0755 aggregate $(DESTDIR)$(prefix)/bin/
+ $(INSTALL) -m 0644 aggregate.1 $(DESTDIR)$(prefix)/man/man1/
+ $(INSTALL) -m 0755 aggregate-ios $(DESTDIR)$(prefix)/bin/
+ $(INSTALL) -m 0644 aggregate-ios.1 $(DESTDIR)$(prefix)/man/man1/
.c.o:
$(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) $<