diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-02-01 11:23:36 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-02-01 11:23:36 +0000 |
commit | ae985b9c73ed995d404e2702c9b1ae9fea38d933 (patch) | |
tree | 8ff797e0c914d6eaed27e2cd699fa8f00a2435fe /app-misc/vittk | |
parent | Initial import. (diff) | |
download | gentoo-2-ae985b9c73ed995d404e2702c9b1ae9fea38d933.tar.gz gentoo-2-ae985b9c73ed995d404e2702c9b1ae9fea38d933.tar.bz2 gentoo-2-ae985b9c73ed995d404e2702c9b1ae9fea38d933.zip |
Move dev-lang/tk to RDEPEND and replace the last reference of wish with tclsh in the configure script.
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/vittk')
-rw-r--r-- | app-misc/vittk/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/vittk/files/vittk-1.1.1-configure.patch | 3 | ||||
-rw-r--r-- | app-misc/vittk/vittk-1.1.1.ebuild | 6 |
3 files changed, 11 insertions, 5 deletions
diff --git a/app-misc/vittk/ChangeLog b/app-misc/vittk/ChangeLog index 20f27d0a52e2..e568176a5311 100644 --- a/app-misc/vittk/ChangeLog +++ b/app-misc/vittk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/vittk # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vittk/ChangeLog,v 1.1 2011/02/01 11:11:36 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/vittk/ChangeLog,v 1.2 2011/02/01 11:23:36 radhermit Exp $ + + 01 Feb 2011; Tim Harder <radhermit@gentoo.org> vittk-1.1.1.ebuild, + files/vittk-1.1.1-configure.patch: + Move dev-lang/tk to RDEPEND and replace the last reference of wish with tclsh + in the configure script. *vittk-1.1.1 (01 Feb 2011) diff --git a/app-misc/vittk/files/vittk-1.1.1-configure.patch b/app-misc/vittk/files/vittk-1.1.1-configure.patch index 43c5d775f773..b05fea1eed72 100644 --- a/app-misc/vittk/files/vittk-1.1.1-configure.patch +++ b/app-misc/vittk/files/vittk-1.1.1-configure.patch @@ -6,9 +6,10 @@ -AC_PATH_PROG(WISH, wish, NOT_FOUND) -if test "$WISH" = "NOT_FOUND"; then +- AC_MSG_ERROR([can not continue: wish not found]) +AC_PATH_PROG(TCLSH, tclsh, NOT_FOUND) +if test "$TCLSH" = "NOT_FOUND"; then - AC_MSG_ERROR([can not continue: wish not found]) ++ AC_MSG_ERROR([can not continue: tclsh not found]) fi -AC_SUBST(WISH) +AC_SUBST(TCLSH) diff --git a/app-misc/vittk/vittk-1.1.1.ebuild b/app-misc/vittk/vittk-1.1.1.ebuild index 5e1a4260c898..008682bc047e 100644 --- a/app-misc/vittk/vittk-1.1.1.ebuild +++ b/app-misc/vittk/vittk-1.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vittk/vittk-1.1.1.ebuild,v 1.1 2011/02/01 11:11:36 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/vittk/vittk-1.1.1.ebuild,v 1.2 2011/02/01 11:23:36 radhermit Exp $ EAPI=4 @@ -15,9 +15,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="dev-lang/tcl - dev-lang/tk" +DEPEND="dev-lang/tcl" RDEPEND="${DEPEND} + dev-lang/tk app-misc/task" src_prepare() { |