diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2024-10-01 15:14:13 -0400 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2024-10-01 15:14:13 -0400 |
commit | 6cdf3f05bf00d4c61757eca004ac24ea9767ff88 (patch) | |
tree | 955231680345d09e1f18d8b218eb5861fee8e119 /app-text/zathura/zathura-0.5.2-r3.ebuild | |
parent | 552e7282232777e70e8dc20a647e5a6f0ec748b6 (diff) | |
download | gentoo-overlay-6cdf3f05bf00d4c61757eca004ac24ea9767ff88.tar.xz gentoo-overlay-6cdf3f05bf00d4c61757eca004ac24ea9767ff88.zip |
app-text/zathura: remove
Diffstat (limited to 'app-text/zathura/zathura-0.5.2-r3.ebuild')
-rw-r--r-- | app-text/zathura/zathura-0.5.2-r3.ebuild | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/app-text/zathura/zathura-0.5.2-r3.ebuild b/app-text/zathura/zathura-0.5.2-r3.ebuild deleted file mode 100644 index da82595..0000000 --- a/app-text/zathura/zathura-0.5.2-r3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson virtualx xdg - -DESCRIPTION="A highly customizable and functional document viewer" -HOMEPAGE="https://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://github.com/pwmt/zathura/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux" -fi - -LICENSE="ZLIB" -SLOT="0/$(ver_cut 1-2)" -IUSE="seccomp sqlite synctex test" - -RESTRICT="!test? ( test )" - -DEPEND=">=dev-libs/girara-0.3.7 - >=dev-libs/glib-2.50:2 - >=sys-devel/gettext-0.19.8 - x11-libs/cairo - >=x11-libs/gtk+-3.22:3 - sys-apps/file - seccomp? ( sys-libs/libseccomp ) - sqlite? ( >=dev-db/sqlite-3.5.9:3 ) - synctex? ( app-text/texlive-core )" - -RDEPEND="${DEPEND}" - -BDEPEND="dev-python/docutils - test? ( dev-libs/appstream-glib - dev-libs/check ) - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/zathura-disable-seccomp-tests.patch - "${FILESDIR}/zathura-docutils.patch" -) - -src_configure() { - local emesonargs=( - -Dconvert-icon=disabled - -Dmanpages=enabled - -Dseccomp=$(usex seccomp enabled disabled) - -Dsqlite=$(usex sqlite enabled disabled) - -Dsynctex=$(usex synctex enabled disabled) - ) - meson_src_configure -} - -src_test() { - virtx meson_src_test -} |