blob: 58fb90eddbf5ee530de42ae031b4dd8da97f941c (
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
|
# New ports collection makefile for: gate
# Date created: 15 June 2000
# Whom: James Howard
#
# $FreeBSD$
#
PORTNAME= gate
PORTVERSION= 2.06
PORTREVISION= 1
CATEGORIES= editors
MASTER_SITES= http://www.unixpapa.com/software/
MAINTAINER= ports@FreeBSD.org
COMMENT= A simple and unobtrusive line-oriented text editor
BUILD_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
RUN_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-aspell=${LOCALBASE}/bin/aspell
ALL_TARGET= gate gate.1
MAN1= gate.1
post-patch:
@${REINPLACE_CMD} -e \
's|$${res_datadir}|${DATADIR}|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e \
's|^char \*malloc();||g' ${WRKSRC}/term.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/gate ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/gate.1 ${MANPREFIX}/man/man1
@${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/gate.help ${DATADIR}
.include <bsd.port.mk>
|