diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 16:45:07 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 16:45:07 +0000 |
commit | f059072ccf6921c3536b896112179c4646c47ccd (patch) | |
tree | 5111c09296774c2df10ed126e1f9292000aa0f3d /x11-drivers/xf86-video-r128 | |
parent | Replaced dpkg-1.14.25-start-stop-daemon.8.patch to handle nls and install man... (diff) | |
download | historical-f059072ccf6921c3536b896112179c4646c47ccd.tar.gz historical-f059072ccf6921c3536b896112179c4646c47ccd.tar.bz2 historical-f059072ccf6921c3536b896112179c4646c47ccd.zip |
Move use_ functions out of global scope.
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'x11-drivers/xf86-video-r128')
-rw-r--r-- | x11-drivers/xf86-video-r128/ChangeLog | 6 | ||||
-rw-r--r-- | x11-drivers/xf86-video-r128/xf86-video-r128-6.8.0.ebuild | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/x11-drivers/xf86-video-r128/ChangeLog b/x11-drivers/xf86-video-r128/ChangeLog index e989095244fa..736b3e43b9f3 100644 --- a/x11-drivers/xf86-video-r128/ChangeLog +++ b/x11-drivers/xf86-video-r128/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-drivers/xf86-video-r128 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-r128/ChangeLog,v 1.9 2009/04/15 15:55:32 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-r128/ChangeLog,v 1.10 2009/05/04 16:45:07 ssuominen Exp $ + + 04 May 2009; Samuli Suominen <ssuominen@gentoo.org> + xf86-video-r128-6.8.0.ebuild: + Move use_ functions out of global scope. 15 Apr 2009; Raúl Porcel <armin76@gentoo.org> xf86-video-r128-6.8.0.ebuild: diff --git a/x11-drivers/xf86-video-r128/xf86-video-r128-6.8.0.ebuild b/x11-drivers/xf86-video-r128/xf86-video-r128-6.8.0.ebuild index 70fb35cb9e38..0872e18dd05a 100644 --- a/x11-drivers/xf86-video-r128/xf86-video-r128-6.8.0.ebuild +++ b/x11-drivers/xf86-video-r128/xf86-video-r128-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-r128/xf86-video-r128-6.8.0.ebuild,v 1.9 2009/04/15 15:55:32 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-r128/xf86-video-r128-6.8.0.ebuild,v 1.10 2009/05/04 16:45:07 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)" +} |