diff options
author | Matt Turner <mattst88@gentoo.org> | 2023-07-21 11:28:19 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-07-21 11:33:22 -0400 |
commit | acdaec7c7aff7fb3c30a43132386c6c007577197 (patch) | |
tree | 5f8ccf0a5c2424abdddab8a9409a9e35cfbf0bf5 /net-libs/libdmapsharing/libdmapsharing-3.9.13.ebuild | |
parent | dev-python/libvirt-python: Stabilize 9.4.0 x86, #910641 (diff) | |
download | gentoo-acdaec7c7aff7fb3c30a43132386c6c007577197.tar.gz gentoo-acdaec7c7aff7fb3c30a43132386c6c007577197.tar.bz2 gentoo-acdaec7c7aff7fb3c30a43132386c6c007577197.zip |
net-libs/libdmapsharing: Version bump to 3.9.13
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'net-libs/libdmapsharing/libdmapsharing-3.9.13.ebuild')
-rw-r--r-- | net-libs/libdmapsharing/libdmapsharing-3.9.13.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/net-libs/libdmapsharing/libdmapsharing-3.9.13.ebuild b/net-libs/libdmapsharing/libdmapsharing-3.9.13.ebuild new file mode 100644 index 000000000000..bfd706c27fed --- /dev/null +++ b/net-libs/libdmapsharing/libdmapsharing-3.9.13.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome2 + +DESCRIPTION="A library that implements the DMAP family of protocols" +HOMEPAGE="https://www.flyn.org/projects/libdmapsharing/" +SRC_URI="https://www.flyn.org/projects/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="4.0/3" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="+introspection test" +RESTRICT="!test? ( test ) test" # TODO: Tests require Avahi mDNS to be running + +# Vala/libgee/gtk+:2 is only used when maintainer-mode is enabled +# Doesn't seem to be used for anything... +RDEPEND=" + >=dev-libs/glib-2.66:2 + x11-libs/gdk-pixbuf:2 + >=net-dns/avahi-0.6[dbus] + net-libs/libsoup:3.0 + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + sys-libs/zlib + introspection? ( >=dev-libs/gobject-introspection-1.30:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + dev-util/gtk-doc-am + virtual/pkgconfig + test? ( >=dev-libs/check-0.9.4 ) +" + +src_configure() { + local myconf=( + --with-mdns=avahi + $(use_enable introspection) + $(use_enable test tests) + ) + gnome2_src_configure "${myconf[@]}" +} |