ports/125527: [PATCH] net/miniupnpc: [update to 1.1-release]
Hung-Yi Chen
gaod at hychen.org
Sat Jul 12 03:20:03 UTC 2008
>Number: 125527
>Category: ports
>Synopsis: [PATCH] net/miniupnpc: [update to 1.1-release]
>Confidential: no
>Severity: non-critical
>Priority: medium
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: update
>Submitter-Id: current-users
>Arrival-Date: Sat Jul 12 03:20:01 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator: Hung-Yi Chen
>Release: FreeBSD 7.0-STABLE i386
>Organization:
>Environment:
System: FreeBSD gaod.tfcis.org 7.0-STABLE FreeBSD 7.0-STABLE #3: Sat Jun 21 10:26:39 CST 2008
>Description:
Update to 1.1-RELEASE.
(Please ignore the PR No.125521.)
>How-To-Repeat:
>Fix:
--- miniupnpc-1.1.shar begins here ---
# This is a shell archive. Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file". Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
# miniupnpc
# miniupnpc/Makefile
# miniupnpc/distinfo
# miniupnpc/pkg-descr
# miniupnpc/pkg-plist
# miniupnpc/files
# miniupnpc/files/patch-Makefile
#
echo c - miniupnpc
mkdir -p miniupnpc > /dev/null 2>&1
echo x - miniupnpc/Makefile
sed 's/^X//' >miniupnpc/Makefile << 'f3c72c173baa4a18a188cf448c54314b'
X# New ports collection makefile for: miniupnpc
X# Date created: 31 Oct 2007
X# Whom: dirk.meyer at dinoex.sub.org
X#
X# $FreeBSD$
X#
X
XPORTNAME= miniupnpc
XPORTVERSION= 1.1
XCATEGORIES= net
XMASTER_SITES= http://miniupnp.free.fr/files/
XDISTNAME= ${PORTNAME}-1.1
X
XMAINTAINER= dinoex at FreeBSD.org
XCOMMENT= UPnP IGD client lightweight library
X
XUSE_GMAKE= yes
XMAKE_ENV+= INSTALLPREFIX=${PREFIX}
XUSE_LDCONFIG= yes
X
XMAN3= miniupnpc.3
X
Xpost-configure:
X ${REINPLACE_CMD} -e 's|--mode=|-m |' -e 's|--symbolic|-s|' \
X -e 's| -Wall | -Wall -fPIC |' -e 's|--force|-f|' ${WRKSRC}/Makefile
X
X.include <bsd.port.mk>
f3c72c173baa4a18a188cf448c54314b
echo x - miniupnpc/distinfo
sed 's/^X//' >miniupnpc/distinfo << 'd8d066fc2702c3b7191eec0287c36aaf'
XMD5 (miniupnpc-1.1.tar.gz) = 297e3cec8385c3add27f196f2ba4430f
XSHA256 (miniupnpc-1.1.tar.gz) = 84dfaf6615f69d587e1362f931ae13108d48089c71697222aad44b46c311d1d1
XSIZE (miniupnpc-1.1.tar.gz) = 38235
d8d066fc2702c3b7191eec0287c36aaf
echo x - miniupnpc/pkg-descr
sed 's/^X//' >miniupnpc/pkg-descr << '2134afc641775e570273e4b6dddaccba'
XUPnP IGD client lightweight library
X
XThe usage of the miniUPnP client library is useful whenever an application
Xneeds to listen for incoming connections.
XExamples : P2P applications, FTP clients for active mode, IRC (for DCC)
Xor IM applications, network games, any server.
X
XWWW: http://miniupnp.free.fr/
2134afc641775e570273e4b6dddaccba
echo x - miniupnpc/pkg-plist
sed 's/^X//' >miniupnpc/pkg-plist << '41614124453455a2b51207867efd644c'
Xinclude/miniupnpc/igd_desc_parse.h
Xinclude/miniupnpc/miniupnpc.h
Xinclude/miniupnpc/miniwget.h
Xinclude/miniupnpc/upnpcommands.h
Xinclude/miniupnpc/upnpreplyparse.h
Xinclude/miniupnpc/upnperrors.h
Xlib/libminiupnpc.a
Xlib/libminiupnpc.so
Xlib/libminiupnpc.so.2
X at dirrm include/miniupnpc
41614124453455a2b51207867efd644c
echo c - miniupnpc/files
mkdir -p miniupnpc/files > /dev/null 2>&1
echo x - miniupnpc/files/patch-Makefile
sed 's/^X//' >miniupnpc/files/patch-Makefile << 'ec37b96134689657df5a8fc7e48946c7'
X--- Makefile.orig 2008-07-12 04:28:03.000000000 +0800
X+++ Makefile 2008-07-12 04:30:43.000000000 +0800
X@@ -35,6 +35,7 @@
X upnpreplyparse.h upnperrors.h
X LIBRARY = libminiupnpc.a
X SHAREDLIBRARY = libminiupnpc.so
X+MANPAGE = man3/miniupnpc.3
X SONAME = $(SHAREDLIBRARY).$(APIVERSION)
X EXECUTABLES = upnpc-static upnpc-shared \
X testminixml minixmlvalid testupnpreplyparse \
X@@ -44,6 +45,7 @@
X INSTALLDIRINC = $(INSTALLPREFIX)/include/miniupnpc
X INSTALLDIRLIB = $(INSTALLPREFIX)/lib
X INSTALLDIRBIN = $(INSTALLPREFIX)/bin
X+INSTALLDIRMAN = $(INSTALLPREFIX)/man
X
X .PHONY: install clean depend all installpythonmodule
X
X@@ -75,6 +77,7 @@
X $(INSTALL) -m 644 $(LIBRARY) $(INSTALLDIRLIB)
X $(INSTALL) -m 644 $(SHAREDLIBRARY) $(INSTALLDIRLIB)/$(SONAME)
X $(INSTALL) -m 755 upnpc-shared $(INSTALLDIRBIN)/upnpc
X+ $(INSTALL) -m 644 $(MANPAGE) $(INSTALLDIRMAN)/man3
X ln -fs $(SONAME) $(INSTALLDIRLIB)/$(SHAREDLIBRARY)
X
X cleaninstall:
ec37b96134689657df5a8fc7e48946c7
exit
--- miniupnpc-1.1.shar ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list