You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.4 KiB
66 lines
1.4 KiB
6 years ago
|
# 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"
|
||
6 years ago
|
KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
|
||
6 years ago
|
fi
|
||
|
|
||
|
LICENSE="ZLIB"
|
||
|
SLOT="0"
|
||
|
IUSE="+magic seccomp sqlite synctex test"
|
||
|
|
||
6 years ago
|
PATCHES=( "${FILESDIR}"/${PN}-find-libm.patch )
|
||
|
|
||
6 years ago
|
RDEPEND=">=dev-libs/girara-0.3.1
|
||
6 years ago
|
>=dev-libs/glib-2.50:2
|
||
|
dev-python/sphinx
|
||
6 years ago
|
>=sys-devel/gettext-0.19.8
|
||
6 years ago
|
x11-libs/cairo
|
||
|
>=x11-libs/gtk+-3.22:3
|
||
6 years ago
|
magic? ( sys-apps/file )
|
||
6 years ago
|
seccomp? ( sys-libs/libseccomp )
|
||
6 years ago
|
sqlite? ( >=dev-db/sqlite-3.5.9:3 )
|
||
6 years ago
|
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
|
||
|
}
|