blob: 8c94743129ed1f22d0db2d5ada6ef9ac8fc7e589 (
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
|
# New ports collection makefile for: glimpse
# Version required: 3.5
# Date created: 22 Dec 1995
# Whom: chuckr@glue.umd.edu
#
# $Id: Makefile,v 1.2 1996/02/29 06:22:46 markm Exp $
#
DISTNAME= glimpse-3.5.src
PKGNAME= glimpse-3.5
CATEGORIES+= misc
MASTER_SITES= ftp://ftp.cs.arizona.edu/glimpse/
EXTRACT_SUFX= .tar.Z
MAINTAINER= chuckr@glue.umd.edu
NO_CDROM= yes # Restrictive copyright (no commercial use)
GNU_CONFIGURE= yes
pre-configure:
chmod ugo+x ${WRKSRC}/configure
chmod ugo+x ${WRKSRC}/mkinstalldirs
post-install:
mkdir -p ${PREFIX}/share/doc/glimpse
cp ${WRKSRC}/COPYRIGHT ${PREFIX}/share/doc/glimpse
cp ${WRKSRC}/README ${PREFIX}/share/doc/glimpse
.if !defined(NOMANCOMPRESS)
for file in glimpse glimpseindex glimpseserver agrep; do \
gzip -9nf ${PREFIX}/man/man1/$$file.1; \
done
.endif
.include <bsd.port.mk>
|