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-06 01:34:31 +00:00
parent f342cf8307
commit c91917913e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=356729
2 changed files with 18 additions and 3 deletions

View File

@ -11,8 +11,6 @@ COMMENT= TCP connection forwarder
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
MAN8= jumpgate.8 PLIST_FILES= man/man8/jumpgate.8.gz sbin/jumpgate
PLIST_FILES= sbin/jumpgate
NO_STAGE= yes
.include <bsd.port.mk> .include <bsd.port.mk>

View File

@ -0,0 +1,17 @@
--- Makefile.in.orig 2014-06-06 09:30:37.782875595 +0800
+++ Makefile.in 2014-06-06 09:31:03.369876627 +0800
@@ -36,10 +36,10 @@ distclean:
rm -f Makefile config.cache config.log config.status config.h confdefs.h
install:
- $(INSTALL) -d $(install_prefix)$(sbindir)
- $(INSTALL_PROGRAM) -m 0755 jumpgate $(install_prefix)$(sbindir)
- $(INSTALL) -d $(install_prefix)$(mandir)/man8
- $(INSTALL_DATA) jumpgate.8 $(install_prefix)$(mandir)/man8
+ $(INSTALL) -d $(DESTDIR)$(install_prefix)$(sbindir)
+ $(INSTALL_PROGRAM) -m 0755 jumpgate $(DESTDIR)$(install_prefix)$(sbindir)
+ $(INSTALL) -d $(DESTDIR)$(install_prefix)$(mandir)/man8
+ $(INSTALL_DATA) jumpgate.8 $(DESTDIR)$(install_prefix)$(mandir)/man8
uninstall:
rm -f $(install_prefix)$(sbindir)/jumpgate