diff options
author | Yuri Vasilevski <yvasilev@gentoo.org> | 2010-04-15 13:18:22 +0000 |
---|---|---|
committer | Yuri Vasilevski <yvasilev@gentoo.org> | 2010-04-15 13:18:22 +0000 |
commit | f1e54d5ff7729a295fcc222af979ca7f2e0e0905 (patch) | |
tree | 297ecf6e58853453ef4127957a8b973ccab29788 /x11-misc/matchbox-keyboard | |
parent | Fixed installing ChangeLog to /usr/share/doc/, thanks flameeyes (Bug #315413) (diff) | |
download | gentoo-2-f1e54d5ff7729a295fcc222af979ca7f2e0e0905.tar.gz gentoo-2-f1e54d5ff7729a295fcc222af979ca7f2e0e0905.tar.bz2 gentoo-2-f1e54d5ff7729a295fcc222af979ca7f2e0e0905.zip |
Updated to EAPI=2 for USE dependencies.
(Portage version: 2.1.7.17/cvs/Linux i686)
Diffstat (limited to 'x11-misc/matchbox-keyboard')
-rw-r--r-- | x11-misc/matchbox-keyboard/ChangeLog | 6 | ||||
-rw-r--r-- | x11-misc/matchbox-keyboard/matchbox-keyboard-0.1.ebuild | 18 |
2 files changed, 10 insertions, 14 deletions
diff --git a/x11-misc/matchbox-keyboard/ChangeLog b/x11-misc/matchbox-keyboard/ChangeLog index 8a0fd14a8f12..7148ef4c3df9 100644 --- a/x11-misc/matchbox-keyboard/ChangeLog +++ b/x11-misc/matchbox-keyboard/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/matchbox-keyboard # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/matchbox-keyboard/ChangeLog,v 1.9 2010/04/15 13:11:26 yvasilev Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/matchbox-keyboard/ChangeLog,v 1.10 2010/04/15 13:18:22 yvasilev Exp $ + + 15 Apr 2010; Yuri Vasilevski <yvasilev@gentoo.org> + matchbox-keyboard-0.1.ebuild: + Updated to EAPI=2 for USE dependencies. 15 Apr 2010; Yuri Vasilevski <yvasilev@gentoo.org> matchbox-keyboard-0.1.ebuild: diff --git a/x11-misc/matchbox-keyboard/matchbox-keyboard-0.1.ebuild b/x11-misc/matchbox-keyboard/matchbox-keyboard-0.1.ebuild index 22684d8cd59c..dad8ce5c668a 100644 --- a/x11-misc/matchbox-keyboard/matchbox-keyboard-0.1.ebuild +++ b/x11-misc/matchbox-keyboard/matchbox-keyboard-0.1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/matchbox-keyboard/matchbox-keyboard-0.1.ebuild,v 1.8 2010/04/15 13:11:26 yvasilev Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/matchbox-keyboard/matchbox-keyboard-0.1.ebuild,v 1.9 2010/04/15 13:18:22 yvasilev Exp $ + +EAPI="2" inherit versionator eutils @@ -14,23 +16,13 @@ KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86" IUSE="debug cairo" DEPEND="x11-libs/libfakekey - cairo? ( x11-libs/cairo ) + cairo? ( x11-libs/cairo[X] ) !cairo? ( x11-libs/libXft )" -pkg_setup() { - if use cairo && ! built_with_use x11-libs/cairo X ; then - eerror "In order to install ${PN} with cairo support you" - eerror "need to reinstall x11-libs/cairo with USE='X'." - die "x11-libs/cairo built without USE='X'" - fi -} - -src_compile() { +src_configure() { econf $(use_enable debug) \ $(use_enable cairo) \ || die "Configuration failed" - - emake || die "Compilation failed" } src_install() { |