diff options
author | Jonas Stein <jstein@gentoo.org> | 2022-02-06 14:01:38 +0100 |
---|---|---|
committer | Jonas Stein <jstein@gentoo.org> | 2022-02-06 14:01:54 +0100 |
commit | b8003606f26a979dce84d0a277f60ae6556fa735 (patch) | |
tree | a9c9bdab48c8cf1f52e7f00da8a41f3035f333d9 /x11-misc/autocutsel | |
parent | sys-apps/lshw: revbump for desktop file icon fix (diff) | |
download | gentoo-b8003606f26a979dce84d0a277f60ae6556fa735.tar.gz gentoo-b8003606f26a979dce84d0a277f60ae6556fa735.tar.bz2 gentoo-b8003606f26a979dce84d0a277f60ae6556fa735.zip |
x11-misc/autocutsel: bump to 0.10.1
Version bump to 0.10.1
EAPI=8
Add eautoreconf to fix
./libtool: line 8120: func_munge_path_list: command not found
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Stein <jstein@gentoo.org>
Diffstat (limited to 'x11-misc/autocutsel')
-rw-r--r-- | x11-misc/autocutsel/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/autocutsel/autocutsel-0.10.1.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/x11-misc/autocutsel/Manifest b/x11-misc/autocutsel/Manifest index 941ddf97a6c0..21d74fd9b06c 100644 --- a/x11-misc/autocutsel/Manifest +++ b/x11-misc/autocutsel/Manifest @@ -1 +1,2 @@ DIST autocutsel-0.10.0.tar.gz 329527 BLAKE2B 1ab17fec1dde40fae6a98a9cc079f7080add2a30b3384e7a4cfbe7e85ca13a7394ce96ba1dd32a9d147f123ce44fc4ff7fbbf77a02eacd2301b91fafc3096232 SHA512 2d9b7114fde67ee217ceee673e32b407eef5b266a9d457a83b35d1c6227e5873cc7928aa10f7d84ce5e8c78d4940ee29985696f49b4015269584f1559f6b6d1d +DIST autocutsel-0.10.1.tar.gz 337872 BLAKE2B df1d924bf61c5e2b3dc2930b85f5b3b2f906892fa84932cfb4511be3e94dcc8763a8af1d4a6685da013d65b82e8f003f194fcb0522c35e43bc88269611132109 SHA512 a4f68342b389ef94fde8052f5d9e4b4585bab8fa8364985a2b0a3ec3e6f81ed58ba45be9349aa6e16c70ca623a7c315796cf0440ef6f4ffa9606ed7b7981a4a2 diff --git a/x11-misc/autocutsel/autocutsel-0.10.1.ebuild b/x11-misc/autocutsel/autocutsel-0.10.1.ebuild new file mode 100644 index 000000000000..77f67d12b9ff --- /dev/null +++ b/x11-misc/autocutsel/autocutsel-0.10.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit autotools + +DESCRIPTION="Synchronise the two copy/paste buffers mainly used by X applications" +HOMEPAGE="https://www.nongnu.org/autocutsel/ https://github.com/sigmike/autocutsel" +SRC_URI="https://github.com/sigmike/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXaw + x11-libs/libXext + x11-libs/libXmu + x11-libs/libXt +" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto +" + +src_prepare() { + default + eautoreconf +} |