summaryrefslogtreecommitdiff
path: root/www/WebMagick
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2001-08-10 04:46:02 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2001-08-10 04:46:02 +0000
commit1da1ba46342b3130ad4fdb78ca89b72b737e1d97 (patch)
tree905ad691202a1c85d9e1e50a37367101903a40ab /www/WebMagick
parentUSE_AUTOMAKE (diff)
Upgrade to 2.01
Notes
Notes: svn path=/head/; revision=46032
Diffstat (limited to 'www/WebMagick')
-rw-r--r--www/WebMagick/Makefile4
-rw-r--r--www/WebMagick/distinfo2
-rw-r--r--www/WebMagick/files/patch-aa41
3 files changed, 2 insertions, 45 deletions
diff --git a/www/WebMagick/Makefile b/www/WebMagick/Makefile
index 9c1c3d6edb20..aace9fd1489c 100644
--- a/www/WebMagick/Makefile
+++ b/www/WebMagick/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= WebMagick
-PORTVERSION= 2.0
+PORTVERSION= 2.01
CATEGORIES= www graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= webmagick
@@ -36,7 +36,5 @@ post-install:
${INSTALL_DATA} webmagickrc ${PREFIX}/etc; \
fi; \
${INSTALL_DATA} webmagickrc ${PREFIX}/etc/webmagickrc.dist
- cd ${WRKSRC}/icons; \
- ${INSTALL_DATA} blue_help.gif ${PREFIX}/www/data/webmagick/blue_c.gif
.include <bsd.port.mk>
diff --git a/www/WebMagick/distinfo b/www/WebMagick/distinfo
index b738226e451a..285916d742bb 100644
--- a/www/WebMagick/distinfo
+++ b/www/WebMagick/distinfo
@@ -1 +1 @@
-MD5 (WebMagick-2.0.tar.gz) = fbbca7cdf9acf1a0d39de3c073f06944
+MD5 (WebMagick-2.01.tar.gz) = c4a2adaaed70994660be3c589fb11b64
diff --git a/www/WebMagick/files/patch-aa b/www/WebMagick/files/patch-aa
deleted file mode 100644
index 1de0c795d540..000000000000
--- a/www/WebMagick/files/patch-aa
+++ /dev/null
@@ -1,41 +0,0 @@
---- webmagick.in.bak Sat Jul 14 01:35:08 2001
-+++ webmagick.in Thu Aug 9 06:51:38 2001
-@@ -2109,9 +2109,17 @@
- }
- # --- prev link ---
- if( $pageNumber == 1 ) {
-- # Go to base index page if on first page
-- $indexbar .= "<A HREF=\"${opt_indexname}\" TARGET=\"$opt_frame_name_top\"><IMG
-- SRC=\"$iconImageUrls{'prev'}\" $iconImageSizes{'prev'} ALT=\"Prev\" BORDER=0></A>\n";
-+ my $indexname = get_rc_var('..', 'opt_indexname', $opt_indexname);
-+
-+ if ( !$haveReadme && $indexname ne 'NOLINK' ) {
-+ # Go to up index page if on first page
-+ $indexbar .= "<A HREF=\"../${indexname}\" TARGET=\"$opt_frame_name_top\"><IMG
-+ SRC=\"$iconImageUrls{'up'}\" $iconImageSizes{'up'} ALT=\"^\" BORDER=0></A>\n";
-+ } else {
-+ # Go to base index page if on first page
-+ $indexbar .= "<A HREF=\"${opt_indexname}\" TARGET=\"$opt_frame_name_top\"><IMG
-+ SRC=\"$iconImageUrls{'prev'}\" $iconImageSizes{'prev'} ALT=\"Prev\" BORDER=0></A>\n";
-+ }
- } else {
- # Go to preceding page
- $indexbar .= "<A HREF=\"$fileNames{'htmlPrevIndex'}\" TARGET=\"$frameTargets{'thumbview'}\"><IMG
-@@ -2700,7 +2708,7 @@
- # available in PerlMagick 1.12 and beyond. If the
- # feature is not supported then undefined values
- # should be returned.
-- ($base_columns, $base_rows) = $image->Get('base_columns', 'base_rows');
-+ ($base_columns, $base_rows) = $image->Get('base-columns', 'base-rows');
- if( defined($base_columns) && defined($base_rows) ) {
- $width = $base_columns;
- $height = $base_rows;
-@@ -2971,8 +2979,6 @@
- if( ! $opt_forcejpeg ) {
- print( STDERR "Writing $fileNames{'montageGIF'} ...\n" ) if $opt_debug;
- $status = $image->Write(
-- colors=>256,
-- colorspace=>'YUV',
- dither=>'True',
- filename=>"GIF:$fileNames{'montageGIF'}",
- interlace=>'Line'