blob: 035a0ebdd0d7ad4fa43fd7dfeaded71ce12a54c2 (
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
48
49
50
51
52
53
54
55
56
|
# $NetBSD: Makefile.common,v 1.6 2001/03/11 04:32:16 hubertf Exp $
DISTNAME= lesstif-${LESSTIF_VERSION}
LESSTIF_VERSION= 0.92.6
CATEGORIES= x11
MASTER_SITES= ftp://ftp.hungry.com/pub/hungry/lesstif/srcdist/ \
ftp://ftp.unicamp.br/pub/X11/lesstif/srcdist/ \
ftp://ftp.kddlabs.co.jp/X11/lesstif/srcdist/ \
ftp://linux.mathematik.tu-darmstadt.de/pub/linux/mirrors/misc/lesstif/srcdist/ \
http://gd.tuwien.ac.at/hci/lesstif/srcdist/ \
http://www.damtp.cam.ac.uk/mirror/ftp.hungry.com/pub/hungry/lesstif/srcdist/
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.lesstif.org/
CONFLICTS+= openmotif-[0-9]*
BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf
BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake
USE_X11BASE= # defined
USE_GMAKE= # defined
USE_LIBTOOL= # defined
LTCONFIG_OVERRIDE+= ${WRKSRC}/ltconfig
LTCONFIG_OVERRIDE+= ${WRKSRC}/Xlt/ltconfig
LTCONFIG_OVERRIDE+= ${WRKSRC}/Xbae/ltconfig
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --enable-production --disable-debug --disable-verbose
CONFIGURE_ARGS+= --enable-editres --enable-xdnd
# The following forces the build process to use sed as the HTML-to-text
# converter.
#
CONFIGURE_ENV+= LYNX_CMD=${WRKDIR}/nonexecutable
CONFIGURE_ENV+= LINKS_CMD=${WRKDIR}/nonexecutable
FILESDIR= ${.CURDIR}/../../x11/lesstif/files
PATCHDIR= ${.CURDIR}/../../x11/lesstif/patches
post-extract:
cd ${WRKSRC}/lib/config; ${MV} host.def LessTif.def
pre-configure:
${TOUCH} ${WRKDIR}/nonexecutable
${CHMOD} a-x ${WRKDIR}/nonexecutable
for dir in . lib/Xlt lib/Xbae test ; do \
cd ${WRKSRC}/$$dir \
&& ${LOCALBASE}/bin/libtoolize --force \
&& ${LOCALBASE}/bin/aclocal \
&& ${LOCALBASE}/bin/autoheader \
&& ${LOCALBASE}/bin/automake -a -i \
&& ${LOCALBASE}/bin/autoconf; \
done
.include "../../mk/bsd.pkg.mk"
|