diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2018-12-23 11:12:52 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-12-23 11:12:52 +0300 |
commit | 0684d7ca62a3e54556e4e93dd093b08a11c88125 (patch) | |
tree | 234b4a53b7dab5b20a02028f1dd10b6d1057de13 /app-text | |
parent | www-plugins/chrome-binary-plugins: automated update (diff) | |
download | gentoo-0684d7ca62a3e54556e4e93dd093b08a11c88125.tar.gz gentoo-0684d7ca62a3e54556e4e93dd093b08a11c88125.tar.bz2 gentoo-0684d7ca62a3e54556e4e93dd093b08a11c88125.zip |
app-text/zathura: Add missing gettext dependency
Closes: https://bugs.gentoo.org/671850
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/zathura/zathura-0.4.1-r2.ebuild | 65 | ||||
-rw-r--r-- | app-text/zathura/zathura-9999.ebuild | 1 |
2 files changed, 66 insertions, 0 deletions
diff --git a/app-text/zathura/zathura-0.4.1-r2.ebuild b/app-text/zathura/zathura-0.4.1-r2.ebuild new file mode 100644 index 000000000000..834f69ea245a --- /dev/null +++ b/app-text/zathura/zathura-0.4.1-r2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils meson virtualx xdg-utils + +DESCRIPTION="A highly customizable and functional document viewer" +HOMEPAGE="http://pwmt.org/projects/zathura/" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git" + EGIT_BRANCH="develop" +else + SRC_URI="https://pwmt.org/projects/zathura/download/${P}.tar.xz" + KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux" +fi + +LICENSE="ZLIB" +SLOT="0" +IUSE="+magic seccomp sqlite synctex test" + +PATCHES=( "${FILESDIR}"/${PN}-find-libm.patch ) + +RDEPEND=">=dev-libs/girara-0.3.1 + >=dev-libs/glib-2.50:2 + dev-python/sphinx + >=sys-devel/gettext-0.19.8 + x11-libs/cairo + >=x11-libs/gtk+-3.22:3 + magic? ( sys-apps/file ) + seccomp? ( sys-libs/libseccomp ) + sqlite? ( >=dev-db/sqlite-3.5.9:3 ) + synctex? ( app-text/texlive-core )" + +DEPEND="${RDEPEND} + test? ( dev-libs/check )" + +BDEPEND="virtual/pkgconfig" + +src_configure() { + local emesonargs=( + --libdir=/usr/$(get_libdir) + -Denable-magic=$(usex magic true false) + -Denable-seccomp=$(usex seccomp true false) + -Denable-sqlite=$(usex sqlite true false) + -Denable-synctex=$(usex synctex true false) + ) + meson_src_configure +} + +src_test() { + virtx meson_src_test +} + +pkg_postinst() { + gnome2_icon_cache_update + xdg_desktop_database_update +} + +pkg_postrm() { + gnome2_icon_cache_update + xdg_desktop_database_update +} diff --git a/app-text/zathura/zathura-9999.ebuild b/app-text/zathura/zathura-9999.ebuild index 5c1589d3c931..fced4c2aa2b9 100644 --- a/app-text/zathura/zathura-9999.ebuild +++ b/app-text/zathura/zathura-9999.ebuild @@ -24,6 +24,7 @@ IUSE="+magic seccomp sqlite synctex test" RDEPEND=">=dev-libs/girara-0.3.1 >=dev-libs/glib-2.50:2 dev-python/sphinx + >=sys-devel/gettext-0.19.8 x11-libs/cairo >=x11-libs/gtk+-3.22:3 magic? ( sys-apps/file ) |