diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-04-13 16:24:57 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-04-13 16:24:57 +0000 |
commit | e4b4952703458390145d94ab95579c7892963fd6 (patch) | |
tree | 8dcfb05d713c49bcc048c39dc9f5fd9dd732a10c /www/viewml/Makefile | |
parent | Add ruby-libgtop, a Ruby interface to libgtop. (diff) |
Add viewml 0.21, an open source web browser targeted at the embedded
platforms. It uses KDE's html engine, but doesn't require QT or KDE libs
to compile and run.
Notes
Notes:
svn path=/head/; revision=41346
Diffstat (limited to 'www/viewml/Makefile')
-rw-r--r-- | www/viewml/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/www/viewml/Makefile b/www/viewml/Makefile new file mode 100644 index 000000000000..69bf32b58010 --- /dev/null +++ b/www/viewml/Makefile @@ -0,0 +1,35 @@ +# Ports collection Makefile for: viewml +# Date created: Black Friday (13 April 2001) +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= viewml +PORTVERSION= 0.21 +CATEGORIES= www +MASTER_SITES= ftp://ftp.viewml.com/pub/viewml/ + +MAINTAINER= sobomax@FreeBSD.org + +BUILD_DEPENDS= makedepend:${PORTSDIR}/devel/makedepend +LIB_DEPENDS= fltk.1:${PORTSDIR}/x11-toolkits/fltk \ + wwwzip.1:${PORTSDIR}/www/libwww + +WRKSRC= ${WRKDIR}/${DISTNAME}/src + +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_BISON= yes +CFLAGS+= -fpermissive -include /usr/include/sys/types.h \ + -DPREFIX=\\\"${PREFIX}\\\" + +do-configure: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKEFILE} ${MAKE_ARGS} depend) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/viewml ${PREFIX}/bin + ${MKDIR} ${PREFIX}/share/viewml + ${INSTALL_DATA} ${WRKSRC}/khtmlw_dnd.xpm ${PREFIX}/share/viewml + +.include <bsd.port.mk> |