diff options
author | Jeroen Roovers <jer@gentoo.org> | 2017-07-30 13:55:25 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2017-07-30 13:56:09 +0200 |
commit | 4c885715c90200456baeb576181ff9b7018d220e (patch) | |
tree | db38eb13449bd00a57bbf368f7ed7a6f0a6f46ff /x11-misc/hsetroot | |
parent | x11-misc/hsetroot: Clean up metadata. (diff) | |
download | gentoo-4c885715c90200456baeb576181ff9b7018d220e.tar.gz gentoo-4c885715c90200456baeb576181ff9b7018d220e.tar.bz2 gentoo-4c885715c90200456baeb576181ff9b7018d220e.zip |
x11-misc/hsetroot: Add Debian patches.
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'x11-misc/hsetroot')
-rw-r--r-- | x11-misc/hsetroot/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/hsetroot/hsetroot-1.0.2_p5.ebuild | 41 |
2 files changed, 43 insertions, 0 deletions
diff --git a/x11-misc/hsetroot/Manifest b/x11-misc/hsetroot/Manifest index 31ed6eb4b0bc..7326f0885148 100644 --- a/x11-misc/hsetroot/Manifest +++ b/x11-misc/hsetroot/Manifest @@ -1 +1,3 @@ DIST hsetroot-1.0.2.tar.gz 125535 SHA256 d6712d330b31122c077bfc712ec4e213abe1fe71ab24b9150ae2774ca3154fd7 SHA512 51788a6b579b82368ef5e11255ff56e2db978a02f7ad752ba64ec33c56ae5f27c1f0ef3452725d1c7bdb9d97b8a3a5b64422031c9c75a7279c407b8772d5edc3 WHIRLPOOL bcf543cf7fb6b6f14ff10de66d554ae9a2e1074a7adbe11068c501a495b98b6518c6cd26504ec8a5aff644c789b86d52c74c026af266c881bd9b13dab9ca5bb8 +DIST hsetroot_1.0.2-5.debian.tar.xz 4384 SHA256 79ab1b7a805ce6c2953cd090b853833eead250679a372dcf414c33d3fb7dc8ff SHA512 5f1dbb00daebf6b8c9db77a51dbc463ea92b4564e0d7a2dac1ea9c316dd2e2126fb8c6454f4d1eddfd19533297e29651444987a7eacb7c0080e26c14383c827d WHIRLPOOL 22765754b43dc985642a20deac81fd2e9953065eca0e25d6e5dd79aa9fcc71c3ad3b61a36ca8c10cbaa91bfb13b23c64c4a48aa1a8a72378f9769d645ce35472 +DIST hsetroot_1.0.2.orig.tar.gz 125621 SHA256 597fe1175e590d54d0927095ce361c86ddef15ebc70a96c4bf509f6cb9165723 SHA512 cac98cc602fd8825dbfce27d289dc4ba47805c99c78de804e95c539e83ffae6984601a535cdb90658536a007a5f17c71e27e4c31af562ade6610f11f0d0d2ca5 WHIRLPOOL c40b3be003a129504cc833de22ed0e54448a1910ef4f2d40c8efa5d9c434225b1d64f842d5b605b9fc0536a99bdaa78c76dc5f16eec5fedaac22021823897459 diff --git a/x11-misc/hsetroot/hsetroot-1.0.2_p5.ebuild b/x11-misc/hsetroot/hsetroot-1.0.2_p5.ebuild new file mode 100644 index 000000000000..0793ee7f8ff7 --- /dev/null +++ b/x11-misc/hsetroot/hsetroot-1.0.2_p5.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools eutils + +DESCRIPTION="Tool which allows you to compose wallpapers ('root pixmaps') for X" +HOMEPAGE="http://thegraveyard.org/hsetroot.html" +SRC_URI=" + mirror://debian/pool/main/h/${PN}/${PN}_${PV/_p*/}.orig.tar.gz + mirror://debian/pool/main/h/${PN}/${PN}_${PV/_p*/}-${PV/*_p/}.debian.tar.xz +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" + +RDEPEND=" + >=media-libs/imlib2-1.0.6.2003[X] + x11-libs/libX11 +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig + x11-proto/xproto +" + +DOCS="AUTHORS ChangeLog NEWS README" +PATCHES=( + "${FILESDIR}"/${P/_p*/}-underlinking.patch + "${WORKDIR}"/debian/patches/01_fix-no-display-crash.patch + "${WORKDIR}"/debian/patches/02_extend-mode.patch + "${WORKDIR}"/debian/patches/03_cover-mode.patch +) +S=${WORKDIR}/${P/_p*/}.orig + +src_prepare() { + default + + eautoreconf +} |