forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
45 lines (36 loc) · 1.25 KB
/
Makefile
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
# Created by: A. Gabriel <[email protected]>
# $FreeBSD$
PORTNAME= darkbot
PORTVERSION= 6f6.r6
PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= irc
MASTER_SITES= http://darkbot.sourceforge.net/archive/unix/ \
http://www.BSDCode.org/port/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/}
MAINTAINER= [email protected]
COMMENT= IRC talking bot with a fast algorithm for its database
SUB_FILES= pkg-message
PORTDOCS= README
NO_CDROM= no commercial distribution
OPTIONS_DEFINE= DOCS
pre-configure:
${CP} ${WRKSRC}/configure ${WRKSRC}/config
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.gz ${STAGEDIR}${MAN1PREFIX}/man/man1/
${MKDIR} ${STAGEDIR}${ETCDIR}/dat ${STAGEDIR}${ETCDIR}/logs
${TOUCH} ${STAGEDIR}${ETCDIR}/logs/.pkgcreate
cd ${WRKSRC}/dat; \
for file in *; do \
${INSTALL_DATA} $$file ${STAGEDIR}${ETCDIR}/dat/$${file}.dist; \
done
${ECHO_CMD} '#!/bin/sh' > ${WRKSRC}/configure
${ECHO_CMD} 'cd ${ETCDIR} && ${SH} config' >> ${WRKSRC}/configure
.for s in config configure AddServer Adduser
${INSTALL_SCRIPT} ${WRKSRC}/$s ${STAGEDIR}${ETCDIR}
.endfor
do-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/docs/README ${STAGEDIR}${DOCSDIR}/
.include <bsd.port.mk>