diff options
author | 2009-05-04 17:06:59 +0000 | |
---|---|---|
committer | 2009-05-04 17:06:59 +0000 | |
commit | c65c4689338929e0e67daf9cc1993df00846cd52 (patch) | |
tree | 215b637c8d6094d151df5f81588ecb1a4d52086d /x11-libs/libSM | |
parent | Make repoman happy by defining empty IUSE (diff) | |
download | historical-c65c4689338929e0e67daf9cc1993df00846cd52.tar.gz historical-c65c4689338929e0e67daf9cc1993df00846cd52.tar.bz2 historical-c65c4689338929e0e67daf9cc1993df00846cd52.zip |
Move use_ functions out of global scope.
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'x11-libs/libSM')
-rw-r--r-- | x11-libs/libSM/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/libSM/libSM-1.0.2.ebuild | 8 | ||||
-rw-r--r-- | x11-libs/libSM/libSM-1.0.3.ebuild | 8 | ||||
-rw-r--r-- | x11-libs/libSM/libSM-1.1.0.ebuild | 6 |
4 files changed, 19 insertions, 9 deletions
diff --git a/x11-libs/libSM/ChangeLog b/x11-libs/libSM/ChangeLog index 32567876a03a..dcbbc758a333 100644 --- a/x11-libs/libSM/ChangeLog +++ b/x11-libs/libSM/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/libSM # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libSM/ChangeLog,v 1.62 2009/04/16 02:11:58 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libSM/ChangeLog,v 1.63 2009/05/04 17:01:42 ssuominen Exp $ + + 04 May 2009; Samuli Suominen <ssuominen@gentoo.org> libSM-1.0.2.ebuild, + libSM-1.0.3.ebuild, libSM-1.1.0.ebuild: + Move use_ functions out of global scope. 16 Apr 2009; Jeroen Roovers <jer@gentoo.org> libSM-1.1.0.ebuild: Stable for HPPA (bug #251832). diff --git a/x11-libs/libSM/libSM-1.0.2.ebuild b/x11-libs/libSM/libSM-1.0.2.ebuild index 161eb31bd54f..0c34c68e9317 100644 --- a/x11-libs/libSM/libSM-1.0.2.ebuild +++ b/x11-libs/libSM/libSM-1.0.2.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/libSM/libSM-1.0.2.ebuild,v 1.12 2007/08/07 13:04:51 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libSM/libSM-1.0.2.ebuild,v 1.13 2009/05/04 17:01:42 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -17,4 +17,6 @@ RDEPEND="x11-libs/libICE x11-proto/xproto" DEPEND="${RDEPEND}" -CONFIGURE_OPTIONS="$(use_enable ipv6)" +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable ipv6)" +} diff --git a/x11-libs/libSM/libSM-1.0.3.ebuild b/x11-libs/libSM/libSM-1.0.3.ebuild index ed09b86eb724..94bde2764271 100644 --- a/x11-libs/libSM/libSM-1.0.3.ebuild +++ b/x11-libs/libSM/libSM-1.0.3.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/libSM/libSM-1.0.3.ebuild,v 1.8 2008/01/13 09:23:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libSM/libSM-1.0.3.ebuild,v 1.9 2009/05/04 17:01:42 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -17,4 +17,6 @@ RDEPEND="x11-libs/libICE x11-proto/xproto" DEPEND="${RDEPEND}" -CONFIGURE_OPTIONS="$(use_enable ipv6)" +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable ipv6)" +} diff --git a/x11-libs/libSM/libSM-1.1.0.ebuild b/x11-libs/libSM/libSM-1.1.0.ebuild index 77e6b1a91f04..cdf5d359e9eb 100644 --- a/x11-libs/libSM/libSM-1.1.0.ebuild +++ b/x11-libs/libSM/libSM-1.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libSM/libSM-1.1.0.ebuild,v 1.10 2009/04/16 02:11:58 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libSM/libSM-1.1.0.ebuild,v 1.11 2009/05/04 17:01:42 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -18,4 +18,6 @@ RDEPEND="x11-libs/libICE || ( sys-libs/e2fsprogs-libs sys-fs/e2fsprogs )" DEPEND="${RDEPEND}" -CONFIGURE_OPTIONS="$(use_enable ipv6)" +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable ipv6)" +} |