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-2.0.0.ebuild ChangeLog
Date: Sun, 08 Jun 2014 15:04:25
Message-Id: 20140608150421.2F0372004E@flycatcher.gentoo.org
1 swift 14/06/08 15:04:21
2
3 Modified: ChangeLog
4 Added: roccat-tools-2.0.0.ebuild
5 Log:
6 Bump to 2.0.0 (bug #512752) thanks to Dmitry Pisklov
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.9 sys-apps/roccat-tools/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/roccat-tools/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 30 May 2014 10:24:30 -0000 1.8
24 +++ ChangeLog 8 Jun 2014 15:04:21 -0000 1.9
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.8 2014/05/30 10:24:30 swift Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/roccat-tools/ChangeLog,v 1.9 2014/06/08 15:04:21 swift Exp $
30 +
31 +*roccat-tools-2.0.0 (08 Jun 2014)
32 +
33 + 08 Jun 2014; Sven Vermeulen <swift@g.o> +roccat-tools-2.0.0.ebuild:
34 + Bump to 2.0.0 (bug #512752) thanks to Dmitry Pisklov
35
36 *roccat-tools-1.6.0 (30 May 2014)
37
38
39
40
41 1.1 sys-apps/roccat-tools/roccat-tools-2.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/roccat-tools-2.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/roccat-tools/roccat-tools-2.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: roccat-tools-2.0.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-2.0.0.ebuild,v 1.1 2014/06/08 15:04:21 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_konextdoptical
74 input_devices_roccat_kovaplus
75 input_devices_roccat_lua
76 input_devices_roccat_pyra
77 input_devices_roccat_savu
78 input_devices_roccat_ryos
79 "
80 IUSE="${IUSE_INPUT_DEVICES}"
81
82 RDEPEND="
83 >=dev-libs/libgaminggear-0.3
84 x11-libs/gtk+:2
85 x11-libs/libnotify
86 media-libs/libcanberra
87 virtual/libusb:1
88 dev-libs/dbus-glib
89 virtual/udev[gudev]
90 "
91
92 DEPEND="${RDEPEND}"
93
94 pkg_setup() {
95 enewgroup roccat
96 }
97
98 src_configure() {
99 local UDEVDIR="$(udev_get_udevdir)"/rules.d
100 local MODELS=${INPUT_DEVICES//roccat_/}
101 mycmakeargs=( -DDEVICES=${MODELS// /;} \
102 -DUDEVDIR="${UDEVDIR/"//"//}" )
103 cmake-utils_src_configure
104 }
105 src_install() {
106 cmake-utils_src_install
107 local stat_dir=/var/lib/roccat
108 keepdir $stat_dir
109 fowners root:roccat $stat_dir
110 fperms 2770 $stat_dir
111 readme.gentoo_src_install
112 }
113 pkg_preinst() {
114 gnome2_icon_savelist
115 }
116 pkg_postinst() {
117 gnome2_icon_cache_update
118 readme.gentoo_print_elog
119 }
120
121 pkg_postrm() {
122 gnome2_icon_cache_update
123 }