From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 64CBB15800D for ; Tue, 11 Jul 2023 17:14:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BD5CE0817; Tue, 11 Jul 2023 17:14:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6AC25E0817 for ; Tue, 11 Jul 2023 17:14:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 46410340D33 for ; Tue, 11 Jul 2023 17:14:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D796ACA for ; Tue, 11 Jul 2023 17:14:48 +0000 (UTC) From: "Gonçalo Negrier Duarte" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gonçalo Negrier Duarte" Message-ID: <1689095659.17a58ed04debb889dad644dbe903dc985c71421b.gonegrier.duarte@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-text/sioyek/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/sioyek/sioyek-9999.ebuild X-VCS-Directories: app-text/sioyek/ X-VCS-Committer: gonegrier.duarte X-VCS-Committer-Name: Gonçalo Negrier Duarte X-VCS-Revision: 17a58ed04debb889dad644dbe903dc985c71421b X-VCS-Branch: dev Date: Tue, 11 Jul 2023 17:14:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ddd61e5e-e749-4098-9dce-eb8ed1a9fd8a X-Archives-Hash: 93c2567384092bddd403a583d4fd5f10 commit: 17a58ed04debb889dad644dbe903dc985c71421b Author: Gonçalo Negrier Duarte gmail com> AuthorDate: Tue Jul 11 17:12:17 2023 +0000 Commit: Gonçalo Negrier Duarte gmail com> CommitDate: Tue Jul 11 17:14:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=17a58ed0 app-text/sioyek: fix ebuild Signed-off-by: Gonçalo Negrier Duarte gmail.com> app-text/sioyek/sioyek-9999.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/app-text/sioyek/sioyek-9999.ebuild b/app-text/sioyek/sioyek-9999.ebuild index 8d1c0d105..1c53974a1 100644 --- a/app-text/sioyek/sioyek-9999.ebuild +++ b/app-text/sioyek/sioyek-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit git-r3 qmake-utils desktop +inherit git-r3 qmake-utils desktop xdg EGIT_REPO_URI="https://github.com/ahrm/sioyek.git" DESCRIPTION="Sioyek is a PDF viewer with a focus on textbooks and research papers" HOMEPAGE="https://github.com/ahrm/sioyek" @@ -11,8 +11,8 @@ HOMEPAGE="https://github.com/ahrm/sioyek" LICENSE="GPL-3" SLOT="0" -BDEPEND="media-libs/harfbuzz - dev-qt/qtbase +BDEPEND="media-libs/harfbuzz + dev-qt/qtbase dev-qt/qt3d " @@ -22,8 +22,8 @@ src_compile() { emake USE_SYSTEM_HARFBUZZ=yes popd || die - eapply_user eqmake5 "CONFIG+=linux_app_image" pdf_viewer_build_config.pro + emake } src_install() { #intall bin and shaders @@ -37,5 +37,8 @@ src_install() { doicon resources/sioyek-icon-linux.png insinto /usr/share/sioyek && doins tutorial.pdf pdf_viewer/keys.config pdf_viewer/prefs.config doman resources/sioyek.1 +} -} \ No newline at end of file +pkg_postinst() { + xdg_desktop_database_update +}