diff options
author | fredb <fredb> | 2000-08-06 01:19:21 +0000 |
---|---|---|
committer | fredb <fredb> | 2000-08-06 01:19:21 +0000 |
commit | 2f88201dffdd07435501659c22ee71e1e072807e (patch) | |
tree | 146bf4158c0ec4632d4d686c9c6278071a7837fc /www/arena | |
parent | 78f11da0904e38df83bb846a7de8002ab4ea4eb6 (diff) | |
download | pkgsrc-2f88201dffdd07435501659c22ee71e1e072807e.tar.gz |
Make this work with libwww-5.3.1. Note that the 'wwwconf.h' file has moved
(again) from ${LOCALBASE}/include to ${LOCALBASE}/include/w3c-libwww, so we
need to check both places.
Diffstat (limited to 'www/arena')
-rw-r--r-- | www/arena/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/www/arena/Makefile b/www/arena/Makefile index 3ddceff26af..7a5444237b5 100644 --- a/www/arena/Makefile +++ b/www/arena/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2000/07/31 04:14:10 jlam Exp $ +# $NetBSD: Makefile,v 1.26 2000/08/06 01:19:21 fredb Exp $ # FreeBSD Id: Makefile,v 1.10 1998/05/04 20:22:31 jseger Exp # @@ -13,13 +13,10 @@ HOMEPAGE= http://www.yggdrasil.com/Products/Arena/ BUILD_DEPENDS+= autoconf:../../devel/autoconf DEPENDS+= gettext>=0.10.35nb1:../../devel/gettext DEPENDS+= jpeg-6b:../../graphics/jpeg -DEPENDS+= libwww-5.2.8:../../www/libwww +DEPENDS+= libwww>=5.2.8:../../www/libwww DEPENDS+= png>=1.0.6:../../graphics/png DEPENDS+= xpm-3.4k:../../graphics/xpm -#XXX "black screen" fixed for 16-bit displays on mac68k, not verified on alpha. -#NOT_FOR_PLATFORM= *-*-alpha #Runs, displays black screen - GNU_CONFIGURE= yes MAKEFILE= makefile USE_GMAKE= yes @@ -37,7 +34,11 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include -I${WRKDI # Arena requires libwww's "config.h" header - it is installed as "wwwconf.h", # so make a symlink in ${WRKDIR} and add it to the -I list. pre-configure: - ${LN} -sf ${LOCALBASE}/include/w3c-libwww/wwwconf.h ${WRKDIR}/config.h + for c in ${LOCALBASE}/include/w3c-libwww/wwwconf.h ${LOCALBASE}/include/wwwconf.h; do \ + if [ -f $$c ]; then \ + ${LN} -sf $$c ${WRKDIR}/config.h; \ + fi; \ + done cd ${WRKSRC} && autoconf do-install: |