diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-10-22 19:46:11 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-10-22 19:46:11 +0000 |
commit | 2ddc750a9dba256530c108ffd762486db00532c3 (patch) | |
tree | cb5dc087bed78a639a338bf62954e909e110e2c3 /app-mobilephone | |
parent | Applied patch from bug #152229. Marked stable on amd64. (diff) | |
download | gentoo-2-2ddc750a9dba256530c108ffd762486db00532c3.tar.gz gentoo-2-2ddc750a9dba256530c108ffd762486db00532c3.tar.bz2 gentoo-2-2ddc750a9dba256530c108ffd762486db00532c3.zip |
Replace deprecated tcltk USE flag with tcl (#152399).
(Portage version: 2.1.1)
Diffstat (limited to 'app-mobilephone')
-rw-r--r-- | app-mobilephone/obexftp/ChangeLog | 5 | ||||
-rw-r--r-- | app-mobilephone/obexftp/obexftp-0.21.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-mobilephone/obexftp/ChangeLog b/app-mobilephone/obexftp/ChangeLog index 59b5a4b8b1bd..f3e156a51e2d 100644 --- a/app-mobilephone/obexftp/ChangeLog +++ b/app-mobilephone/obexftp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-mobilephone/obexftp # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexftp/ChangeLog,v 1.15 2006/09/22 10:27:50 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexftp/ChangeLog,v 1.16 2006/10/22 19:46:11 mrness Exp $ + + 22 Oct 2006; Alin Nastac <mrness@gentoo.org> obexftp-0.21.ebuild: + Replace deprecated tcltk USE flag with tcl (#152399). 22 Sep 2006; Alin Nastac <mrness@gentoo.org> obexftp-0.21.ebuild: Use eautoconf instead eautoreconf (#148618). diff --git a/app-mobilephone/obexftp/obexftp-0.21.ebuild b/app-mobilephone/obexftp/obexftp-0.21.ebuild index f4a7d570d858..de73db0b71a3 100644 --- a/app-mobilephone/obexftp/obexftp-0.21.ebuild +++ b/app-mobilephone/obexftp/obexftp-0.21.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexftp/obexftp-0.21.ebuild,v 1.4 2006/09/22 10:27:50 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obexftp/obexftp-0.21.ebuild,v 1.5 2006/10/22 19:46:11 mrness Exp $ inherit eutils perl-module flag-o-matic autotools @@ -11,13 +11,13 @@ HOMEPAGE="http://triq.net/obex" SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~ppc x86" -IUSE="bluetooth debug perl python swig tcltk" +IUSE="bluetooth debug perl python swig tcl" DEPEND=">=dev-libs/openobex-1.1 bluetooth? ( >=net-wireless/bluez-libs-2.19 ) perl? ( >=dev-lang/perl-5.8.6 ) python? ( >=dev-lang/python-2.4.2 ) - tcltk? ( >=dev-lang/tcl-8.4.9 ) + tcl? ( >=dev-lang/tcl-8.4.9 ) swig? ( >=dev-lang/swig-1.3.7 )" src_unpack() { @@ -40,7 +40,7 @@ src_compile() { $(use_enable bluetooth) \ $(use_enable perl) \ $(use_enable python) \ - $(use_enable tcltk tcl) || die "econf failed" + $(use_enable tcl) || die "econf failed" emake || die "emake failed" } |