38 lines
868 B
Makefile
38 lines
868 B
Makefile
# 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>
|