blob: 7d23e5e0383c5ffa0ce98515bf0f069afe1749f2 (
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
|
# New ports collection makefile for: dancer-ircd
# Date Created: 14 April 2003
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= dancer-ircd
PORTVERSION= 1.0.32
CATEGORIES= irc ipv6
MASTER_SITES= http://freenode.net/ \
http://source.freenode.net/~asuffield/dancer/dancer-oper-guide/:doc1 \
http://source.freenode.net/~asuffield/dancer/dancer-user-guide/:doc2
MASTER_SITE_SUBDIR= ${PORTNAME}/stable/releases
DISTNAME= ${PORTNAME}-${PORTVERSION}+6p4
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
dancer-oper-guide.txt:doc1 \
dancer-user-guide.txt:doc2
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= knu@FreeBSD.org
COMMENT= An irc daemon based on hybrid ircd
IGNOREFILES= dancer-oper-guide.txt \
dancer-user-guide.txt
USE_REINPLACE= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
.if !defined(PACKAGE_BUILDING) && !defined(BATCH)
IS_INTERACTIVE= yes
.endif
post-patch:
${REINPLACE_CMD} 's:@@prefix@@:${PREFIX}:g' ${WRKSRC}/src/paths.c
pre-install:
@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
post-install:
${INSTALL} -d -m 700 -o ircd -g ircd \
${PREFIX}/etc/dancer-ircd \
/var/log/dancer-ircd \
/var/run/dancer-ircd
${INSTALL_DATA} ${WRKSRC}/doc/example.conf ${PREFIX}/etc/dancer-ircd/ircd.conf.sample
.for f in kline.conf dline.conf motd ohelp omotd
${TOUCH} ${PREFIX}/etc/dancer-ircd/${f}.sample
.endfor
.for f in ircd.conf kline.conf dline.conf motd ohelp omotd
if [ ! -f ${PREFIX}/etc/dancer-ircd/${f} ]; then \
${CP} ${PREFIX}/etc/dancer-ircd/${f}.sample ${PREFIX}/etc/dancer-ircd/${f}; \
fi
.endfor
${FIND} ${PREFIX}/etc/dancer-ircd -type d -print0 | \
${XARGS} -0 ${CHMOD} 700
${FIND} ${PREFIX}/etc/dancer-ircd -type f -print0 | \
${XARGS} -0 ${CHMOD} 600
${CHOWN} -R ircd:ircd ${PREFIX}/etc/dancer-ircd
${SED} -e "s,%PREFIX%,${PREFIX},g" ${FILESDIR}/dancer-ircd.sh \
> ${WRKDIR}/dancer-ircd.sh
${INSTALL_SCRIPT} ${WRKDIR}/dancer-ircd.sh ${PREFIX}/etc/rc.d/
${SED} -e "s,/usr/local/,${PREFIX}/,g" ${PKGMESSAGE}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} \
${DISTDIR}/${DIST_SUBDIR}/dancer-oper-guide.txt \
${DISTDIR}/${DIST_SUBDIR}/dancer-user-guide.txt \
${DOCSDIR}/
.endif
.include <bsd.port.mk>
|