commit: ad19ca4ecd7cc46d520482908367df9be8e856bf Author: Huang Rui <vowstar <AT> gmail <DOT> com> AuthorDate: Tue Oct 20 07:17:34 2020 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net> CommitDate: Tue Oct 20 07:17:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ad19ca4e
media-video/kikoplay: bump to 0.7.2 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Huang Rui <vowstar <AT> gmail.com> media-video/kikoplay/Manifest | 1 + media-video/kikoplay/kikoplay-0.7.2.ebuild | 60 ++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest index b9a3fb9b..eeac2737 100644 --- a/media-video/kikoplay/Manifest +++ b/media-video/kikoplay/Manifest @@ -1 +1,2 @@ DIST kikoplay-0.7.1.tar.gz 8176092 BLAKE2B d0798272b1e58fa45738dc8ffc5c3c14c076d9bb15feed31aa4c4076b644f4c5c910665f55c69c3babb9c8a5aed781cc46da7b43c47e81333e3608204f9f249c SHA512 4817ac9a39470598ebe965235cb0afb247fe5435d4ab6292d6d1f0219c8039dcccef5a4f3bf1a53113958be0641418cb48a7d37b74b6b610ca073b1d94121199 +DIST kikoplay-0.7.2.tar.gz 9036604 BLAKE2B 1909e8b5505110c8548923594acb2861d7d7c3bf92137d670b748bd2c2960293cdab4ba86c3c48cb32a3d276c823630de12ea8ee3665e7c4ded968fdaa9b7a5a SHA512 d80819c97dd7f02670d2ae4338961c1eab40890b7d7876fef855ba7b0fa333158da7429cff04309baf22c5a24781356ecbac9822b939dcfc403df38ffa749e93 diff --git a/media-video/kikoplay/kikoplay-0.7.2.ebuild b/media-video/kikoplay/kikoplay-0.7.2.ebuild new file mode 100644 index 00000000..05c327c6 --- /dev/null +++ b/media-video/kikoplay/kikoplay-0.7.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +GIT_PN="KikoPlay" + +inherit qmake-utils xdg + +DESCRIPTION="KikoPlay is a full-featured danmu player" +HOMEPAGE=" + https://kikoplay.fun + https://github.com/Protostars/KikoPlay +" + +if [[ "${PV}" == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git" +else + SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86" + S="${WORKDIR}/${GIT_PN}-${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" + +# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua +# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo +# With out dev-lang/lua:5.3, this package can't work +# See also: https://github.com/gentoo/guru/issues/9 +RDEPEND=" + dev-lang/lua:5.3 + dev-libs/qhttpengine:5 + dev-qt/qtconcurrent:5 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsql:5 + dev-qt/qtwidgets:5 + media-video/mpv[libmpv,-luajit] + net-misc/aria2 +" + +DEPEND=" + ${RDEPEND} +" + +BDEPEND=" + virtual/pkgconfig +" + +src_configure() { + eqmake5 PREFIX="${D}"/usr +} + +src_install() { + # Can't use default, set INSTALL_ROOT + emake INSTALL_ROOT="${D}" install +}
