aboutsummaryrefslogtreecommitdiffstats
path: root/devel/silc-toolkit/Makefile
blob: e024f56c1a71e4ac852f768d21281bc8b51edf7c (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
# 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.9.3
CATEGORIES= devel ipv6 net security
MASTER_SITES=   http://www.silcnet.org/download/toolkit/sources/ \
        ftp://ftp.silcnet.org/silc/toolkit/sources/ \
        http://public.www.planetmirror.com/pub/silcnet/toolkit/sources/ \
        ftp://ftp.au.silcnet.org/pub/silcnet/toolkit/sources/ \
        http://www.mirrors.wiretapped.net/security/network-security/silc/toolkit/sources/ \
        ftp://ftp.mirrors.wiretapped.net/pub/security/network-security/silc/toolkit/sources/
PKGNAMESUFFIX=  -toolkit
DISTNAME=   ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}

MAINTAINER= lioux@FreeBSD.org
COMMENT=    Secure Internet Live Conferencing (SILC) development toolkit

RUN_DEPENDS=    silc:${PORTSDIR}/net/silc-client

USE_BZIP2=  yes
USE_PERL5=  yes
GNU_CONFIGURE=  yes
USE_GNOMENG=    yes
USE_GNOME=  glib12
CONFIGURE_ARGS= --with-silcd-config-file=${PREFIX}/etc/${PORTNAME} \
        --with-docdir=${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} \
        --with-etcdir=${PREFIX}/etc/${PORTNAME} \
        --with-helpdir=${PREFIX}/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

.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
    @${PERL} -pi -e 's|-O2||' ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}

pre-install:
    @${RM} -Rf ${WRKSRC}/doc/examples/CVS

.include <bsd.port.pre.mk>

.if ${ARCH} != "i386"
WITHOUT_OPTIMIZED_ASM=  yes
.endif

.if ${OSVERSION} >= 400014
CONFIGURE_ARGS+=    --enable-ipv6
.endif

.ifdef(WITHOUT_OPTIMIZED_ASM)
CONFIGURE_ARGS+=    --disable-asm
.endif

.include <bsd.port.post.mk>