diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 16:54:37 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 16:54:37 +0000 |
commit | 1cb3343014ba9c4c98913c22ee6b4a2bb7d25aae (patch) | |
tree | ed84cd3ecf8e71d3f38a0d835b9c56ff18a27ca6 /x11-drivers/xf86-video-mach64 | |
parent | Move use_ functions out of global scope. (diff) | |
download | gentoo-2-1cb3343014ba9c4c98913c22ee6b4a2bb7d25aae.tar.gz gentoo-2-1cb3343014ba9c4c98913c22ee6b4a2bb7d25aae.tar.bz2 gentoo-2-1cb3343014ba9c4c98913c22ee6b4a2bb7d25aae.zip |
Move use_ functions out of global scope.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'x11-drivers/xf86-video-mach64')
-rw-r--r-- | x11-drivers/xf86-video-mach64/ChangeLog | 6 | ||||
-rw-r--r-- | x11-drivers/xf86-video-mach64/xf86-video-mach64-6.8.0.ebuild | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/x11-drivers/xf86-video-mach64/ChangeLog b/x11-drivers/xf86-video-mach64/ChangeLog index 9dddfb8dda7e..7d639ca976dc 100644 --- a/x11-drivers/xf86-video-mach64/ChangeLog +++ b/x11-drivers/xf86-video-mach64/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-drivers/xf86-video-mach64 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/ChangeLog,v 1.8 2009/04/15 15:53:44 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/ChangeLog,v 1.9 2009/05/04 16:54:37 ssuominen Exp $ + + 04 May 2009; Samuli Suominen <ssuominen@gentoo.org> + xf86-video-mach64-6.8.0.ebuild: + Move use_ functions out of global scope. 15 Apr 2009; Raúl Porcel <armin76@gentoo.org> xf86-video-mach64-6.8.0.ebuild: diff --git a/x11-drivers/xf86-video-mach64/xf86-video-mach64-6.8.0.ebuild b/x11-drivers/xf86-video-mach64/xf86-video-mach64-6.8.0.ebuild index 45d59ad26f4b..3ceee5326c18 100644 --- a/x11-drivers/xf86-video-mach64/xf86-video-mach64-6.8.0.ebuild +++ b/x11-drivers/xf86-video-mach64/xf86-video-mach64-6.8.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-drivers/xf86-video-mach64/xf86-video-mach64-6.8.0.ebuild,v 1.7 2009/04/15 15:53:44 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/xf86-video-mach64-6.8.0.ebuild,v 1.8 2009/05/04 16:54:37 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -27,6 +27,8 @@ DEPEND="${RDEPEND} x11-proto/xf86driproto >=x11-libs/libdrm-2 )" -CONFIGURE_OPTIONS="$(use_enable dri)" - PATCHES="" + +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable dri)" +} |