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/files/, x11-wm/sawfish/
Date: Sat, 16 Feb 2019 08:55:57
Message-Id: 1550307332.41f541e46f30066110e40dd7ddcd915b2c2cedff.pacho@gentoo
1 commit: 41f541e46f30066110e40dd7ddcd915b2c2cedff
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 16 08:40:28 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 16 08:55:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f541e4
7
8 x11-wm/sawfish: Drop old
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 x11-wm/sawfish/Manifest | 1 -
14 x11-wm/sawfish/files/sawfish-1.9.1-firefox.patch | 20 ------
15 x11-wm/sawfish/sawfish-1.9.1-r2.ebuild | 77 ------------------------
16 3 files changed, 98 deletions(-)
17
18 diff --git a/x11-wm/sawfish/Manifest b/x11-wm/sawfish/Manifest
19 index b694addaadb..2738e3a67fe 100644
20 --- a/x11-wm/sawfish/Manifest
21 +++ b/x11-wm/sawfish/Manifest
22 @@ -1,2 +1 @@
23 -DIST sawfish-1.9.1.tar.xz 2616612 BLAKE2B c81231723dbab4dcd994d838c2918e7af8415ccf0a2c8dd74031ab00adc29cf72563cca2d3ab7376fb88d42c4111e1460edc0789a9a07c00c3ebe93a57d941a4 SHA512 243a818e2cc2546c040f33fbc076bbcc4033b88f0b4be573f9daa80b2dcfd8d9dc97384d236b9b71d6efe08ad39bfd3f3f31b5c055b9b268418efb7668e27a42
24 DIST sawfish_1.12.0.tar.xz 2814340 BLAKE2B 58901cf62d10641ef32756a3283c6d53b27a68a4af7c578c49e6968045f5993f744eb0b6c7b81da08b91774f1fb8faec467a6a22cd046a2fea135f749ac24319 SHA512 e8f831a9f6206ccf4e2a823bc3464c11b9d2d38a72ada4a142f952813a56c620b511f9cd8912bbf06e38976e54f1d9445f68d6dd24ee5ed59918c18de379e71f
25
26 diff --git a/x11-wm/sawfish/files/sawfish-1.9.1-firefox.patch b/x11-wm/sawfish/files/sawfish-1.9.1-firefox.patch
27 deleted file mode 100644
28 index 6fb27bb820c..00000000000
29 --- a/x11-wm/sawfish/files/sawfish-1.9.1-firefox.patch
30 +++ /dev/null
31 @@ -1,20 +0,0 @@
32 -X-Git-Url: http://git.tuxfamily.org/sawfish/main.git?p=sawfish%2Fmain.git;p=sawfish%2Fmain.git;a=blobdiff_plain;f=src%2Fwindows.c;h=053b95a9933b04a99301b300a5477e2ce3329cbd;hp=c6117e778ad157f9868c431efa934964b88897fd;hb=798c6992cc41f5ca7ec1bd4bd74d721a59820897;hpb=ec807ed20eecb401c3e11b3b04d375fc848ca4c1
33 -
34 -diff --git a/src/windows.c b/src/windows.c
35 -index c6117e7..053b95a 100644
36 ---- a/src/windows.c
37 -+++ b/src/windows.c
38 -@@ -1297,6 +1297,13 @@ associated with WINDOW. Possible keys in the alist are `min-height',
39 - hints = &VWIN(win)->hints;
40 - flags = hints->flags;
41 -
42 -+ /* workaround stuff like Firefox 17 that
43 -+ * has enormous max-width/maxh-height */
44 -+ if (hints->max_width >= 32767)
45 -+ hints->max_width = 32767;
46 -+ if (hints->max_height >= 32767)
47 -+ hints->max_height = 32767;
48 -+
49 - /* Some sanity checking */
50 - if ((flags & PMinSize)
51 - && (hints->min_width < 0 || hints->min_height < 0))
52
53 diff --git a/x11-wm/sawfish/sawfish-1.9.1-r2.ebuild b/x11-wm/sawfish/sawfish-1.9.1-r2.ebuild
54 deleted file mode 100644
55 index dffdcaa7811..00000000000
56 --- a/x11-wm/sawfish/sawfish-1.9.1-r2.ebuild
57 +++ /dev/null
58 @@ -1,77 +0,0 @@
59 -# Copyright 1999-2015 Gentoo Foundation
60 -# Distributed under the terms of the GNU General Public License v2
61 -
62 -EAPI=5
63 -inherit eutils elisp-common
64 -
65 -DESCRIPTION="Extensible window manager using a Lisp-based scripting language"
66 -HOMEPAGE="http://sawfish.wikia.com/"
67 -SRC_URI="http://download.tuxfamily.org/sawfish/${P}.tar.xz"
68 -
69 -LICENSE="GPL-2 Artistic-2"
70 -SLOT="0"
71 -KEYWORDS="alpha amd64 ia64 ppc ~ppc64 ~sh sparc x86 ~x86-fbsd"
72 -IUSE="emacs nls xinerama"
73 -
74 -RDEPEND="emacs? ( virtual/emacs !app-emacs/sawfish )
75 - >=dev-libs/librep-0.92.1
76 - >=x11-libs/rep-gtk-0.90.7
77 - x11-libs/pangox-compat
78 - >=x11-libs/gtk+-2.24.0:2
79 - x11-libs/libXtst
80 - nls? ( sys-devel/gettext )
81 - xinerama? ( x11-libs/libXinerama )"
82 -DEPEND="${RDEPEND}
83 - app-arch/xz-utils
84 - virtual/pkgconfig"
85 -
86 -src_prepare() {
87 - # Fix firefox resizing problems, bug #462016
88 - epatch "${FILESDIR}/${P}-firefox.patch"
89 -}
90 -
91 -src_configure() {
92 - set -- \
93 - $(use_with xinerama) \
94 - --with-gdk-pixbuf \
95 - --disable-static
96 -
97 - if ! use nls; then
98 - # Use a space because configure script reads --enable-linguas="" as
99 - # "install everything"
100 - # Don't use --disable-linguas, because that means --enable-linguas="no",
101 - # which means "install Norwegian translations"
102 - set -- "$@" --enable-linguas=" "
103 - elif [[ "${LINGUAS+set}" == "set" ]]; then
104 - strip-linguas -i po
105 - set -- "$@" --enable-linguas=" ${LINGUAS} "
106 - else
107 - set -- "$@" --enable-linguas=""
108 - fi
109 -
110 - econf "$@"
111 -}
112 -
113 -src_compile() {
114 - emake
115 - use emacs && elisp-compile sawfish.el
116 -}
117 -
118 -src_install() {
119 - emake DESTDIR="${D}" install
120 - prune_libtool_files --modules
121 - dodoc AUTHORS ChangeLog DOC FAQ NEWS OPTIONS README README.IMPORTANT TODO
122 -
123 - if use emacs; then
124 - elisp-install ${PN} sawfish.{el,elc}
125 - elisp-site-file-install "${FILESDIR}"/50${PN}-gentoo.el
126 - fi
127 -}
128 -
129 -pkg_postinst() {
130 - use emacs && elisp-site-regen
131 -}
132 -
133 -pkg_postrm() {
134 - use emacs && elisp-site-regen
135 -}