b48eba1112
all dependencies on packages depending on "png" which contain shared libraries, all for the (imminent) update to the "png" package. [List courtesy of John Darrow, courtesy of "bulk-build".]
74 lines
2.3 KiB
Makefile
74 lines
2.3 KiB
Makefile
# $NetBSD: Makefile,v 1.42 2002/03/13 17:37:50 fredb Exp $
|
|
|
|
DISTNAME= arena-0.3.62
|
|
PKGREVISION= 2
|
|
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.2.1:../../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"
|