Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxde-common/
Date: Tue, 27 Mar 2018 00:40:50
Message-Id: 1522111199.abc828f434b1f7b3aaf9df927d5d66dacf0b5b9e.bman@gentoo
1 commit: abc828f434b1f7b3aaf9df927d5d66dacf0b5b9e
2 Author: charIes17 <charles17 <AT> arcor <DOT> de>
3 AuthorDate: Tue Dec 12 10:48:24 2017 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 27 00:39:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc828f4
7
8 lxde-base/lxde-common: Version bump to 0.99.2
9
10 Closes: https://bugs.gentoo.org/636514
11 Closes: https://github.com/gentoo/gentoo/pull/6529
12
13 lxde-base/lxde-common/Manifest | 1 +
14 lxde-base/lxde-common/lxde-common-0.99.2.ebuild | 28 +++++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/lxde-base/lxde-common/Manifest b/lxde-base/lxde-common/Manifest
18 index 7dbae191578..154981a0479 100644
19 --- a/lxde-base/lxde-common/Manifest
20 +++ b/lxde-base/lxde-common/Manifest
21 @@ -1,2 +1,3 @@
22 DIST lxde-common-0.5.5.tar.gz 899075 BLAKE2B 425de7d65ff7ef100c1c5d6cf6758b44121374ea27823e1ba565b43b32e35aeea9ff62cf0f5d7ad114f0c4d04fdbdff60f04dcd18542469b3aa9f6107619d78d SHA512 44848286ccf3aa269df1680e14a8d3c41be1c2af956bd5121fc05d97a892fdc13d1e74191a2a11a40e96a8f31f8be37b1cfb9afeac4474fcab88d07508647c7f
23 DIST lxde-common-0.99.1.tar.xz 889656 BLAKE2B 21c0ca21adb6c37d27bf39ee474a0e1d80c62d2ffb7ddadea3abb839163a307c81b8a6fa6ea6def00a0e8bf22ca9953bf145840371de65195e7036ee891bb0b5 SHA512 f5a14c44d827ba2355efd10c78732157f5645392ebbeb8e2a8126340a36eeba2842eff0c5338bb36623e5fe2da894c89d60a45c0b177704e2260413d63232b05
24 +DIST lxde-common-0.99.2.tar.xz 889948 BLAKE2B c01b3af5499ed4efe3004c922563c752999921cadab36a7fd5fec56762334c93d22ca7a28e9a8e8ce3462e128bea493740d5aa9931c4bf26cdf8a8dcd1bfb9e6 SHA512 9eb939ad411ed15c6bae880541b5c021ce5f3dd66df8662865e2f7219159110d8bf6059a707e55863d04617b17a15ea517317c44f88982344369aa85b7128b6e
25
26 diff --git a/lxde-base/lxde-common/lxde-common-0.99.2.ebuild b/lxde-base/lxde-common/lxde-common-0.99.2.ebuild
27 new file mode 100644
28 index 00000000000..9051f161f0b
29 --- /dev/null
30 +++ b/lxde-base/lxde-common/lxde-common-0.99.2.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +DESCRIPTION="LXDE Session default configuration files and nuoveXT2 iconset"
38 +HOMEPAGE="https://wiki.lxde.org/en/LXDE_Common"
39 +SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~x86 ~arm-linux ~x86-linux"
44 +IUSE=""
45 +
46 +RDEPEND="x11-libs/gtk+:2"
47 +DEPEND="${RDEPEND}
48 + virtual/pkgconfig
49 + sys-devel/gettext"
50 +PDEPEND="lxde-base/lxde-icon-theme"
51 +
52 +src_install () {
53 + emake DESTDIR="${D}" install
54 + # install session file
55 + insinto /etc/X11/Sessions/
56 + doins "${FILESDIR}/lxde"
57 + fperms 755 /etc/X11/Sessions/lxde
58 + dodoc AUTHORS ChangeLog README
59 +}