mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
37 lines
661 B
Makefile
37 lines
661 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= miniupnpc
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES?= net
|
|
MASTER_SITES= http://miniupnp.free.fr/files/
|
|
|
|
MAINTAINER?= dinoex@FreeBSD.org
|
|
COMMENT?= UPnP IGD client lightweight library
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES+= gmake
|
|
HAS_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_SCRIPT= updateminiupnpcstrings.sh
|
|
MAKE_ENV+= INSTALLPREFIX=${PREFIX}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CFLAGS+= -DDEBUG
|
|
.endif
|
|
|
|
.if ${SLAVE_PORT} == no
|
|
USE_RC_SUBR= miniupnpc
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/upnpc \
|
|
${STAGEDIR}${PREFIX}/lib/libminiupnpc.so.17
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|