Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/sawfish/
Date: Sun, 27 May 2018 18:02:19
Message-Id: 1527444122.3be25d2c56845fc49f8a9fe4f7f59edbadd95b11.pacho@gentoo
1 commit: 3be25d2c56845fc49f8a9fe4f7f59edbadd95b11
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 27 17:40:19 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 18:02:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3be25d2c
7
8 x11-wm/sawfish: Drop old
9
10 Package-Manager: Portage-2.3.38, Repoman-2.3.9
11
12 x11-wm/sawfish/Manifest | 1 -
13 x11-wm/sawfish/sawfish-1.11.90.ebuild | 89 -----------------------------------
14 2 files changed, 90 deletions(-)
15
16 diff --git a/x11-wm/sawfish/Manifest b/x11-wm/sawfish/Manifest
17 index 07d4850fc14..b694addaadb 100644
18 --- a/x11-wm/sawfish/Manifest
19 +++ b/x11-wm/sawfish/Manifest
20 @@ -1,3 +1,2 @@
21 DIST sawfish-1.9.1.tar.xz 2616612 BLAKE2B c81231723dbab4dcd994d838c2918e7af8415ccf0a2c8dd74031ab00adc29cf72563cca2d3ab7376fb88d42c4111e1460edc0789a9a07c00c3ebe93a57d941a4 SHA512 243a818e2cc2546c040f33fbc076bbcc4033b88f0b4be573f9daa80b2dcfd8d9dc97384d236b9b71d6efe08ad39bfd3f3f31b5c055b9b268418efb7668e27a42
22 -DIST sawfish_1.11.90.tar.xz 2751684 BLAKE2B 5635e26b7cad2455f232b0a2359c9d78485e4b9fb63f975d51d132680f88e50ad20b66d84375234aa42c725154a2ec046f348409e4576d3a09c050ffdbf0b7c0 SHA512 24735438167c1146e57f82a58876b68b1126d45f237751828ae9603a8eea966058fb6d8fbfddc28e1a96ab774a044b4b9b70b1e299f958b77eb32c987684925e
23 DIST sawfish_1.12.0.tar.xz 2814340 BLAKE2B 58901cf62d10641ef32756a3283c6d53b27a68a4af7c578c49e6968045f5993f744eb0b6c7b81da08b91774f1fb8faec467a6a22cd046a2fea135f749ac24319 SHA512 e8f831a9f6206ccf4e2a823bc3464c11b9d2d38a72ada4a142f952813a56c620b511f9cd8912bbf06e38976e54f1d9445f68d6dd24ee5ed59918c18de379e71f
24
25 diff --git a/x11-wm/sawfish/sawfish-1.11.90.ebuild b/x11-wm/sawfish/sawfish-1.11.90.ebuild
26 deleted file mode 100644
27 index a7d4141d788..00000000000
28 --- a/x11-wm/sawfish/sawfish-1.11.90.ebuild
29 +++ /dev/null
30 @@ -1,89 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit eutils elisp-common
36 -
37 -MY_P="${P/-/_}"
38 -DESCRIPTION="Extensible window manager using a Lisp-based scripting language"
39 -HOMEPAGE="http://sawfish.wikia.com/"
40 -SRC_URI="http://download.tuxfamily.org/sawfish/${MY_P}.tar.xz"
41 -
42 -LICENSE="GPL-2 Artistic-2"
43 -SLOT="0"
44 -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
45 -IUSE="emacs nls xinerama"
46 -
47 -RDEPEND="emacs? ( virtual/emacs !app-emacs/sawfish )
48 - >=dev-libs/librep-0.92.1
49 - >=x11-libs/rep-gtk-0.90.7
50 - x11-libs/pangox-compat
51 - >=x11-libs/gtk+-2.24.0:2
52 - x11-libs/libXtst
53 - nls? ( sys-devel/gettext )
54 - xinerama? ( x11-libs/libXinerama )"
55 -DEPEND="${RDEPEND}
56 - app-arch/xz-utils
57 - virtual/pkgconfig"
58 -
59 -S="${WORKDIR}/${MY_P}"
60 -
61 -DOCS=( AUTHORS ChangeLog CONTRIBUTING doc/AUTOSTART doc/KEYBINDINGS
62 - doc/OPTIONS doc/XSettings MAINTAINERS NEWS README README.IMPORTANT
63 - TODO )
64 -
65 -src_configure() {
66 - # The configure script tries to use kde4-config (bug #573664) or
67 - # kf5-config (from kdelibs4support) to detect where it should put
68 - # its session files. This could probably be enabled for kde5 going
69 - # forward (behind USE=kde), but there's currently a bug in the
70 - # configure script preventing that from working nicely:
71 - #
72 - # https://github.com/SawfishWM/sawfish/issues/22
73 - #
74 - # For now, we just disable the kde[45] session support entirely.
75 - set -- \
76 - $(use_with xinerama) \
77 - --with-gdk-pixbuf \
78 - --without-kde4session \
79 - --without-kde5session \
80 - --disable-static
81 -
82 - if ! use nls; then
83 - # Use a space because configure script reads --enable-linguas=""
84 - # as "install everything". Don't use --disable-linguas, because
85 - # that means --enable-linguas="no", which means "install
86 - # Norwegian translations".
87 - set -- "$@" --enable-linguas=" "
88 - elif [[ "${LINGUAS+set}" == "set" ]]; then
89 - strip-linguas -i po
90 - set -- "$@" --enable-linguas=" ${LINGUAS} "
91 - else
92 - set -- "$@" --enable-linguas=""
93 - fi
94 -
95 - econf "$@"
96 -}
97 -
98 -src_compile() {
99 - default
100 - use emacs && elisp-compile sawfish.el
101 -}
102 -
103 -src_install() {
104 - default
105 - prune_libtool_files --modules
106 -
107 - if use emacs; then
108 - elisp-install ${PN} sawfish.{el,elc}
109 - elisp-site-file-install "${FILESDIR}"/50${PN}-gentoo.el
110 - fi
111 -}
112 -
113 -pkg_postinst() {
114 - use emacs && elisp-site-regen
115 -}
116 -
117 -pkg_postrm() {
118 - use emacs && elisp-site-regen
119 -}