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