Gentoo Archives: gentoo-commits

From: Michael Weber <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/zathura/
Date: Sun, 28 Jan 2018 16:19:20
Message-Id: 1517156328.27e3f573662ed8aed43d34a5e7a3d550c4833a40.xmw@gentoo
1 commit: 27e3f573662ed8aed43d34a5e7a3d550c4833a40
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 28 15:30:38 2018 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 28 16:18:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27e3f573
7
8 app-text/zathura: Remove old.
9
10 Package-Manager: Portage-2.3.20, Repoman-2.3.6
11
12 app-text/zathura/Manifest | 1 -
13 app-text/zathura/zathura-0.2.9.ebuild | 67 -----------------------------------
14 2 files changed, 68 deletions(-)
15
16 diff --git a/app-text/zathura/Manifest b/app-text/zathura/Manifest
17 index eedd08cae54..6999e7b07e2 100644
18 --- a/app-text/zathura/Manifest
19 +++ b/app-text/zathura/Manifest
20 @@ -1,2 +1 @@
21 -DIST zathura-0.2.9.tar.gz 196690 BLAKE2B e8c342c1d20845f8c6c3691345b853acc9a6752152d5cbeea3ebb9cb9ccdf25ece83d253c4fb1948bc7b09bf77a48f3e65b5113df9973bc699967ba7bb9a4c28 SHA512 be72a5845ed0e4f09d54c608fc8373757d0d8dbf6f3d9be1a4ee671be22cec31e8eda2e8591c007e80df30059938b3480f5e7f035a115bd58e8dd05972296503
22 DIST zathura-0.3.7.tar.gz 174095 BLAKE2B f0025b75b319dbfa397362e102318f1dc1b5dd41f8beb1380cd781fd7594d15234781d862bf20b59ad4bcb9d1aa67210aa10779c19273e81341bfb74962f3139 SHA512 830a1b88820507a40a20b046c504d8ab3022a35c2c4c0d93a67f77ab5e31d746362a6f28fb9786a647cd0bfd943306aca74cbb2092774aedfb52380e713df533
23
24 diff --git a/app-text/zathura/zathura-0.2.9.ebuild b/app-text/zathura/zathura-0.2.9.ebuild
25 deleted file mode 100644
26 index c4bb49e027e..00000000000
27 --- a/app-text/zathura/zathura-0.2.9.ebuild
28 +++ /dev/null
29 @@ -1,67 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit eutils multilib toolchain-funcs virtualx xdg-utils
36 -
37 -if [[ ${PV} == *9999 ]]; then
38 - inherit git-r3
39 - EGIT_REPO_URI="https://git.pwmt.org/pwmt/zathura.git"
40 - EGIT_BRANCH="develop"
41 -else
42 - KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
43 - SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
44 -fi
45 -
46 -DESCRIPTION="A highly customizable and functional document viewer"
47 -HOMEPAGE="http://pwmt.org/projects/zathura/"
48 -
49 -LICENSE="ZLIB"
50 -SLOT="0"
51 -IUSE="+magic sqlite test"
52 -
53 -RDEPEND=">=dev-libs/girara-0.2.2:3=
54 - >=dev-libs/glib-2.28:2=
55 - x11-libs/cairo:=
56 - >=x11-libs/gtk+-3.2:3
57 - magic? ( sys-apps/file:= )
58 - sqlite? ( dev-db/sqlite:3= )"
59 -DEPEND="${RDEPEND}
60 - sys-devel/gettext
61 - virtual/pkgconfig
62 - test? ( dev-libs/check )"
63 -
64 -src_configure() {
65 - myzathuraconf=(
66 - WITH_MAGIC=$(usex magic 1 0)
67 - WITH_SQLITE=$(usex sqlite 1 0)
68 - PREFIX="${EPREFIX}"/usr
69 - LIBDIR='${PREFIX}'/$(get_libdir)
70 - CC="$(tc-getCC)"
71 - SFLAGS=''
72 - VERBOSE=1
73 - DESTDIR="${D}"
74 - )
75 -}
76 -
77 -src_compile() {
78 - emake "${myzathuraconf[@]}"
79 -}
80 -
81 -src_test() {
82 - Xemake "${myzathuraconf[@]}" test
83 -}
84 -
85 -src_install() {
86 - emake "${myzathuraconf[@]}" install
87 - dodoc AUTHORS
88 -}
89 -
90 -pkg_postinst() {
91 - xdg_desktop_database_update
92 -}
93 -
94 -pkg_postrm() {
95 - xdg_desktop_database_update
96 -}