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-23 15:07:02 +00:00
parent fff0f9fbe5
commit 5d40ea85c6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=358968
2 changed files with 16 additions and 6 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= simpleproxy
PORTVERSION= 3.4
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= SF
@ -11,11 +12,6 @@ COMMENT= Simple TCP proxy
GNU_CONFIGURE= yes
PLIST_FILES= bin/${PORTNAME}
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
.if !defined(NO_INSTALL_MANPAGES)
MAN1= simpleproxy.1
.endif
NO_STAGE= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,14 @@
--- Makefile.in.orig 2014-06-23 23:04:56.824141193 +0800
+++ Makefile.in 2014-06-23 23:05:12.570149447 +0800
@@ -31,9 +31,9 @@ distclean: clean
install: simpleproxy
$(top_srcdir)/mkinstalldirs $(bindir)
- $(INSTALL) simpleproxy $(bindir)
+ $(INSTALL) simpleproxy $(DESTDIR)$(bindir)
$(top_srcdir)/mkinstalldirs $(mandir)/man1
- $(INSTALL) simpleproxy.man $(mandir)/man1/simpleproxy.1
+ $(INSTALL) simpleproxy.man $(DESTDIR)$(mandir)/man1/simpleproxy.1
simpleproxy: simpleproxy.o cfg.o Makefile
$(CC) $(CFLAGS) -o simpleproxy simpleproxy.o cfg.o $(LIBS)