blob: 0291cb4d501f8be5c6ae9403bbaa6094f6fb4c20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: stund
# Date created: 9 April 2004
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= stund
PORTVERSION= 0.92
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= stun
DISTNAME= ${PORTNAME}_${PORTVERSION}_Jun06
EXTRACT_SUFX= .tgz
MAINTAINER= sobomax@FreeBSD.org
COMMENT= A simple STUN (RFC 3489) server and client
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_GMAKE= yes
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
BROKEN= "Does not compile on !i386"
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/server ${LOCALBASE}/sbin/stund
${INSTALL_PROGRAM} ${WRKSRC}/client ${LOCALBASE}/bin/stun_client
.include <bsd.port.post.mk>
|