Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/vittk/files: vittk-1.1.1-configure.patch
Date: Tue, 01 Feb 2011 11:23:49
Message-Id: 20110201112336.C38C520057@flycatcher.gentoo.org
1 radhermit 11/02/01 11:23:36
2
3 Modified: vittk-1.1.1-configure.patch
4 Log:
5 Move dev-lang/tk to RDEPEND and replace the last reference of wish with tclsh in the configure script.
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 app-misc/vittk/files/vittk-1.1.1-configure.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/vittk/files/vittk-1.1.1-configure.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/vittk/files/vittk-1.1.1-configure.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/vittk/files/vittk-1.1.1-configure.patch?r1=1.1&r2=1.2
15
16 Index: vittk-1.1.1-configure.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-misc/vittk/files/vittk-1.1.1-configure.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- vittk-1.1.1-configure.patch 1 Feb 2011 11:11:36 -0000 1.1
23 +++ vittk-1.1.1-configure.patch 1 Feb 2011 11:23:36 -0000 1.2
24 @@ -6,9 +6,10 @@
25
26 -AC_PATH_PROG(WISH, wish, NOT_FOUND)
27 -if test "$WISH" = "NOT_FOUND"; then
28 +- AC_MSG_ERROR([can not continue: wish not found])
29 +AC_PATH_PROG(TCLSH, tclsh, NOT_FOUND)
30 +if test "$TCLSH" = "NOT_FOUND"; then
31 - AC_MSG_ERROR([can not continue: wish not found])
32 ++ AC_MSG_ERROR([can not continue: tclsh not found])
33 fi
34 -AC_SUBST(WISH)
35 +AC_SUBST(TCLSH)