commit: 63eeccf12fd5688e83cf2b4433e3e5428434c4e3 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon Feb 16 06:00:15 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Feb 16 06:05:24 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63eeccf1
app-cdr/cdemu-daemon: Bump to 3.3.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> app-cdr/cdemu-daemon/Manifest | 1 + app-cdr/cdemu-daemon/cdemu-daemon-3.3.0.ebuild | 52 ++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/app-cdr/cdemu-daemon/Manifest b/app-cdr/cdemu-daemon/Manifest index 898ae5b27d25..82376b030c4a 100644 --- a/app-cdr/cdemu-daemon/Manifest +++ b/app-cdr/cdemu-daemon/Manifest @@ -1 +1,2 @@ DIST cdemu-daemon-3.2.7.tar.xz 86140 BLAKE2B 09e968636bb95b0cb205a94769e2ba278f66199bb23c6db0f2860fa621f33bb37b6e55028dabec98a6fc7cf6aded42a1bb8d153381110bf38b678a74a2b5c8db SHA512 c09ae0e32526c85b6bb001a5cf8c11ed3662390e16fad8c07e5cded7febe4c586e8c677c85340fb20e321dfc3621e15b4a4220606147adc14ab969d6924778aa +DIST cdemu-daemon-3.3.0.tar.xz 90632 BLAKE2B e8e75e6ad026cc668b3849ca4fbcf89817bd4d5ae17fe92db3c09526819d0d3f2c0719ee7b903e043ac6a0b10524134c68494866c67733cb7241d6200df9c2da SHA512 7e97f57d252ffbf07f41a58c3cad52dc796e944088d4c0f7779cdd7cad234481f00e3713d232542597a84641e65d9144866d0a9a010f980f216879fd4aab92fa diff --git a/app-cdr/cdemu-daemon/cdemu-daemon-3.3.0.ebuild b/app-cdr/cdemu-daemon/cdemu-daemon-3.3.0.ebuild new file mode 100644 index 000000000000..69ebba296578 --- /dev/null +++ b/app-cdr/cdemu-daemon/cdemu-daemon-3.3.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake systemd + +DESCRIPTION="Daemon of the CDEmu optical media image mounting suite" +HOMEPAGE="https://cdemu.sourceforge.io" +SRC_URI="https://download.sourceforge.net/cdemu/cdemu-daemon/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0/7" # subslot = CDEMU_DAEMON_INTERFACE_VERSION_MAJOR in CMakeLists.txt +KEYWORDS="~amd64 ~x86" + +DEPEND=" + >=dev-libs/glib-2.64:2 + >=dev-libs/libmirage-3.2.0:= + >=media-libs/libao-0.8.0:= +" +RDEPEND=" + ${DEPEND} + sys-apps/dbus + >=sys-fs/vhba-20130607 +" +BDEPEND=" + dev-util/gdbus-codegen + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +DOCS=( AUTHORS README ) + +src_install() { + cmake_src_install + + insinto /etc/modules-load.d + newins - vhba.conf <<<"vhba" + systemd_douserunit service-example/cdemu-daemon.service + insinto /usr/share/dbus-1/services + doins service-example/net.sf.cdemu.CDEmuDaemon.service +} + +pkg_postinst() { + elog "As of 3.2.5, cdemu-daemon no longer supports autoloading" + elog "on non-systemd systems. OpenRC users have to start it manually." + elog + elog "We install /etc/modules-load.d/vhba.conf to load the module" + elog "automatically, and D-BUS autolaunch will start cdemu-daemon user" + elog "service." +}
