blob: 391bd90589c25c6887abb9ab65fefacc2f67b91c (
plain)
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
|
# New ports collection makefile for: gtic
# Date created: 22 August 1999
# Whom: Denis Shaposhnikov <dsh@vlink.ru>
#
# $FreeBSD$
#
PORTNAME= gtic
PORTVERSION= 1.3.b
CATEGORIES= net
MASTER_SITES= ftp://ftp.kspu.kr.ua/pub/unix/FIDO/gtic/ \
ftp://ftp.braz.ru/pub/fido/gtic/
DISTNAME= ${PORTNAME}-1.3b
MAINTAINER= dsh@vlink.ru
COMMENT= The GNU file forwarder (FSC-0087) for fidonet-like networks
MAKE_ENV+= DEFINES="${DEFINES}"
.if defined(WITH_AMIGA4D)
DEFINES+= -DAMIGA4D
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386" && ${ARCH} != "alpha"
BROKEN= "Does not compile on !i386 and !alpha"
.endif
do-install:
${MKDIR} ${PREFIX}/etc/gtic
.for i in areagroups areas config domains help users
${INSTALL_DATA} ${WRKSRC}/etc/${i} ${PREFIX}/etc/gtic/${i}.sample
.endfor
${INSTALL_PROGRAM} ${WRKSRC}/src/gtic ${PREFIX}/sbin/
.include <bsd.port.post.mk>
|