diff options
author | will <will@FreeBSD.org> | 2002-10-25 16:40:40 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2002-10-25 16:40:40 +0000 |
commit | aae1d99da5496b22316e25fad0da3f152f5a458c (patch) | |
tree | 57dcb1e64831263ede43218a879eaf76afab60b9 /graphics/png2ico | |
parent | eecb4eb0731938aefff075f3c7d228e65868a9b7 (diff) | |
download | FreeBSD-ports-aae1d99da5496b22316e25fad0da3f152f5a458c.zip FreeBSD-ports-aae1d99da5496b22316e25fad0da3f152f5a458c.tar.gz |
Add png2ico 2002.09.03, a program that converts PNG files to Windows
icon resource files.
PR: 43292
Submitted by: Franz Klammer <klammer@webonaut.com>
Diffstat (limited to 'graphics/png2ico')
-rw-r--r-- | graphics/png2ico/Makefile | 27 | ||||
-rw-r--r-- | graphics/png2ico/distinfo | 1 | ||||
-rw-r--r-- | graphics/png2ico/files/patch-Makefile | 15 | ||||
-rw-r--r-- | graphics/png2ico/pkg-comment | 1 | ||||
-rw-r--r-- | graphics/png2ico/pkg-descr | 3 | ||||
-rw-r--r-- | graphics/png2ico/pkg-plist | 1 |
6 files changed, 48 insertions, 0 deletions
diff --git a/graphics/png2ico/Makefile b/graphics/png2ico/Makefile new file mode 100644 index 0000000..9db3723 --- /dev/null +++ b/graphics/png2ico/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: png2ico +# Date created: 23 Sep 2002 +# Whom: Franz Klammer <klammer@webonaut.com> +# +# $FreeBSD$ +# + +PORTNAME= png2ico +PORTVERSION= 2002.09.03 +CATEGORIES= graphics +MASTER_SITES= http://www.winterdrache.de/freeware/png2ico/data/ +DISTNAME= ${PORTNAME}-src-${PORTVERSION:S/./-/g} + +MAINTAINER= klammer@webonaut.com + +LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png + +MAN1= png2ico.1 + +WRKSRC= ${WRKDIR}/${PORTNAME} +USE_GMAKE= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/png2ico.1 ${PREFIX}/man/man1/ + +.include <bsd.port.mk> diff --git a/graphics/png2ico/distinfo b/graphics/png2ico/distinfo new file mode 100644 index 0000000..515875d --- /dev/null +++ b/graphics/png2ico/distinfo @@ -0,0 +1 @@ +MD5 (png2ico-src-2002-09-03.tar.gz) = d592067920ba8711341ddc36e9aa3f53 diff --git a/graphics/png2ico/files/patch-Makefile b/graphics/png2ico/files/patch-Makefile new file mode 100644 index 0000000..380bb36 --- /dev/null +++ b/graphics/png2ico/files/patch-Makefile @@ -0,0 +1,15 @@ +--- Makefile.old Mon Sep 23 16:45:44 2002 ++++ Makefile Mon Sep 23 16:45:51 2002 +@@ -1,10 +1,10 @@ +-CPPFLAGS=-W -Wall -O2 ++CPPFLAGS=-W -Wall -O2 -I/usr/local/include -L/usr/local/lib -lpng + DEBUG=-g + + all: png2ico + + png2ico: png2ico.cpp +- g++ $(CPPFLAGS) $(DEBUG) -o $@ $< -lpng ++ g++ $(CPPFLAGS) $(DEBUG) -o $@ $< + + doc/png2ico.txt: doc/png2ico.1 + man $< |sed -e $$'s/.\b\\(.\\)/\\1/g' -e 's/\(.*\)/\1'$$'\r/' >$@ diff --git a/graphics/png2ico/pkg-comment b/graphics/png2ico/pkg-comment new file mode 100644 index 0000000..3244e0b --- /dev/null +++ b/graphics/png2ico/pkg-comment @@ -0,0 +1 @@ +Converts PNG files to Windows icon resource files diff --git a/graphics/png2ico/pkg-descr b/graphics/png2ico/pkg-descr new file mode 100644 index 0000000..d7668cc --- /dev/null +++ b/graphics/png2ico/pkg-descr @@ -0,0 +1,3 @@ +Converts PNG files to Windows icon resource files. + +WWW: http://www.winterdrache.de/freeware/png2ico/index.html diff --git a/graphics/png2ico/pkg-plist b/graphics/png2ico/pkg-plist new file mode 100644 index 0000000..27cbe23 --- /dev/null +++ b/graphics/png2ico/pkg-plist @@ -0,0 +1 @@ +bin/png2ico |