7b57200a3d
OpenGGSN is an implementation of the Gateway GPRS Support Node element in the GPRS core network. OpenGGSN was developed in 2002 to 2004 by Mondru AB and was abandoned for some years before adopted by the Osmocom project. WWW: http://openbsc.osmocom.org/trac/wiki/OpenGGSN PR: 191876 Submitted by: koue@chaosophia.net (maintainer)
28 lines
737 B
Makefile
28 lines
737 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= openggsn
|
|
PORTVERSION= 0.91
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://chaosophia.net/downloads/osmocom/${PORTNAME}/ \
|
|
http://ns1.chaosophia.net/downloads/osmocom/${PORTNAME}/
|
|
|
|
MAINTAINER= koue@chaosophia.net
|
|
COMMENT= Implementation of the Gateway GPRS Support Node element
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gmake libtool
|
|
|
|
USE_AUTOTOOLS= aclocal autoconf automake libtoolize autoheader
|
|
AUTOMAKE_ARGS= --gnu --add-missing --copy
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|pkgconfigdir.*|pkgconfigdir = ${PREFIX}/libdata/pkgconfig|g' \
|
|
${WRKSRC}/Makefile.am
|
|
${ECHO_CMD} ${PORTVERSION} > ${WRKSRC}/.tarball-version
|
|
|
|
post-stage:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgtp.so.0
|
|
|
|
.include <bsd.port.mk>
|