diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 15:17:31 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 15:17:31 +0000 |
commit | 246d1e468bd336646967fc983b59cb22d5c903d4 (patch) | |
tree | 380fb59bb646e76ed87498f905407b2afbab8671 /x11-libs/libICE | |
parent | Move use_ functions out of global scope. (diff) | |
download | historical-246d1e468bd336646967fc983b59cb22d5c903d4.tar.gz historical-246d1e468bd336646967fc983b59cb22d5c903d4.tar.bz2 historical-246d1e468bd336646967fc983b59cb22d5c903d4.zip |
Move use_ functions out of global scope.
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'x11-libs/libICE')
-rw-r--r-- | x11-libs/libICE/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/libICE/libICE-1.0.3.ebuild | 8 | ||||
-rw-r--r-- | x11-libs/libICE/libICE-1.0.4.ebuild | 8 |
3 files changed, 16 insertions, 8 deletions
diff --git a/x11-libs/libICE/ChangeLog b/x11-libs/libICE/ChangeLog index 948aac2ee7e0..557de2b5e580 100644 --- a/x11-libs/libICE/ChangeLog +++ b/x11-libs/libICE/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/libICE -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libICE/ChangeLog,v 1.50 2008/01/31 04:15:17 dberkholz Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libICE/ChangeLog,v 1.51 2009/05/04 15:14:04 ssuominen Exp $ + + 04 May 2009; Samuli Suominen <ssuominen@gentoo.org> libICE-1.0.3.ebuild, + libICE-1.0.4.ebuild: + Move use_ functions out of global scope. 31 Jan 2008; Donnie Berkholz <dberkholz@gentoo.org>; -libICE-1.0.1.ebuild: Clean up. diff --git a/x11-libs/libICE/libICE-1.0.3.ebuild b/x11-libs/libICE/libICE-1.0.3.ebuild index 5b26c8419ed4..b7c3fb45a1f6 100644 --- a/x11-libs/libICE/libICE-1.0.3.ebuild +++ b/x11-libs/libICE/libICE-1.0.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libICE/libICE-1.0.3.ebuild,v 1.11 2007/08/07 13:03:06 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libICE/libICE-1.0.3.ebuild,v 1.12 2009/05/04 15:14:04 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -16,4 +16,6 @@ RDEPEND="x11-libs/xtrans x11-proto/xproto" DEPEND="${RDEPEND}" -CONFIGURE_OPTIONS="$(use_enable ipv6)" +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable ipv6)" +} diff --git a/x11-libs/libICE/libICE-1.0.4.ebuild b/x11-libs/libICE/libICE-1.0.4.ebuild index aa874bcb8a02..a30b2345f176 100644 --- a/x11-libs/libICE/libICE-1.0.4.ebuild +++ b/x11-libs/libICE/libICE-1.0.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libICE/libICE-1.0.4.ebuild,v 1.8 2008/01/13 09:23:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libICE/libICE-1.0.4.ebuild,v 1.9 2009/05/04 15:14:04 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -16,4 +16,6 @@ RDEPEND="x11-libs/xtrans x11-proto/xproto" DEPEND="${RDEPEND}" -CONFIGURE_OPTIONS="$(use_enable ipv6)" +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable ipv6)" +} |