blob: ae86e787e742037b2d0e1743e80ed3bf0e9f8ad5 (
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
34
35
|
# ex:ts=8
# Ports collection makefile for: tinc
# Date created: Jul 11, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= tinc
PORTVERSION= 1.0.13
CATEGORIES= security
MASTER_SITES= http://www.tinc-vpn.org/packages/ \
ftp://ftp.wiretapped.net/pub/security/network-security/tinc/ \
http://www.mirrors.wiretapped.net/security/network-security/tinc/
MAINTAINER= dinoex@FreeBSD.org
COMMENT= A Virtual Private Network (VPN) daemon
LIB_DEPENDS= lzo.1:${PORTSDIR}/archivers/lzo
LICENSE= GPLv3
USE_OPENSSL= yes
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --localstatedir=/var
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
USE_RC_SUBR= tincd.sh
MAN5= tinc.conf.5
MAN8= tincd.8
INFO= tinc
.include <bsd.port.mk>
|