Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/gcdemu/
Date: Mon, 09 Jul 2018 07:14:07
Message-Id: 1531120435.8cbbe84b5aa98acf1136f206d4da61b47c6cf1ac.mgorny@gentoo
1 commit: 8cbbe84b5aa98acf1136f206d4da61b47c6cf1ac
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 9 06:54:09 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 9 07:13:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cbbe84b
7
8 app-cdr/gcdemu: Bump to 3.2.0
9
10 app-cdr/gcdemu/Manifest | 1 +
11 app-cdr/gcdemu/gcdemu-3.2.0.ebuild | 54 ++++++++++++++++++++++++++++++++++++++
12 2 files changed, 55 insertions(+)
13
14 diff --git a/app-cdr/gcdemu/Manifest b/app-cdr/gcdemu/Manifest
15 index d199d5824c7..2e534f9ad49 100644
16 --- a/app-cdr/gcdemu/Manifest
17 +++ b/app-cdr/gcdemu/Manifest
18 @@ -1 +1,2 @@
19 DIST gcdemu-3.1.0.tar.bz2 48036 BLAKE2B 4fc14f02a7d006556bab31b82b0cb017efec2b7e3f99854567ac0e5b8211c151583e91cf72e180341077a927430688401c4ecb6112bd6758e7288c7a06e2c4ec SHA512 e3e0369cc443bc47befa52989cc2bc5d62e4c9462bb8de1c3dd8563e1240ba7f59fc8cc54aed2e96bdb23a5f6e2fa11ca36073dfa066409f097a1dca619866fc
20 +DIST gcdemu-3.2.0.tar.bz2 52144 BLAKE2B f349e4482905b0ac59bce5d6af74000e05ff9b7257c7ec8755106ac8fe316d59d19de8b72705fd9cccfa888d170776667ee07fe90311a81e78f251fee85601ee SHA512 61a1775c874c9c3604ce88758039ef80b262463ae180e791eb545811fa2176e4bf07c4dbcd3be5f17d446fdef92317a0ff64ce8d27f26aeaeee9d8134b6a95ea
21
22 diff --git a/app-cdr/gcdemu/gcdemu-3.2.0.ebuild b/app-cdr/gcdemu/gcdemu-3.2.0.ebuild
23 new file mode 100644
24 index 00000000000..02e502013f6
25 --- /dev/null
26 +++ b/app-cdr/gcdemu/gcdemu-3.2.0.ebuild
27 @@ -0,0 +1,54 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI="6"
32 +
33 +PYTHON_COMPAT=( python3_{4,5,6} )
34 +
35 +inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
36 +
37 +DESCRIPTION="Gtk+ GUI for controlling cdemu-daemon"
38 +HOMEPAGE="http://cdemu.org/"
39 +SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
46 +
47 +# librsvg for pixbuf-loader
48 +RDEPEND="${PYTHON_DEPS}
49 + app-cdr/cdemu-daemon:0/7
50 + dev-python/pygobject:3[${PYTHON_USEDEP}]
51 + gnome-base/librsvg:2
52 + x11-libs/gdk-pixbuf[introspection]
53 + x11-libs/gtk+:3[introspection]
54 + x11-libs/libnotify[introspection]"
55 +DEPEND="
56 + dev-util/desktop-file-utils
57 + >=dev-util/intltool-0.21
58 + sys-devel/gettext
59 + virtual/pkgconfig"
60 +
61 +DOCS=( AUTHORS README )
62 +
63 +src_prepare() {
64 + cmake-utils_src_prepare
65 + python_fix_shebang src/gcdemu
66 +}
67 +
68 +src_configure() {
69 + local mycmakeargs=( -DPOST_INSTALL_HOOKS=OFF )
70 + cmake-utils_src_configure
71 +}
72 +
73 +pkg_postinst() {
74 + xdg_desktop_database_update
75 + gnome2_schemas_update
76 +}
77 +
78 +pkg_postrm() {
79 + xdg_desktop_database_update
80 + gnome2_schemas_update
81 +}