diff options
author | 2004-03-25 06:46:30 +0000 | |
---|---|---|
committer | 2004-03-25 06:46:30 +0000 | |
commit | 6e2297dc80682e1952001a2b7081325e44dfb5b2 (patch) | |
tree | 02bc094c8dec81f27fd0a10e2b09937bef49ee5a /x11-libs/wxGTK/wxGTK-2.4.0.ebuild | |
parent | Stable on sparc. (diff) | |
download | historical-6e2297dc80682e1952001a2b7081325e44dfb5b2.tar.gz historical-6e2297dc80682e1952001a2b7081325e44dfb5b2.tar.bz2 historical-6e2297dc80682e1952001a2b7081325e44dfb5b2.zip |
don't use deprecated ? : use syntax
Diffstat (limited to 'x11-libs/wxGTK/wxGTK-2.4.0.ebuild')
-rw-r--r-- | x11-libs/wxGTK/wxGTK-2.4.0.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/x11-libs/wxGTK/wxGTK-2.4.0.ebuild b/x11-libs/wxGTK/wxGTK-2.4.0.ebuild index 252e62bc37a6..341c6a137251 100644 --- a/x11-libs/wxGTK/wxGTK-2.4.0.ebuild +++ b/x11-libs/wxGTK/wxGTK-2.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/wxGTK-2.4.0.ebuild,v 1.14 2004/02/17 20:07:38 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/wxGTK-2.4.0.ebuild,v 1.15 2004/03/25 06:46:30 mr_bones_ Exp $ DESCRIPTION="GTK+ version of wxWindows, a cross-platform C++ GUI toolkit." SRC_URI="mirror://sourceforge/wxwindows/${P}.tar.bz2" @@ -21,7 +21,11 @@ DEPEND="virtual/glibc sys-libs/zlib odbc? ( dev-db/unixODBC ) opengl? ( virtual/opengl ) - gtk2? ( >=x11-libs/gtk+-2.0* dev-libs/libunicode ) : ( =x11-libs/gtk+-1.2* )" + gtk2? ( + >=x11-libs/gtk+-2.0* + dev-libs/libunicode + ) + !gtk2? ( =x11-libs/gtk+-1.2* )" RDEPEND="nls? ( sys-devel/gettext )" |