Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/hsetroot/
Date: Sun, 30 Jul 2017 11:56:15
Message-Id: 1501415769.4c885715c90200456baeb576181ff9b7018d220e.jer@gentoo
1 commit: 4c885715c90200456baeb576181ff9b7018d220e
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 30 11:55:25 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 30 11:56:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c885715
7
8 x11-misc/hsetroot: Add Debian patches.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 x11-misc/hsetroot/Manifest | 2 ++
13 x11-misc/hsetroot/hsetroot-1.0.2_p5.ebuild | 41 ++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/x11-misc/hsetroot/Manifest b/x11-misc/hsetroot/Manifest
17 index 31ed6eb4b0b..7326f088514 100644
18 --- a/x11-misc/hsetroot/Manifest
19 +++ b/x11-misc/hsetroot/Manifest
20 @@ -1 +1,3 @@
21 DIST hsetroot-1.0.2.tar.gz 125535 SHA256 d6712d330b31122c077bfc712ec4e213abe1fe71ab24b9150ae2774ca3154fd7 SHA512 51788a6b579b82368ef5e11255ff56e2db978a02f7ad752ba64ec33c56ae5f27c1f0ef3452725d1c7bdb9d97b8a3a5b64422031c9c75a7279c407b8772d5edc3 WHIRLPOOL bcf543cf7fb6b6f14ff10de66d554ae9a2e1074a7adbe11068c501a495b98b6518c6cd26504ec8a5aff644c789b86d52c74c026af266c881bd9b13dab9ca5bb8
22 +DIST hsetroot_1.0.2-5.debian.tar.xz 4384 SHA256 79ab1b7a805ce6c2953cd090b853833eead250679a372dcf414c33d3fb7dc8ff SHA512 5f1dbb00daebf6b8c9db77a51dbc463ea92b4564e0d7a2dac1ea9c316dd2e2126fb8c6454f4d1eddfd19533297e29651444987a7eacb7c0080e26c14383c827d WHIRLPOOL 22765754b43dc985642a20deac81fd2e9953065eca0e25d6e5dd79aa9fcc71c3ad3b61a36ca8c10cbaa91bfb13b23c64c4a48aa1a8a72378f9769d645ce35472
23 +DIST hsetroot_1.0.2.orig.tar.gz 125621 SHA256 597fe1175e590d54d0927095ce361c86ddef15ebc70a96c4bf509f6cb9165723 SHA512 cac98cc602fd8825dbfce27d289dc4ba47805c99c78de804e95c539e83ffae6984601a535cdb90658536a007a5f17c71e27e4c31af562ade6610f11f0d0d2ca5 WHIRLPOOL c40b3be003a129504cc833de22ed0e54448a1910ef4f2d40c8efa5d9c434225b1d64f842d5b605b9fc0536a99bdaa78c76dc5f16eec5fedaac22021823897459
24
25 diff --git a/x11-misc/hsetroot/hsetroot-1.0.2_p5.ebuild b/x11-misc/hsetroot/hsetroot-1.0.2_p5.ebuild
26 new file mode 100644
27 index 00000000000..0793ee7f8ff
28 --- /dev/null
29 +++ b/x11-misc/hsetroot/hsetroot-1.0.2_p5.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +inherit autotools eutils
36 +
37 +DESCRIPTION="Tool which allows you to compose wallpapers ('root pixmaps') for X"
38 +HOMEPAGE="http://thegraveyard.org/hsetroot.html"
39 +SRC_URI="
40 + mirror://debian/pool/main/h/${PN}/${PN}_${PV/_p*/}.orig.tar.gz
41 + mirror://debian/pool/main/h/${PN}/${PN}_${PV/_p*/}-${PV/*_p/}.debian.tar.xz
42 +"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
47 +
48 +RDEPEND="
49 + >=media-libs/imlib2-1.0.6.2003[X]
50 + x11-libs/libX11
51 +"
52 +DEPEND="
53 + ${RDEPEND}
54 + virtual/pkgconfig
55 + x11-proto/xproto
56 +"
57 +
58 +DOCS="AUTHORS ChangeLog NEWS README"
59 +PATCHES=(
60 + "${FILESDIR}"/${P/_p*/}-underlinking.patch
61 + "${WORKDIR}"/debian/patches/01_fix-no-display-crash.patch
62 + "${WORKDIR}"/debian/patches/02_extend-mode.patch
63 + "${WORKDIR}"/debian/patches/03_cover-mode.patch
64 +)
65 +S=${WORKDIR}/${P/_p*/}.orig
66 +
67 +src_prepare() {
68 + default
69 +
70 + eautoreconf
71 +}