Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/sawfish/
Date: Wed, 19 Feb 2020 21:34:15
Message-Id: 1582148038.e1517137eaebe4e8e4976e00d894c580cd9b65e6.asturm@gentoo
1 commit: e1517137eaebe4e8e4976e00d894c580cd9b65e6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 19 21:33:41 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 19 21:33:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1517137
7
8 x11-wm/sawfish: Drop 1.12.0 (r0)
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 x11-wm/sawfish/sawfish-1.12.0.ebuild | 87 ------------------------------------
14 1 file changed, 87 deletions(-)
15
16 diff --git a/x11-wm/sawfish/sawfish-1.12.0.ebuild b/x11-wm/sawfish/sawfish-1.12.0.ebuild
17 deleted file mode 100644
18 index c2cc89e9885..00000000000
19 --- a/x11-wm/sawfish/sawfish-1.12.0.ebuild
20 +++ /dev/null
21 @@ -1,87 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit eutils elisp-common
27 -
28 -MY_P="${P/-/_}"
29 -DESCRIPTION="Extensible window manager using a Lisp-based scripting language"
30 -HOMEPAGE="http://sawfish.wikia.com/"
31 -SRC_URI="http://download.tuxfamily.org/sawfish/${MY_P}.tar.xz"
32 -
33 -LICENSE="GPL-2 Artistic-2"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 ia64 ppc ~ppc64 ~sh sparc x86"
36 -IUSE="emacs kde nls xinerama"
37 -
38 -RDEPEND="
39 - emacs? ( >=app-editors/emacs-23.1:* )
40 - >=dev-libs/librep-0.92.1
41 - >=x11-libs/rep-gtk-0.90.7
42 - x11-libs/pangox-compat
43 - x11-libs/gdk-pixbuf:2[X]
44 - >=x11-libs/gtk+-2.24.0:2
45 - x11-libs/libXtst
46 - kde? ( kde-frameworks/kdelibs4support )
47 - nls? ( sys-devel/gettext )
48 - xinerama? ( x11-libs/libXinerama )
49 -"
50 -DEPEND="${RDEPEND}
51 - virtual/pkgconfig
52 -"
53 -
54 -S="${WORKDIR}/${MY_P}"
55 -
56 -PATCHES=(
57 - # From Fedora
58 - "${FILESDIR}"/${P}-desktop.patch
59 -)
60 -
61 -DOCS=( AUTHORS ChangeLog CONTRIBUTING doc/AUTOSTART doc/KEYBINDINGS doc/OPTIONS doc/XSettings MAINTAINERS NEWS README README.IMPORTANT TODO )
62 -
63 -src_configure() {
64 - set -- \
65 - $(use_with kde kde5session) \
66 - $(use_with xinerama) \
67 - --with-gdk-pixbuf \
68 - --without-kde4session \
69 - --disable-static
70 -
71 - if ! use nls; then
72 - # Use a space because configure script reads --enable-linguas=""
73 - # as "install everything". Don't use --disable-linguas, because
74 - # that means --enable-linguas="no", which means "install
75 - # Norwegian translations".
76 - set -- "$@" --enable-linguas=" "
77 - elif [[ "${LINGUAS+set}" == "set" ]]; then
78 - strip-linguas -i po
79 - set -- "$@" --enable-linguas=" ${LINGUAS} "
80 - else
81 - set -- "$@" --enable-linguas=""
82 - fi
83 -
84 - econf "$@"
85 -}
86 -
87 -src_compile() {
88 - default
89 - use emacs && elisp-compile sawfish.el
90 -}
91 -
92 -src_install() {
93 - default
94 - find "${D}" -name '*.la' -delete || die
95 -
96 - if use emacs; then
97 - elisp-install ${PN} sawfish.{el,elc}
98 - elisp-site-file-install "${FILESDIR}"/50${PN}-gentoo.el
99 - fi
100 -}
101 -
102 -pkg_postinst() {
103 - use emacs && elisp-site-regen
104 -}
105 -
106 -pkg_postrm() {
107 - use emacs && elisp-site-regen
108 -}