Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libSM/
Date: Thu, 29 Nov 2018 05:17:46
Message-Id: 1543468638.b5d14df4576aa2eb130d47585704457d377e31ef.mattst88@gentoo
1 commit: b5d14df4576aa2eb130d47585704457d377e31ef
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 29 05:12:11 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 29 05:17:18 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d14df4
7
8 x11-libs/libSM: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/libSM/Manifest | 1 -
13 x11-libs/libSM/libSM-1.2.2-r2.ebuild | 57 ------------------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/x11-libs/libSM/Manifest b/x11-libs/libSM/Manifest
17 index a61301e3c2d..c85bffd502d 100644
18 --- a/x11-libs/libSM/Manifest
19 +++ b/x11-libs/libSM/Manifest
20 @@ -1,2 +1 @@
21 -DIST libSM-1.2.2.tar.bz2 348908 BLAKE2B f3d6d40bfb3058000fd13e9f5ed8daa6628ef197d737e9186e66a517d4c0d4238fa65d0f922b9e6b2839a6f37344c64a560b126911679315cb3824c814d474c7 SHA512 dfb91dcc7200fce8d0a62953ae4b81fcb00d525674bbcc6dfcaa23ecb35e1213ceb07cc51f590072dce2107909903160d9f3636a0434fe2a605b1e9a9bd0a6ca
22 DIST libSM-1.2.3.tar.bz2 362595 BLAKE2B 20b7327cd16e066bd2a81eae60f52cab7499dd92d65786d0e5726faa64c2055376749562ff2158777f83711e1517b90b2dc94670892b787889b3950c0a975b68 SHA512 74c42e27029db78475e62025b4711dbac5e22d2f8e8a24be98a1c31b03c0fc4afe859928f851800ea0b76854f12147900dc4f27bbfd3d8ea45daaaf24b70a903
23
24 diff --git a/x11-libs/libSM/libSM-1.2.2-r2.ebuild b/x11-libs/libSM/libSM-1.2.2-r2.ebuild
25 deleted file mode 100644
26 index e34a0aac36c..00000000000
27 --- a/x11-libs/libSM/libSM-1.2.2-r2.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -XORG_DOC=doc
36 -XORG_MULTILIB=yes
37 -inherit xorg-2
38 -
39 -DESCRIPTION="X.Org Session Management library"
40 -
41 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
42 -IUSE="doc ipv6 +uuid"
43 -
44 -RDEPEND="x11-base/xorg-proto
45 - >=x11-libs/libICE-1.0.8-r1[${MULTILIB_USEDEP}]
46 - x11-libs/xtrans
47 - !elibc_FreeBSD? ( !elibc_SunOS? ( !elibc_Darwin? (
48 - uuid? ( >=sys-apps/util-linux-2.24.1-r3[${MULTILIB_USEDEP}] )
49 - ) ) )"
50 -DEPEND="${RDEPEND}"
51 -
52 -src_configure() {
53 - local withuuid=$(use_with uuid libuuid)
54 -
55 - # do not use uuid even if available in libc (like on FreeBSD)
56 - use uuid || export ac_cv_func_uuid_create=no
57 -
58 - if use uuid ; then
59 - case ${CHOST} in
60 - *-solaris*|*-darwin*)
61 - if [[ ! -d ${EROOT}usr/include/uuid ]] &&
62 - [[ -d ${ROOT}usr/include/uuid ]]
63 - then
64 - # Solaris and Darwin have uuid provided by the host
65 - # system. Since util-linux's version is based on this
66 - # version, and on Darwin actually breaks host headers when
67 - # installed, we can "pretend" for libSM we have libuuid
68 - # installed, while in fact we don't
69 - withuuid="--without-libuuid"
70 - export HAVE_LIBUUID=yes
71 - export LIBUUID_CFLAGS="-I${ROOT}usr/include/uuid"
72 - # Darwin has uuid in libSystem
73 - [[ ${CHOST} == *-solaris* ]] && export LIBUUID_LIBS="-luuid"
74 - fi
75 - ;;
76 - esac
77 - fi
78 - XORG_CONFIGURE_OPTIONS=(
79 - $(use_enable ipv6)
80 - $(use_enable doc docs)
81 - $(use_with doc xmlto)
82 - ${withuuid}
83 - --without-fop
84 - )
85 - xorg-2_src_configure
86 -}