diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2000-12-27 06:54:33 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2000-12-27 06:54:33 +0000 |
commit | 50cfb635ad8c813d69bb5b36ecd63d3bb52db550 (patch) | |
tree | e613ae2993731322ce88f387493b8cd0406412e7 /www/mmosaic/Makefile | |
parent | 0436695113c57ae9332ebdb9162572d3127c2caf (diff) | |
download | ports-50cfb635ad8c813d69bb5b36ecd63d3bb52db550.tar.gz ports-50cfb635ad8c813d69bb5b36ecd63d3bb52db550.zip |
Add new port of mMosaic, a Web browser based partly on NCSA Mosaic,
but with many modernizations.
Notes
Notes:
svn path=/head/; revision=36397
Diffstat (limited to 'www/mmosaic/Makefile')
-rw-r--r-- | www/mmosaic/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/www/mmosaic/Makefile b/www/mmosaic/Makefile new file mode 100644 index 000000000000..f0cf592fdb6b --- /dev/null +++ b/www/mmosaic/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: mmosaic +# Date created: 2000-12-26 +# Whom: trevor +# +# $FreeBSD$ +# + +PORTNAME= mmosaic +PORTVERSION= 3.7.1 +CATEGORIES= www +MASTER_SITES= ftp://ftp.enst.fr/pub/mbone/mMosaic/ +DISTNAME= mMosaic-${PORTVERSION} + +MAINTAINER= trevor@FreeBSD.org + +LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png + +NO_CDROM= "academic, research and internal business purposes only, without a fee" +NO_PACKAGE= "must cause any work...derived...to be licensed as a whole...under...this License" +PLIST= ${WRKDIR}/pkg-plist +USE_MOTIF= yes +USE_X_PREFIX= yes +WRKSRC= ${WRKDIR}/mMosaic-src-${PORTVERSION} + +post-patch: + ${PERL} -pi -e "s:LOCALBASE:${LOCALBASE}:g" ${WRKSRC}/Makefile + ${PERL} -pi -e "s:X11BASE:${X11BASE}:g" ${WRKSRC}/Makefile + +pre-install: + ${ECHO} bin/mmosaic > ${PLIST} + cd ${WRKSRC}/Copyrights; for i in `find * -type f`; do \ + ${ECHO} share/doc/mmosaic/$${i} >> ${PLIST}; \ + done + +do-install: + ${MKDIR} ${PREFIX}/share/doc/mmosaic/ + ${INSTALL_DATA} ${WRKSRC}/Copyrights/* ${PREFIX}/share/doc/mmosaic/ +# ${INSTALL_DATA} ${WRKSRC}/app-def/app-defaults.color ${PREFIX}/lib/X11/app-defaults/mMosaic + ${INSTALL_PROGRAM} ${WRKSRC}/src/mMosaic ${PREFIX}/bin/mmosaic + +.include <bsd.port.mk> |