mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
This project is a deamon that emulates Microsoft's Internet Connection Service (ICS). It implements the UPnP Internet Gateway Device specification (IGD) and allows UPnP aware clients, such as MSN Messenger to work properly from behind a NAT firewall. PR: ports/41295 Submitted by: Yen-Ming Lee <leeym@utopia.leeym.com> Submitter sponsored by: Miss WeiWei.
22 lines
556 B
Text
22 lines
556 B
Text
--- Makefile.orig Thu May 2 23:53:12 2002
|
|
+++ Makefile Sat Aug 3 22:10:53 2002
|
|
@@ -1,6 +1,6 @@
|
|
CC=g++
|
|
-INCLUDES= -I/usr/include/upnp
|
|
-LIBS= -lpthread /usr/lib/libupnp.so
|
|
+INCLUDES= -I$(PREFIX)/include
|
|
+LIBS= $(PTHREAD_LIBS) $(PREFIX)/lib/libupnp.so
|
|
|
|
|
|
ifeq ($(DEBUG),1)
|
|
@@ -26,7 +26,7 @@
|
|
rm -f *.o $(APPS)
|
|
|
|
install: upnpd
|
|
- @install -d /etc/linuxigd
|
|
- @install etc/* /etc/linuxigd
|
|
- @install upnpd /usr/bin
|
|
+ @install -d $(PREFIX)/etc/linuxigd
|
|
+ @$(BSD_INSTALL_DATA) etc/* $(PREFIX)/etc/linuxigd
|
|
+ @$(BSD_INSTALL_PROGRAM) upnpd $(PREFIX)/bin
|
|
|