Gentoo Archives: gentoo-commits

From: "Sven Vermeulen (swift)" <swift@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/roccat-tools: roccat-tools-1.6.0.ebuild ChangeLog
Date: Fri, 30 May 2014 10:24:34
Message-Id: 20140530102430.6D86D2004E@flycatcher.gentoo.org
1 swift 14/05/30 10:24:30
2
3 Modified: ChangeLog
4 Added: roccat-tools-1.6.0.ebuild
5 Log:
6 Add roccat-tools-1.6.0 thanks to Dmitry Pisklov (bug #511524)
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47)
9
10 Revision Changes Path
11 1.8 sys-apps/roccat-tools/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/roccat-tools/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 3 Mar 2014 20:10:40 -0000 1.7
24 +++ ChangeLog 30 May 2014 10:24:30 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/roccat-tools
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/roccat-tools/ChangeLog,v 1.7 2014/03/03 20:10:40 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/roccat-tools/ChangeLog,v 1.8 2014/05/30 10:24:30 swift Exp $
30 +
31 +*roccat-tools-1.6.0 (30 May 2014)
32 +
33 + 30 May 2014; Sven Vermeulen <swift@g.o> +roccat-tools-1.6.0.ebuild:
34 + Add roccat-tools-1.6.0 thanks to Dmitry Pisklov (bug #511524)
35
36 *roccat-tools-1.4.1 (03 Mar 2014)
37
38
39
40
41 1.1 sys-apps/roccat-tools/roccat-tools-1.6.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/roccat-tools-1.6.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/roccat-tools-1.6.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: roccat-tools-1.6.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/roccat-tools/roccat-tools-1.6.0.ebuild,v 1.1 2014/05/30 10:24:30 swift Exp $
51
52 EAPI=5
53
54 inherit readme.gentoo cmake-utils gnome2-utils udev user
55
56 DESCRIPTION="Utility for advanced configuration of Roccat devices"
57
58 HOMEPAGE="http://roccat.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/roccat/${P}.tar.bz2"
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE_INPUT_DEVICES="
64 input_devices_roccat_arvo
65 input_devices_roccat_isku
66 input_devices_roccat_iskufx
67 input_devices_roccat_kone
68 input_devices_roccat_koneplus
69 input_devices_roccat_konepure
70 input_devices_roccat_konepuremilitary
71 input_devices_roccat_konepureoptical
72 input_devices_roccat_konextd
73 input_devices_roccat_kovaplus
74 input_devices_roccat_lua
75 input_devices_roccat_pyra
76 input_devices_roccat_savu
77 input_devices_roccat_ryos
78 "
79 IUSE="${IUSE_INPUT_DEVICES}"
80
81 REQUIRED_USE="input_devices_roccat_konextd? ( input_devices_roccat_koneplus )"
82
83 RDEPEND="
84 dev-libs/libgaminggear
85 x11-libs/gtk+:2
86 x11-libs/libnotify
87 media-libs/libcanberra
88 virtual/libusb:1
89 dev-libs/dbus-glib
90 virtual/udev[gudev]
91 "
92
93 DEPEND="${RDEPEND}"
94
95 pkg_setup() {
96 enewgroup roccat
97 }
98
99 src_configure() {
100 local UDEVDIR="$(udev_get_udevdir)"/rules.d
101 local MODELS=${INPUT_DEVICES//roccat_/}
102 mycmakeargs=( -DDEVICES=${MODELS// /;} \
103 -DUDEVDIR="${UDEVDIR/"//"//}" )
104 cmake-utils_src_configure
105 }
106 src_install() {
107 cmake-utils_src_install
108 local stat_dir=/var/lib/roccat
109 keepdir $stat_dir
110 fowners root:roccat $stat_dir
111 fperms 2770 $stat_dir
112 readme.gentoo_src_install
113 }
114 pkg_preinst() {
115 gnome2_icon_savelist
116 }
117 pkg_postinst() {
118 gnome2_icon_cache_update
119 readme.gentoo_print_elog
120 }
121
122 pkg_postrm() {
123 gnome2_icon_cache_update
124 }