diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 15:04:28 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-04 15:04:28 +0000 |
commit | 125c94032730da10ba789538d1614d95d0a3dc13 (patch) | |
tree | a64fad8cdc41fa114c555a4b3a857ebd97245b1d /x11-apps | |
parent | Move use_ functions out of global scope. (diff) | |
download | gentoo-2-125c94032730da10ba789538d1614d95d0a3dc13.tar.gz gentoo-2-125c94032730da10ba789538d1614d95d0a3dc13.tar.bz2 gentoo-2-125c94032730da10ba789538d1614d95d0a3dc13.zip |
Move use_ functions out of global scope.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'x11-apps')
-rw-r--r-- | x11-apps/xhost/ChangeLog | 7 | ||||
-rw-r--r-- | x11-apps/xhost/xhost-1.0.2.ebuild | 8 |
2 files changed, 10 insertions, 5 deletions
diff --git a/x11-apps/xhost/ChangeLog b/x11-apps/xhost/ChangeLog index 63359831e341..286966857c4c 100644 --- a/x11-apps/xhost/ChangeLog +++ b/x11-apps/xhost/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-apps/xhost -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xhost/ChangeLog,v 1.43 2007/10/09 09:03:56 dberkholz Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xhost/ChangeLog,v 1.44 2009/05/04 15:04:28 ssuominen Exp $ + + 04 May 2009; Samuli Suominen <ssuominen@gentoo.org> xhost-1.0.2.ebuild: + Move use_ functions out of global scope. 09 Oct 2007; Donnie Berkholz <dberkholz@gentoo.org>; -xhost-1.0.1.ebuild: Drop old ebuilds. diff --git a/x11-apps/xhost/xhost-1.0.2.ebuild b/x11-apps/xhost/xhost-1.0.2.ebuild index a37ac7c2d795..87c583892fd1 100644 --- a/x11-apps/xhost/xhost-1.0.2.ebuild +++ b/x11-apps/xhost/xhost-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-apps/xhost/xhost-1.0.2.ebuild,v 1.11 2007/09/29 10:12:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xhost/xhost-1.0.2.ebuild,v 1.12 2009/05/04 15:04:28 ssuominen Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -16,4 +16,6 @@ RDEPEND="x11-libs/libX11 x11-libs/libXmu" DEPEND="${RDEPEND}" -CONFIGURE_OPTIONS="$(use_enable ipv6)" +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable ipv6)" +} |