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/cdemu-daemon/
Date: Tue, 05 Mar 2019 14:29:14
Message-Id: 1551796139.3989919258db66312b9eb0330f09878312e8f65b.mgorny@gentoo
1 commit: 3989919258db66312b9eb0330f09878312e8f65b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 5 14:16:17 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 5 14:28:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39899192
7
8 app-cdr/cdemu-daemon: Bump to 3.2.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-cdr/cdemu-daemon/Manifest | 1 +
13 app-cdr/cdemu-daemon/cdemu-daemon-3.2.2.ebuild | 42 ++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/app-cdr/cdemu-daemon/Manifest b/app-cdr/cdemu-daemon/Manifest
17 index df95cd81978..c2be8990586 100644
18 --- a/app-cdr/cdemu-daemon/Manifest
19 +++ b/app-cdr/cdemu-daemon/Manifest
20 @@ -1 +1,2 @@
21 DIST cdemu-daemon-3.2.1.tar.bz2 82426 BLAKE2B 282b1a62ca3a770e709ff31ee7b72ed9f5e102c5f318a765a99421c93881e9ecacfdc5867af494e69dddda40603c8eb6cc8904a7c82fec004a6d5644a28a9f87 SHA512 399dbb818de8a550bd31784a5a7f0adb9d2e35d922ba71f341df81d20fd7e5ebaba5f31db1554caca17919325773f9ec6bb3d5ae99afa5d6eaf5b22142e010ee
22 +DIST cdemu-daemon-3.2.2.tar.bz2 82366 BLAKE2B d21436a5dbf1c6d953aa7ceb58e5d4580931391ea407c45de8f7c7154c181aef76535833bf02999d77d3a9e0c624db1124a9d333d028e206844a1256b3c5dde0 SHA512 4010bad27d5f595d20e1666700d32c2fb3f943f2e50645317bcc8fbbbba58cd61b3f6d3276e91fff55f449e44291abc776a56ded7c4f0bb7901ac247da72d7fe
23
24 diff --git a/app-cdr/cdemu-daemon/cdemu-daemon-3.2.2.ebuild b/app-cdr/cdemu-daemon/cdemu-daemon-3.2.2.ebuild
25 new file mode 100644
26 index 00000000000..08e6bd4b49a
27 --- /dev/null
28 +++ b/app-cdr/cdemu-daemon/cdemu-daemon-3.2.2.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +
35 +inherit cmake-utils
36 +
37 +DESCRIPTION="Daemon of the CDEmu optical media image mounting suite"
38 +HOMEPAGE="http://cdemu.org"
39 +SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0/7" # subslot = CDEMU_DAEMON_INTERFACE_VERSION_MAJOR in CMakeLists.txt
43 +KEYWORDS="~amd64 ~hppa ~x86"
44 +IUSE=""
45 +
46 +COMMON_DEPEND=">=dev-libs/glib-2.38:2
47 + >=dev-libs/libmirage-3.2.0:=
48 + >=media-libs/libao-0.8.0:="
49 +DEPEND="${COMMON_DEPEND}
50 + dev-util/intltool
51 + sys-devel/gettext
52 + virtual/pkgconfig"
53 +RDEPEND="${COMMON_DEPEND}
54 + sys-apps/dbus
55 + >=sys-fs/vhba-20130607"
56 +
57 +DOCS=( AUTHORS README )
58 +
59 +pkg_postinst() {
60 + elog "You will need to load the vhba module to use cdemu devices:"
61 + elog " # modprobe vhba"
62 + elog "To automatically load the vhba module at boot time, edit your"
63 + elog "/etc/conf.d/modules file."
64 +
65 + if [[ -e "${ROOT}etc/conf.d/cdemud" ]]; then
66 + elog
67 + elog "${PN} no longer installs an init.d service; instead, it is"
68 + elog "automatically activated when needed via dbus."
69 + elog "You can therefore remove ${ROOT%/}/etc/conf.d/cdemud"
70 + fi
71 +}