blob: a97c18b13b6168850c4b920667c6326fc998a5b6 (
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
|
# New ports collection makefile for: mindguard
# Date created: 27 July 2000
# Whom: kris
#
# $FreeBSD$
#
PORTNAME= mindguard
PORTVERSION= 0.0.0.4
PORTREVISION= 4
CATEGORIES= games
MASTER_SITES= http://zapatopi.net/mindguard/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Helpful utility for detecting and jamming harmful mind-control rays
USE_GNOME= gtk12
ALL_TARGET= # empty
CARRIERS= antarctic.carrier belgian.carrier beta.carrier \
brother.carrier kpsi.carrier liberati.carrier \
reticulian.carrier russel.carrier tz8.carrier \
unmetric.carrier
DOCS= algorithms.html antarctic.html author.html \
biorhythm.html carriers.html cia.html \
depsych.html diagnostic.html failure.html \
fbi.html features.html fetus.html \
index.html install.html interface.html \
introduction.html jam.html kpsi.html \
lead.html liberati.html log.html \
mgjamtab.png mglogtab.png mgmisctab.png \
mgpl.html mgpsid.png mgwin.png \
numerology.html prefs.html psident.html \
quit.html reticulan.html russian.html \
scan.html simulacra.html style.css \
tikiroom.html un.html usage.html \
versions.html
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/mindguard ${PREFIX}/bin/mindguard
${MKDIR} ${PREFIX}/share/mindguard
.for i in ${CARRIERS}
${INSTALL_DATA} ${WRKSRC}/carriers/$i ${PREFIX}/share/mindguard
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/mindguard
.for i in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/docs/$i ${PREFIX}/share/doc/mindguard
.endfor
.endif
.include <bsd.port.mk>
|