diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-10-23 17:06:37 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-10-23 17:06:37 +0000 |
commit | d20ad90e86ace430cb974eaf12c533be7eacca59 (patch) | |
tree | dad235063169577e79efdd59e9fdda4d9e753053 /graphics/png2html/Makefile | |
parent | e56ee3f327a8aeacac9b34d8b47a4ee0f4c4e853 (diff) | |
download | pkgsrc-d20ad90e86ace430cb974eaf12c533be7eacca59.tar.gz |
Png2html takes a PNG image and transforms it pixel per pixel to a web
page. It makes use of a text file supplied by the user to do the conversion.
See http://www.feyrer.de/images/hubert4_klein2.html and
http://incredible.art.pl/ for some examples.
Diffstat (limited to 'graphics/png2html/Makefile')
-rw-r--r-- | graphics/png2html/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/graphics/png2html/Makefile b/graphics/png2html/Makefile new file mode 100644 index 00000000000..f7336e45a53 --- /dev/null +++ b/graphics/png2html/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/10/23 17:06:37 hubertf Exp $ +# + +DISTNAME= png2html-1.1 +CATEGORIES= graphics www +MASTER_SITES= http://www.engr.mun.ca/~holden/ + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://www.engr.mun.ca/~holden/png2html.html + +DEPENDS+= png-1.*:../../graphics/png +DEPENDS+= gd>=1.8.3:../../graphics/gd +DEPENDS+= jpeg>=6a:../../graphics/jpeg + +do-install: + ${INSTALL_MAN_DIR} ${PREFIX}/share/doc/png2html + ${INSTALL_MAN} ${WRKSRC}/COPYING ${PREFIX}/share/doc/png2html + ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/png2html + ${INSTALL_MAN} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/png2html + ${INSTALL_PROGRAM} ${WRKSRC}/png2html ${PREFIX}/bin + +.include "../../mk/bsd.pkg.mk" |