blob: ab5a316377d775489fbe7666ce352dae04d143a9 (
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
|
# New ports collection makefile for: isearch
# Date created: 21 Sept 1996
# Whom: Pedro
#
# $FreeBSD$
#
PORTNAME= isearch
PORTVERSION= 1.47.01
CATEGORIES= textproc databases
MASTER_SITES= http://www.etymon.com/pub/Isearch/
DISTNAME= Isearch-${PORTVERSION}
MAINTAINER= pmarquis@pobox.com
GNU_CONFIGURE= yes
MAKE_ARGS= INSTALL=${PREFIX}/bin
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 500035
BROKEN= "Does not compile on 5.0"
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/html/*.html ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|