blob: 8e114f7726c3ad004ce681edec0c14f455162e25 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# $NetBSD: Makefile,v 1.10 2003/07/13 13:53:52 wiz Exp $
#
DISTNAME= wml-2.0.3
PKGREVISION= 1
CATEGORIES= www perl5
MASTER_SITES= http://www.engelschall.com/sw/wml/distrib/
MAINTAINER= kim@tac.nyc.ny.us
HOMEPAGE= http://www.engelschall.com/sw/wml/
COMMENT= Web Meta Language
DEPENDS+= p5-Bit-Vector>=5.2:../../devel/p5-Bit-Vector
DEPENDS+= p5-File-PathConvert-[0-9]*:../../devel/p5-File-PathConvert
DEPENDS+= p5-Image-Size>=2.6:../../graphics/p5-Image-Size
DEPENDS+= p5-Term-ReadKey>=2.11:../../devel/p5-Term-ReadKey
#DEPENDS+= tidy-[0-9]*:../../www/tidy
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-perl=${PERL5} \
--with-incdir=${BUILDLINK_PREFIX.ncurses}/include \
--with-libdir=${BUILDLINK_PREFIX.ncurses}/lib \
--with-openworld \
--with-tidy=${LOCALBASE}/bin/tidy
USE_BUILDLINK2= yes
TEST_TARGET= test
USE_NCURSES= # redrawwin()
post-install:
cd ${PREFIX}/man/cat1 ; \
for i in wml_aux_linklint wml_aux_tidy wml_aux_txt2html wml_p4_gm4 ; \
do \
${MV} $${i}.1 $${i}.0 ; \
done
cd ${PREFIX}/man/cat7 ; \
for i in wml_barebone wml_std_css1 wml_std_css2 wml_std_csspos \
wml_std_html20 wml_std_html32 wml_std_html40 wml_std_html401 \
wml_std_wai10 wml_std_xhtml10 ; \
do \
${MV} $${i}.7 $${i}.0 ; \
done
.include "../../devel/ncurses/buildlink2.mk"
.include "../../lang/perl5/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|