summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorsborrill <sborrill@pkgsrc.org>2011-09-10 15:47:20 +0000
committersborrill <sborrill@pkgsrc.org>2011-09-10 15:47:20 +0000
commitf7005a113c2b826026ceee7b65f8fc3dda8c2dcd (patch)
treeb96833ffc45bd39fe6400a56a112f46f3daac06a /net
parent552cc9f33602079b817056806143ffc3a3fac96d (diff)
downloadpkgsrc-f7005a113c2b826026ceee7b65f8fc3dda8c2dcd.tar.gz
Update to istgt-20110907.
Changelog written in Japanese(20110907 & 20110902): http://shell.peach.ne.jp/aoyama/archives/1628 http://shell.peach.ne.jp/aoyama/archives/1611 Highlights include: - provides vSphere5(ESXi5) compatibility. - Allows RPM and Form Factor to be specified for LUNs
Diffstat (limited to 'net')
-rw-r--r--net/istgt/Makefile4
-rw-r--r--net/istgt/distinfo9
-rw-r--r--net/istgt/patches/patch-Makefile.in28
3 files changed, 35 insertions, 6 deletions
diff --git a/net/istgt/Makefile b/net/istgt/Makefile
index e8807826155..b990404f6d0 100644
--- a/net/istgt/Makefile
+++ b/net/istgt/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2011/03/16 08:31:25 sborrill Exp $
+# $NetBSD: Makefile,v 1.6 2011/09/10 15:47:20 sborrill Exp $
#
-DISTNAME= istgt-20110223
+DISTNAME= istgt-20110907
CATEGORIES= net
MASTER_SITES= http://www.peach.ne.jp/archives/istgt/
diff --git a/net/istgt/distinfo b/net/istgt/distinfo
index f1062781926..0cd6445cbf1 100644
--- a/net/istgt/distinfo
+++ b/net/istgt/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.4 2011/03/16 08:31:25 sborrill Exp $
+$NetBSD: distinfo,v 1.5 2011/09/10 15:47:20 sborrill Exp $
-SHA1 (istgt-20110223.tar.gz) = 49d179a86baa25088db4517ca68c36f592c839d5
-RMD160 (istgt-20110223.tar.gz) = 7a908666c11f277f6f1eb5bb967d18335dfd4fad
-Size (istgt-20110223.tar.gz) = 223384 bytes
+SHA1 (istgt-20110907.tar.gz) = a9a43ba63c6d937336da87b85f69640f8a164033
+RMD160 (istgt-20110907.tar.gz) = 2c01d89b74fd5ffc9902a7195abbc75e9fb8dca7
+Size (istgt-20110907.tar.gz) = 231731 bytes
+SHA1 (patch-Makefile.in) = 5018e0aa16eb80fcb76140d59b6db117e86ff0f8
diff --git a/net/istgt/patches/patch-Makefile.in b/net/istgt/patches/patch-Makefile.in
new file mode 100644
index 00000000000..34beada1fd1
--- /dev/null
+++ b/net/istgt/patches/patch-Makefile.in
@@ -0,0 +1,28 @@
+$NetBSD: patch-Makefile.in,v 1.1 2011/09/10 15:47:20 sborrill Exp $
+
+Work around missing -C in make.
+Fix exit status from make.
+
+--- Makefile.in.orig 2011-08-31 19:53:08.000000000 +0100
++++ Makefile.in 2011-09-10 16:17:01.000000000 +0100
+@@ -36,17 +36,17 @@
+
+ all:
+ for subdir in $(SUBDIRS); do \
+- $(MAKE) -C $$subdir $@ || exit $?; \
++ (cd $$subdir; $(MAKE) $@ || exit $$?) || exit $$?; \
+ done
+
+ install:
+ for subdir in $(SUBDIRS); do \
+- $(MAKE) -C $$subdir $@ || exit $?; \
++ (cd $$subdir; $(MAKE) $@ || exit $$?) || exit $$?; \
+ done
+
+ install-doc:
+ for subdir in doc; do \
+- $(MAKE) -C $$subdir $@; \
++ (cd $$subdir; $(MAKE) $@ || exit $$?) || exit $$?; \
+ done
+
+