summaryrefslogtreecommitdiff
path: root/graphics/png2html/Makefile
diff options
context:
space:
mode:
authorhubertf <hubertf>2000-10-23 17:06:37 +0000
committerhubertf <hubertf>2000-10-23 17:06:37 +0000
commit8df9f63a30c1e656cdcca2282dcd5e4b4ca1eb35 (patch)
treedad235063169577e79efdd59e9fdda4d9e753053 /graphics/png2html/Makefile
parent1437b068a5f684b220179d3304d6562d9f1effc7 (diff)
downloadpkgsrc-8df9f63a30c1e656cdcca2282dcd5e4b4ca1eb35.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/Makefile22
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"