diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 15:56:17 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 15:56:17 +0000 |
commit | 82713d7d610483ea72a9bb6cae28af0409333447 (patch) | |
tree | 4d91dffd468dea4834fe97449f0dc5f424655eb1 | |
parent | Move use_ functions out of global scope. (diff) | |
download | gentoo-2-82713d7d610483ea72a9bb6cae28af0409333447.tar.gz gentoo-2-82713d7d610483ea72a9bb6cae28af0409333447.tar.bz2 gentoo-2-82713d7d610483ea72a9bb6cae28af0409333447.zip |
Move use_ functions out of global scope.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
-rw-r--r-- | x11-drivers/xf86-video-via/ChangeLog | 6 | ||||
-rw-r--r-- | x11-drivers/xf86-video-via/xf86-video-via-0.2.1-r1.ebuild | 7 | ||||
-rw-r--r-- | x11-drivers/xf86-video-via/xf86-video-via-0.2.2.ebuild | 6 |
3 files changed, 14 insertions, 5 deletions
diff --git a/x11-drivers/xf86-video-via/ChangeLog b/x11-drivers/xf86-video-via/ChangeLog index 5c22fb77284c..bca3278a7d05 100644 --- a/x11-drivers/xf86-video-via/ChangeLog +++ b/x11-drivers/xf86-video-via/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-drivers/xf86-video-via # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-via/ChangeLog,v 1.37 2009/03/13 16:08:48 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-via/ChangeLog,v 1.38 2009/05/04 15:56:17 ssuominen Exp $ + + 04 May 2009; Samuli Suominen <ssuominen@gentoo.org> + xf86-video-via-0.2.1-r1.ebuild, xf86-video-via-0.2.2.ebuild: + Move use_ functions out of global scope. 13 Mar 2009; Raúl Porcel <armin76@gentoo.org> xf86-video-via-0.2.1-r1.ebuild, xf86-video-via-0.2.2.ebuild: diff --git a/x11-drivers/xf86-video-via/xf86-video-via-0.2.1-r1.ebuild b/x11-drivers/xf86-video-via/xf86-video-via-0.2.1-r1.ebuild index d41daaccb2d2..fea6636e4f3c 100644 --- a/x11-drivers/xf86-video-via/xf86-video-via-0.2.1-r1.ebuild +++ b/x11-drivers/xf86-video-via/xf86-video-via-0.2.1-r1.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-drivers/xf86-video-via/xf86-video-via-0.2.1-r1.ebuild,v 1.9 2009/03/13 16:08:48 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-via/xf86-video-via-0.2.1-r1.ebuild,v 1.10 2009/05/04 15:56:17 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -24,4 +24,7 @@ DEPEND="${RDEPEND} x11-libs/libX11 )" PATCHES="${FILESDIR}/missing-assert.patch" -CONFIGURE_OPTIONS="$(use_enable dri)" + +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable dri)" +} diff --git a/x11-drivers/xf86-video-via/xf86-video-via-0.2.2.ebuild b/x11-drivers/xf86-video-via/xf86-video-via-0.2.2.ebuild index bf6ca9af0ace..0903fb0d1fae 100644 --- a/x11-drivers/xf86-video-via/xf86-video-via-0.2.2.ebuild +++ b/x11-drivers/xf86-video-via/xf86-video-via-0.2.2.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-drivers/xf86-video-via/xf86-video-via-0.2.2.ebuild,v 1.8 2009/03/13 16:08:48 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-via/xf86-video-via-0.2.2.ebuild,v 1.9 2009/05/04 15:56:17 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -24,4 +24,6 @@ DEPEND="${RDEPEND} >=x11-libs/libdrm-2 x11-libs/libX11 )" -CONFIGURE_OPTIONS="$(use_enable dri)" +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable dri)" +} |