forked from Lainports/freebsd-ports
brokers, Freenet6 uses an innovative model based on the TSP Client. The TSP Client is software that usually runs on a PC and that implements the Tunnel Setup Protocol (TSP). The TSP Client is used to automatically negotiate a configured tunnel between a PC or router and the Freenet6 tunnel broker, making IPv6 easy to install and maintain. The TSP Client source code is licensed under the GPL. A commercial license is also available. PR: ports/83260 Submitted by: Linas Valiukas <shirshegsm@gmail.com>
21 lines
645 B
Text
21 lines
645 B
Text
--- Makefile.old Wed Jul 14 21:08:03 2004
|
|
+++ Makefile Mon Jul 11 16:41:46 2005
|
|
@@ -71,13 +71,14 @@
|
|
|
|
@mkdir -p $(install_bin)
|
|
@$(COPY) bin/$(TSPC) $(install_bin)
|
|
- @$(COPY) bin/tspc.conf.sample $(install_bin)
|
|
|
|
- @if [ ! -f $(install_bin)/tspc.conf ]; then \
|
|
- $(COPY) $(install_bin)/tspc.conf.sample $(install_bin)/tspc.conf; \
|
|
+ @mkdir -p $(installdir)/etc
|
|
+ @$(COPY) bin/tspc.conf.sample $(installdir)/etc
|
|
+
|
|
+ @if [ ! -f $(installdir)/etc/tspc.conf ]; then \
|
|
+ $(COPY) $(installdir)/etc/tspc.conf.sample $(installdir)/etc/tspc.conf; \
|
|
fi
|
|
|
|
- @$(COPY) GPL_LICENSE.txt $(installdir)
|
|
|
|
clean: pre-checks
|
|
@for dir in ${subdirs}; do \
|