Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/zathura/
Date: Sun, 25 Nov 2018 15:53:13
Message-Id: 1543161186.057bb6c4f69f3ac80c11a0da01faf24331db1cb7.zlogene@gentoo
1 commit: 057bb6c4f69f3ac80c11a0da01faf24331db1cb7
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 25 15:52:49 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 25 15:53:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=057bb6c4
7
8 app-text/zathura: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-text/zathura/zathura-0.4.1.ebuild | 66 -----------------------------------
14 1 file changed, 66 deletions(-)
15
16 diff --git a/app-text/zathura/zathura-0.4.1.ebuild b/app-text/zathura/zathura-0.4.1.ebuild
17 deleted file mode 100644
18 index 49a7c2c2421..00000000000
19 --- a/app-text/zathura/zathura-0.4.1.ebuild
20 +++ /dev/null
21 @@ -1,66 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit gnome2-utils meson virtualx xdg-utils
28 -
29 -DESCRIPTION="A highly customizable and functional document viewer"
30 -HOMEPAGE="http://pwmt.org/projects/zathura/"
31 -
32 -if [[ ${PV} == *9999 ]]; then
33 - inherit git-r3
34 - EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git"
35 - EGIT_BRANCH="develop"
36 -else
37 - SRC_URI="https://pwmt.org/projects/zathura/download/${P}.tar.xz"
38 - KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
39 -fi
40 -
41 -LICENSE="ZLIB"
42 -SLOT="0"
43 -IUSE="+magic seccomp sqlite synctex test"
44 -
45 -PATCHES=( "${FILESDIR}"/${PN}-find-libm.patch )
46 -
47 -RDEPEND="dev-libs/appstream
48 - >=dev-libs/girara-0.3.1
49 - >=dev-libs/glib-2.50:2
50 - dev-util/desktop-file-utils
51 - dev-python/sphinx
52 - x11-libs/cairo
53 - >=x11-libs/gtk+-3.22:3
54 - magic? ( sys-apps/file )
55 - seccomp? ( sys-libs/libseccomp )
56 - sqlite? ( >=dev-db/sqlite-3.5.9:3 )
57 - synctex? ( app-text/texlive-core )"
58 -
59 -DEPEND="${RDEPEND}
60 - test? ( dev-libs/check )"
61 -
62 -BDEPEND="virtual/pkgconfig"
63 -
64 -src_configure() {
65 - local emesonargs=(
66 - --libdir=/usr/$(get_libdir)
67 - -Denable-magic=$(usex magic true false)
68 - -Denable-seccomp=$(usex seccomp true false)
69 - -Denable-sqlite=$(usex sqlite true false)
70 - -Denable-synctex=$(usex synctex true false)
71 - )
72 - meson_src_configure
73 -}
74 -
75 -src_test() {
76 - virtx meson_src_test
77 -}
78 -
79 -pkg_postinst() {
80 - gnome2_icon_cache_update
81 - xdg_desktop_database_update
82 -}
83 -
84 -pkg_postrm() {
85 - gnome2_icon_cache_update
86 - xdg_desktop_database_update
87 -}