blob: 4b92cbc725d702a4b9d89081a2a3de0eaf3fb6ef (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# New ports collection makefile for: silc toolkit
# Date created: Thu Nov 8 01:50:05 BRST 2001
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= silc
PORTVERSION= 0.6.1
CATEGORIES= devel net security
MASTER_SITES= http://www.silcnet.org/download/ \
ftp://ftp.silcnet.org/pub/silc/ \
http://ftp.silcnet.org/ \
http://munitions.vipul.net/software/mirrors/silc/ \
ftp://ftp.wiretapped.net/pub/security/network-security/silc/ \
http://www.au.silcnet.org/download/ \
ftp://ftp.au.silcnet.org/pub/silcnet/ \
http://www.planetmirror.com/pub/silcnet/ \
http://the.wiretapped.net/security/network-security/silc/ \
ftp://ftp.wiretapped.net/pub/security/network-security/silc/ \
http://www.no.silcnet.org/download/ \
ftp://ftp.no.silcnet.org/pub/silc/
PKGNAMESUFFIX= -toolkit
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
MAINTAINER= lioux@FreeBSD.org
LIB_DEPENDS= dotconf.0:${PORTSDIR}/devel/dotconf
RUN_DEPENDS= silc:${PORTSDIR}/net/silc-client
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GLIB= yes
CONFIGURE_ARGS= --with-silcd-config-file=${PREFIX}/etc/${PORTNAME} \
--with-docdir=share/doc/${PORTNAME}${PKGNAMESUFFIX} \
--with-etcdir=${PREFIX}/etc/${PORTNAME} \
--with-helpdir=share/${PORTNAME}${PKGNAMESUFFIX}/help \
--with-logsdir=${PORTNAME}/logs \
--with-simdir=libexec/${PORTNAME}/modules \
--includedir=${PREFIX}/include/${PORTNAME}
PLIST_SUB= INSTALL_DIR="${INSTALL_DIR}"
INSTALL_DIR?= ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755
.ifdef(WITHOUT_OPTIMIZED_ASM)
CONFIGURE_ARGS+= --disable-asm
.endif
.ifndef(WITH_PTHREADS)
CONFIGURE_ARGS+= --disable-threads
.else
CONFIGURE_ENV+= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS}"
.endif
pre-everything::
.ifndef(WITHOUT_OPTIMIZED_ASM)
@${ECHO_MSG} '===> Define WITHOUT_OPTIMIZED_ASM to disable assembler optimizations'
.endif
.ifndef(WITH_PTHREADS)
@${ECHO_MSG} '===> Define WITH_PTHREADS to enable pthreads support'
.endif
post-patch:
.ifdef(NOPORTDOCS)
@${PERL} -pi -ne 's|doc includes|includes|;s| doc-install| |; \
s|^.*-mkdir -p \$$\(docdir\).*$$||' ${WRKSRC}/Makefile.in
.endif
# ugly, ugly hack; for some reason (configure reason), this ports
# breaks if CONFIGURE_TARGET is given as an argument
do-configure:
@cd ${CONFIGURE_WRKSRC}; ${SETENV} ${CONFIGURE_ENV} \
./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS:S/${CONFIGURE_TARGET}//} \
--host=${CONFIGURE_TARGET}
pre-install:
@${RM} -Rf ${WRKSRC}/doc/examples/CVS
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
WITHOUT_OPTIMIZED_ASM= yes
.endif
.include <bsd.port.post.mk>
|