diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2003-12-21 21:40:05 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2003-12-21 21:40:05 +0000 |
commit | 46df51924447c9b60b364ae0bb4d41b5ef1de4a5 (patch) | |
tree | 2d3b83631243c6522376009fe75f0963193f1dd6 /graphics/netpbm | |
parent | - Take maintainership (diff) |
- add patch to fix anytopnm
Submitted by: ls+muttedfc91b3@gambit.com.ru
Diffstat (limited to 'graphics/netpbm')
-rw-r--r-- | graphics/netpbm/Makefile | 2 | ||||
-rw-r--r-- | graphics/netpbm/files/patch-converter-other-anytopnm | 65 |
2 files changed, 66 insertions, 1 deletions
diff --git a/graphics/netpbm/Makefile b/graphics/netpbm/Makefile index 62d6606a3c98..9a6837a897e3 100644 --- a/graphics/netpbm/Makefile +++ b/graphics/netpbm/Makefile @@ -7,7 +7,7 @@ PORTNAME= netpbm PORTVERSION= 10.19 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/graphics/netpbm/files/patch-converter-other-anytopnm b/graphics/netpbm/files/patch-converter-other-anytopnm new file mode 100644 index 000000000000..d340b0a99577 --- /dev/null +++ b/graphics/netpbm/files/patch-converter-other-anytopnm @@ -0,0 +1,65 @@ +--- converter/other/anytopnm Fri Sep 19 22:35:58 2003 ++++ converter/other/anytopnm Sun Dec 21 18:17:25 2003 +@@ -11,7 +11,7 @@ + # documentation. This software is provided "as is" without express or + # implied warranty. + +-function putInputIntoTempfile() { ++putInputIntoTempfile() { + + # $1 is the input file specification + # $2 is the temporary file name +@@ -46,7 +46,7 @@ + + + +-function setMimeType() { ++setMimeType() { + # $1 is the file name + + # Christos Zoulas's current 'file' (see Freshmeat) has the --mime option. +@@ -64,7 +64,7 @@ + + + +-function computeTypeFromMimeType () { ++computeTypeFromMimeType() { + + # $1 is the mime type string + +@@ -100,7 +100,7 @@ + + + +-function computeTypeFromTypeDescription () { ++computeTypeFromTypeDescription() { + + # $1 is the full description from 'file' of the file type + +@@ -196,7 +196,7 @@ + + + +-function computeTypeFromFilenameExtension () { ++computeTypeFromFilenameExtension() { + # $1 is the filename extension (".gif", etc.) + + case "$1" in +@@ -304,7 +304,7 @@ + + + +-function determineType () { ++determineType() { + + # $1 is the name of the file that contains the subject file's contents + # $2 is the mime type or "unknown" +@@ -327,7 +327,7 @@ + + + +-function convertIt () { ++convertIt() { + # Based on the file type computed, do the conversion + + # $1 is the input file name |