diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-08-08 12:04:24 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-08-08 12:04:24 +0000 |
commit | 0dc26ff740238ce20c74e714a7ee4bb7e71e0687 (patch) | |
tree | 709504954f47cd1f5f511b95f0ca7d30acd4bc6f /x11-apps/xset | |
parent | Mask sys-fs/unionfs for removal (diff) | |
download | gentoo-2-0dc26ff740238ce20c74e714a7ee4bb7e71e0687.tar.gz gentoo-2-0dc26ff740238ce20c74e714a7ee4bb7e71e0687.tar.bz2 gentoo-2-0dc26ff740238ce20c74e714a7ee4bb7e71e0687.zip |
Switch to XORG_CONFIGURE_OPTIONS, bug #378135.
(Portage version: 2.2.0_alpha49/cvs/Linux x86_64)
Diffstat (limited to 'x11-apps/xset')
-rw-r--r-- | x11-apps/xset/ChangeLog | 6 | ||||
-rw-r--r-- | x11-apps/xset/xset-1.2.2.ebuild | 10 |
2 files changed, 10 insertions, 6 deletions
diff --git a/x11-apps/xset/ChangeLog b/x11-apps/xset/ChangeLog index 89b3ffef945f..d1f68e8bc74a 100644 --- a/x11-apps/xset/ChangeLog +++ b/x11-apps/xset/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-apps/xset # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xset/ChangeLog,v 1.79 2011/08/01 21:15:53 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xset/ChangeLog,v 1.80 2011/08/08 12:04:24 chithanh Exp $ + + 08 Aug 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + xset-1.2.2.ebuild: + Switch to XORG_CONFIGURE_OPTIONS, bug #378135. *xset-1.2.2 (01 Aug 2011) diff --git a/x11-apps/xset/xset-1.2.2.ebuild b/x11-apps/xset/xset-1.2.2.ebuild index 70fce989d951..305e05753f74 100644 --- a/x11-apps/xset/xset-1.2.2.ebuild +++ b/x11-apps/xset/xset-1.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xset/xset-1.2.2.ebuild,v 1.1 2011/08/01 21:15:53 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xset/xset-1.2.2.ebuild,v 1.2 2011/08/08 12:04:24 chithanh Exp $ EAPI=4 @@ -17,7 +17,7 @@ RDEPEND=" x11-libs/libXext" DEPEND="${RDEPEND}" -pkg_setup() { - CONFIGURE_OPTIONS="--without-xf86misc --without-fontcache" - xorg-2_pkg_setup -} +XORG_CONFIGURE_OPTIONS=( + --without-xf86misc + --without-fontcache +) |