From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/gerbera/
Date: Wed, 6 Oct 2021 01:08:47 +0000 (UTC) [thread overview]
Message-ID: <1633482500.df1b54948d3a7ce0a3dcfc1cc89dc569c3159c65.sam@gentoo> (raw)
commit: df1b54948d3a7ce0a3dcfc1cc89dc569c3159c65
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 6 01:08:20 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 6 01:08:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df1b5494
net-misc/gerbera: add 1.9.2
Closes: https://bugs.gentoo.org/816483
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/gerbera/Manifest | 1 +
net-misc/gerbera/gerbera-1.9.2.ebuild | 90 +++++++++++++++++++++++++++++++++++
2 files changed, 91 insertions(+)
diff --git a/net-misc/gerbera/Manifest b/net-misc/gerbera/Manifest
index dbac2f4fe5b..9fb05e28eae 100644
--- a/net-misc/gerbera/Manifest
+++ b/net-misc/gerbera/Manifest
@@ -1 +1,2 @@
DIST gerbera-1.8.2.tar.gz 3589779 BLAKE2B 120654d5a9d1ac7dd29da401f2ca040e3331a27dd22a52fdc9c9a958a1a8e918ae6ca76926e636184f3b91475797432728462106eb4fbdc146737e88da07d8e7 SHA512 3831030b4960613e487bdba92323a4b8d7ed63352c1c9eb1ca5eacd3c91d4864d48ef1d1bec19a98b6abed0a827d18ba7940a814fe174b44c2808ad7b85a8756
+DIST gerbera-1.9.2.tar.gz 3671452 BLAKE2B 1553370fe35c32ca5925559da05fb4a27db4c8b765eeecabf9c5be967dbd2bd99c2726129e0c2e49930b8e95ddbabb7829c65107c75cda4d6885ff72b695b512 SHA512 91c7215b0bae000d4d8b29797947b29609e81c9387547e199936ce385ef679048a7554d24cd80ab73fc83c4288b29fc4928a23add6f67a1da05501c87afdf7a3
diff --git a/net-misc/gerbera/gerbera-1.9.2.ebuild b/net-misc/gerbera/gerbera-1.9.2.ebuild
new file mode 100644
index 00000000000..49bd780a49a
--- /dev/null
+++ b/net-misc/gerbera/gerbera-1.9.2.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake linux-info
+
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://github.com/gerbera/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/gerbera/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+ S="${WORKDIR}/${P}"
+fi
+
+DESCRIPTION="UPnP Media Server"
+HOMEPAGE="https://gerbera.io"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="curl debug +exif exiv2 +ffmpeg ffmpegthumbnailer +javascript lastfm +magic +matroska mysql systemd +taglib"
+
+DEPEND="
+ acct-user/gerbera
+ >=net-libs/libupnp-1.14.0:=[ipv6,reuseaddr,-blocking-tcp]
+ >=dev-db/sqlite-3
+ dev-libs/spdlog:=
+ dev-libs/pugixml
+ dev-libs/libfmt:0=
+ dev-libs/libebml:=
+ mysql? ( dev-db/mysql-connector-c )
+ javascript? ( dev-lang/duktape:= )
+ taglib? ( >=media-libs/taglib-1.11 )
+ lastfm? ( >=media-libs/lastfmlib-0.4 )
+ exif? ( media-libs/libexif )
+ exiv2? ( media-gfx/exiv2 )
+ ffmpeg? ( >=media-video/ffmpeg-2.2:0= )
+ ffmpegthumbnailer? ( media-video/ffmpegthumbnailer )
+ curl? ( net-misc/curl )
+ magic? ( sys-apps/file )
+ matroska? ( media-libs/libmatroska:= )
+ sys-apps/util-linux
+ sys-libs/zlib
+ virtual/libiconv
+"
+RDEPEND="${DEPEND}"
+
+CONFIG_CHECK="~INOTIFY_USER"
+
+src_configure() {
+ local mycmakeargs=(
+ -DWITH_CURL=$(usex curl)
+ -DWITH_DEBUG=$(usex debug)
+ -DWITH_EXIF=$(usex exif)
+ -DWITH_EXIV2=$(usex exiv2)
+ -DWITH_AVCODEC=$(usex ffmpeg)
+ -DWITH_FFMPEGTHUMBNAILER=$(usex ffmpegthumbnailer)
+ -DWITH_JS=$(usex javascript)
+ -DWITH_LASTFM=$(usex lastfm)
+ -DWITH_MAGIC=$(usex magic)
+ -DWITH_MATROSKA=$(usex matroska)
+ -DWITH_MYSQL=$(usex mysql)
+ -DWITH_SYSTEMD=$(usex systemd)
+ -DWITH_TAGLIB=$(usex taglib)
+ -DWITH_INOTIFY=1
+ )
+
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+
+ newinitd "${FILESDIR}"/${PN}-1.0.0.initd ${PN}
+ newconfd "${FILESDIR}"/${PN}-1.0.0.confd ${PN}
+
+ insinto /etc/${PN}
+ newins "${FILESDIR}"/${PN}-1.3.0.config config.xml
+ fperms 0640 /etc/${PN}/config.xml
+ fowners root:gerbera /etc/${PN}/config.xml
+}
+
+pkg_postinst() {
+ if use mysql ; then
+ elog "Gerbera has been built with MySQL support and needs"
+ elog "to be configured before being started. By default"
+ elog "SQLite will be used."
+ fi
+}
next reply other threads:[~2021-10-06 1:08 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-06 1:08 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-21 10:47 [gentoo-commits] repo/gentoo:master commit in: net-misc/gerbera/ Joonas Niilola
2024-10-21 5:31 Joonas Niilola
2024-10-20 16:16 Joonas Niilola
2024-10-20 16:16 Joonas Niilola
2024-10-20 16:16 Joonas Niilola
2024-10-20 16:16 Joonas Niilola
2024-10-20 16:16 Joonas Niilola
2024-08-25 20:27 Eli Schwartz
2024-08-14 15:55 Sam James
2024-07-13 10:48 Yixun Lan
2024-07-13 10:48 Yixun Lan
2024-06-07 11:28 Viorel Munteanu
2024-06-07 11:28 Viorel Munteanu
2024-06-07 11:28 Viorel Munteanu
2023-10-20 16:54 Sam James
2023-10-19 14:06 Florian Schmaus
2023-01-20 1:34 Sam James
2023-01-20 1:34 Sam James
2023-01-20 1:34 Sam James
2022-11-22 13:26 Joonas Niilola
2022-11-22 13:26 Joonas Niilola
2022-11-22 13:26 Joonas Niilola
2022-10-06 21:43 Conrad Kostecki
2022-07-06 19:33 Sam James
2022-05-07 5:28 Sam James
2022-05-07 5:28 Sam James
2022-03-18 14:00 Joonas Niilola
2022-03-18 14:00 Joonas Niilola
2022-03-16 22:58 Sam James
2022-03-16 22:58 Sam James
2022-03-16 22:58 Sam James
2021-06-05 12:07 Ian Whyman
2021-04-16 10:25 David Seifert
2021-02-27 15:19 Ian Whyman
2021-02-07 14:48 Ian Whyman
2020-11-13 16:57 Sam James
2020-09-19 9:28 Ian Whyman
2020-08-20 1:11 Matt Turner
2020-06-03 21:44 David Seifert
2020-05-09 9:49 Ian Whyman
2020-04-26 8:59 Mikle Kolyada
2020-01-29 21:22 Ian Whyman
2019-11-22 21:04 Ian Whyman
2019-11-17 17:44 Ian Whyman
2019-10-28 16:48 Ian Whyman
2019-07-07 9:21 Ian Whyman
2019-04-04 19:13 Ian Whyman
2019-01-31 21:10 Ian Whyman
2019-01-01 14:27 Ian Whyman
2019-01-01 14:27 Ian Whyman
2018-05-05 17:29 Ian Whyman
2018-05-05 10:19 Ian Whyman
2018-04-05 21:21 Ian Whyman
2017-12-04 20:21 Ian Whyman
2017-09-30 15:34 Ian Whyman
2017-06-26 18:59 Ian Whyman
2017-06-17 12:36 Ian Whyman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1633482500.df1b54948d3a7ce0a3dcfc1cc89dc569c3159c65.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox