blob: 6aee3493f7c7dd458367ccb51561789ef7bdca64 (
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
|
# New ports collection makefile for: glimpse
# Version required: 3.6
# Date created: 25 August 1996
# Whom: chuckr@freebsd.org
#
# $Id: Makefile,v 1.5 1996/08/26 02:14:25 chuckr Exp $
#
DISTNAME= glimpse-3.6.src
PKGNAME= glimpse-3.6
CATEGORIES= misc
MASTER_SITES= ftp://ftp.cs.arizona.edu/glimpse/
EXTRACT_SUFX= .tar.Z
MAINTAINER= chuckr@freebsd.org
NO_CDROM= yes # Restrictive copyright (don't sell for profit)
GNU_CONFIGURE= yes
pre-configure:
chmod ugo+x ${WRKSRC}/configure
post-install:
mkdir -p ${PREFIX}/share/doc/glimpse
${INSTALL_DATA} ${WRKSRC}/COPYRIGHT ${PREFIX}/share/doc/glimpse
${INSTALL_DATA} ${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>
|