diff options
author | blackraven <dpisklov@gmail.com> | 2016-03-23 00:33:45 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2016-03-24 19:35:17 +0800 |
commit | 141358d4615c22629382b03534328352b3c1be2b (patch) | |
tree | 768589baee3fd9cac9eb1973838bbc1eddce1624 /sys-apps/roccat-tools/roccat-tools-3.5.0-r1.ebuild | |
parent | dev-libs/libgaminggear: retiring old version (diff) | |
download | gentoo-141358d4615c22629382b03534328352b3c1be2b.tar.gz gentoo-141358d4615c22629382b03534328352b3c1be2b.tar.bz2 gentoo-141358d4615c22629382b03534328352b3c1be2b.zip |
sys-apps/roccat-tools: retiring old version
Closes: https://github.com/gentoo/gentoo/pull/1116
Diffstat (limited to 'sys-apps/roccat-tools/roccat-tools-3.5.0-r1.ebuild')
-rw-r--r-- | sys-apps/roccat-tools/roccat-tools-3.5.0-r1.ebuild | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/sys-apps/roccat-tools/roccat-tools-3.5.0-r1.ebuild b/sys-apps/roccat-tools/roccat-tools-3.5.0-r1.ebuild deleted file mode 100644 index 6d28253d190e..000000000000 --- a/sys-apps/roccat-tools/roccat-tools-3.5.0-r1.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit readme.gentoo cmake-utils gnome2-utils udev user - -DESCRIPTION="Utility for advanced configuration of Roccat devices" - -HOMEPAGE="http://roccat.sourceforge.net/" -SRC_URI="mirror://sourceforge/roccat/${P}.tar.bz2" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE_INPUT_DEVICES=" - input_devices_roccat_arvo - input_devices_roccat_isku - input_devices_roccat_iskufx - input_devices_roccat_kone - input_devices_roccat_koneplus - input_devices_roccat_konepure - input_devices_roccat_konepuremilitary - input_devices_roccat_konepureoptical - input_devices_roccat_konextd - input_devices_roccat_konextdoptical - input_devices_roccat_kovaplus - input_devices_roccat_lua - input_devices_roccat_pyra - input_devices_roccat_savu - input_devices_roccat_ryosmk - input_devices_roccat_ryostkl - input_devices_roccat_tyon -" -IUSE="${IUSE_INPUT_DEVICES} lua lua51 lua52" -REQUIRED_USE=" - lua? ( input_devices_roccat_ryosmk ) - lua? ( ^^ ( lua51 lua52 ) ) -" - -RDEPEND=" - =dev-libs/libgaminggear-0.10* - x11-libs/gtk+:2 - x11-libs/libnotify - media-libs/libcanberra - virtual/libusb:1 - dev-libs/dbus-glib - virtual/libgudev:= - lua51? ( || ( dev-lang/lua:5.1 dev-lang/lua:0 ) ) - lua52? ( dev-lang/lua:5.2 ) -" - -DEPEND="${RDEPEND}" - -pkg_setup() { - enewgroup roccat -} - -src_configure() { - local UDEVDIR="$(get_udevdir)"/rules.d - local MODELS=${INPUT_DEVICES//roccat_/} - mycmakeargs=( - -DDEVICES=${MODELS// /;} \ - -DUDEVDIR="${UDEVDIR/"//"//}" - ) - if use lua51 ; then - mycmakeargs+=( -DWITH_LUA=5.1 ) - elif use lua52 ; then - mycmakeargs+=( -DWITH_LUA=5.2 ) - fi - cmake-utils_src_configure -} -src_install() { - cmake-utils_src_install - local stat_dir=/var/lib/roccat - keepdir $stat_dir - fowners root:roccat $stat_dir - fperms 2770 $stat_dir - readme.gentoo_src_install -} -pkg_preinst() { - gnome2_icon_savelist -} -pkg_postinst() { - gnome2_icon_cache_update - readme.gentoo_print_elog - ewarn - ewarn "Starting from version 3.0.0, executables were renamed and now prefixed with 'roccat'," - ewarn "so konextdconfig is now roccatkonextdconfig and so on" - ewarn "Everything that was ryos is now ryosmk to distinguish it from the ryostkl product range" - ewarn - ewarn "In version 3.5.0-r1 the support for Lua as a scripting language for RyosMKPro" - ewarn "ripple effects has been changed. Now in combination with USE=lua to enable it" - ewarn "one also needs to put additional use flag depending on which lua version is wanted - " - ewarn "it can be USE=lua51 for Lua 5.1 or USE=lua52 for 5.2" - ewarn -} - -pkg_postrm() { - gnome2_icon_cache_update -} |