diff options
Diffstat (limited to 'app-leechcraft/lc-vrooby/lc-vrooby-9999.ebuild')
-rw-r--r-- | app-leechcraft/lc-vrooby/lc-vrooby-9999.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-leechcraft/lc-vrooby/lc-vrooby-9999.ebuild b/app-leechcraft/lc-vrooby/lc-vrooby-9999.ebuild new file mode 100644 index 000000000000..a4cab9092c02 --- /dev/null +++ b/app-leechcraft/lc-vrooby/lc-vrooby-9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-vrooby/lc-vrooby-9999.ebuild,v 1.1 2013/03/08 22:08:48 maksbotan Exp $ + +EAPI="4" + +inherit leechcraft + +DESCRIPTION="Vrooby, removable device manager for LeechCraft." + +SLOT="0" +KEYWORDS="" +IUSE="debug udisks udisks2" + +DEPEND="~app-leechcraft/lc-core-${PV} + dev-qt/qtdbus:4" +RDEPEND="${DEPEND} + udisks? ( sys-fs/udisks:0 ) + udisks2? ( sys-fs/udisks:2 ) + " + +REQUIRED_USE="^^ ( udisks udisks2 )" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_enable udisks VROOBY_UDISKS) + $(cmake-utils_use_enable udisks2 VROOBY_UDISKS2) + ) + + cmake-utils_src_configure +} + +pkg_postinst() { + if use udisks2; then + elog "You have enabled the experimental UDisks2 backend. " + elog "Please try the old udisks:0-based one before " + elog "reporting issues." + fi +} |