summaryrefslogtreecommitdiff
path: root/misc/par/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'misc/par/Makefile')
-rw-r--r--misc/par/Makefile74
1 files changed, 74 insertions, 0 deletions
diff --git a/misc/par/Makefile b/misc/par/Makefile
new file mode 100644
index 00000000000..1e3912e5614
--- /dev/null
+++ b/misc/par/Makefile
@@ -0,0 +1,74 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/01/04 19:53:04 fredb Exp $
+
+DISTNAME= arena-0.3.62
+PKGNAME= arena-0.3.62nb1
+WRKSRC= ${WRKDIR}/Arena-0.3.62
+CATEGORIES= www
+MASTER_SITES= ftp://ftp.yggdrasil.com/pub/dist/web/arena/
+
+MAINTAINER= tv@netbsd.org
+HOMEPAGE= http://www.yggdrasil.com/Products/Arena/
+COMMENT= Experimental HTML 3 browser, supports math and style sheets
+
+BUILD_DEPENDS+= autoconf>=2.13:../../devel/autoconf
+DEPENDS+= jpeg-6b:../../graphics/jpeg
+DEPENDS+= libwww>=5.3.2nb1:../../www/libwww
+DEPENDS+= png>=1.0.11:../../graphics/png
+
+BUILD_USES_MSGFMT= YES
+GNU_CONFIGURE= YES
+USE_GMAKE= YES
+USE_LIBINTL= YES
+USE_X11= YES
+USE_XPM= YES
+
+# Comment out the following to build in the debugging symbols.
+CONFIGURE_ARGS+= --without-debug
+
+CONFIGURE_ARGS+= --with-arenarc-dir=${LOCALBASE}/etc
+CONFIGURE_ARGS+= --with-libwww-config-h-dir=${WRKDIR}
+CONFIGURE_ARGS+= --with-libwww-include=${LOCALBASE}/include/w3c-libwww
+CONFIGURE_ARGS+= --with-libwww-libdir=${LOCALBASE}/lib
+
+CPPFLAGS+= -I${LOCALBASE}/include -I${X11BASE}/include
+MAKEFILE= makefile
+
+# Arena requires libwww's "config.h" header - it is installed as "wwwconf.h",
+# so make a symlink in ${WRKSRC}
+pre-configure:
+ for c in ${LOCALBASE}/include/w3c-libwww/wwwconf.h \
+ ${LOCALBASE}/include/wwwconf.h; do \
+ if [ -f $$c ]; then \
+ ${LN} -sf $$c ${WRKSRC}/config.h; \
+ fi; \
+ done
+ cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf
+
+do-install:
+ ${INSTALL_PROGRAM} \
+ ${WRKSRC}/Arena/${MACHINE_GNU_PLATFORM:C/.*-.*-//}/arena \
+ ${PREFIX}/bin/
+ ${INSTALL_DATA} ${WRKSRC}/Arena/Source/arenarc ${PREFIX}/share/examples/
+ if [ ! -f ${LOCALBASE}/etc/arenarc ]; then \
+ ${CP} ${PREFIX}/share/examples/arenarc ${LOCALBASE}/etc/; \
+ fi
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/locale/en/LC_MESSAGES
+ msgfmt --output-file=${WRKDIR}/Arena.gmo \
+ ${WRKSRC}/Arena/LC_MESSAGES/en/Arena.po
+ ${INSTALL_DATA} ${WRKDIR}/Arena.gmo \
+ ${PREFIX}/share/locale/en/LC_MESSAGES/
+ ${INSTALL_DATA} ${WRKSRC}/Arena/doc/arena.man ${PREFIX}/man/man1/arena.1
+
+.include "../../mk/bsd.prefs.mk"
+
+.if defined(EXTRACT_USING_PAX)
+GLOBAL_EXCLUDE_ARG= -c
+.else
+EXCLUDE_ARG= --exclude
+.endif
+EXTRACT_ELEMENTS= ${GLOBAL_EXCLUDE_ARG}
+.for DONT_EXTRACT_SUBDIR in jpeg-* libpng-* zlib-*
+EXTRACT_ELEMENTS+= ${EXCLUDE_ARG} Arena-*/Auxiliary/${DONT_EXTRACT_SUBDIR}
+.endfor
+
+.include "../../mk/bsd.pkg.mk"