blob: f02eded383ae8c329b5ba1022ddefd358e21aa57 (
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
|
# $NetBSD: Makefile,v 1.22 2000/01/20 08:43:57 agc Exp $
# FreeBSD Id: Makefile,v 1.13 1997/09/06 19:58:03 gj Exp
#
DISTNAME= vile-9.0
PKGNAME= xvile-9.0
CATEGORIES= editors
MASTER_SITES= ftp://ftp.clark.net/pub/dickey/vile/ \
ftp://ftp.uni-trier.de/pub/unix/editor/vile/ \
ftp://ftp.phred.org/pub/vile/
EXTRACT_SUFX= .tgz
MAINTAINER= packages@netbsd.org
DEPENDS+= xpm-3.4k:../../graphics/xpm
USE_X11BASE= yes
GNU_CONFIGURE= yes
USE_PERL5= yes
USE_XAW= yes
MAKEFILE= makefile
CONFIGURE_ARGS+= --with-screen=Xaw --with-xpm --with-perl --with-lib-dir=${X11BASE}/libexec
INSTALL_TARGET= install install-perl
post-install:
-@${MKDIR} -p ${PREFIX}/share/examples/xvile
@for f in filters/spell.rc filters/filters.rc \
macros/digraphs.rc macros/pictmode.rc \
macros/manpage.rc visvile/visvile.rc; do \
${BSD_INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/examples/xvile; \
done
.include "../../mk/bsd.pkg.mk"
|