diff options
-rw-r--r-- | x11-misc/xtrace/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/xtrace/xtrace-1.3.0.ebuild | 35 | ||||
-rw-r--r-- | x11-misc/xtrace/xtrace-1.4.0.ebuild | 34 |
3 files changed, 35 insertions, 36 deletions
diff --git a/x11-misc/xtrace/Manifest b/x11-misc/xtrace/Manifest index 1d4632333baa..e60b4929a9d8 100644 --- a/x11-misc/xtrace/Manifest +++ b/x11-misc/xtrace/Manifest @@ -1 +1 @@ -DIST xtrace_1.3.0.orig.tar.gz 183803 BLAKE2B 286c9ed04cd13dea72aeeb1b81643278fbfc4f64ae8c032287ad36ff560e469b8a9c3d338ac8803e45d13cb83e02d1229e5ea64a6611d509eb08ebaf1abab7df SHA512 8078f976652b18503f68020e8ae716fceea506c62582ae23b00cca67b6d6c76a9d0955567a5bb011f1ead6d99996cdcb80f93c5f4c3f9e65c4443599caec3399 +DIST xtrace-1.4.0.tar.gz 109032 BLAKE2B 61e1360923eb6b83e47e8d6eb8882b362ef4f257b699d6de9c43556a0e9fe767edab90dfe2d5d792297be244d976a7a0ff7b2df37c87f5e63c7b4731fd2d089d SHA512 97363c5518eccdde15f2f0567d2bc46e8e54638e0b2ef33b207526d660a9f607d5176651dc95aa48267808701406f74de55bed972a931c84462446e3b74c6a7a diff --git a/x11-misc/xtrace/xtrace-1.3.0.ebuild b/x11-misc/xtrace/xtrace-1.3.0.ebuild deleted file mode 100644 index 178f5231a886..000000000000 --- a/x11-misc/xtrace/xtrace-1.3.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit autotools-utils - -MY_CODE="3694" - -DESCRIPTION="X11 protocol trace utility" -HOMEPAGE="http://xtrace.alioth.debian.org/" -SRC_URI="https://alioth.debian.org/frs/download.php/${MY_CODE}/${P/-/_}.orig.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~s390 ~sh ~x86" -IUSE="" - -DEPEND="x11-libs/libX11" -RDEPEND="${DEPEND}" - -DOCS=(AUTHORS ChangeLog README NEWS) - -src_configure() { - local myeconfargs=( - --program-transform-name="s/^x/x11/" - ) - - autotools-utils_src_configure -} - -pkg_postinst () { - einfo "To avoid collision with glibc (/usr/bin/xtrace)" - einfo "binary was renamed to x11trace, as suggested by author" -} diff --git a/x11-misc/xtrace/xtrace-1.4.0.ebuild b/x11-misc/xtrace/xtrace-1.4.0.ebuild new file mode 100644 index 000000000000..1585b28744fa --- /dev/null +++ b/x11-misc/xtrace/xtrace-1.4.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="X11 protocol trace utility" +HOMEPAGE="https://salsa.debian.org/debian/xtrace" +SRC_URI="https://salsa.debian.org/debian/${PN}/-/archive/${P}/${PN}-${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~s390 ~sh ~x86" + +DEPEND="x11-base/xorg-proto + x11-libs/libXext + x11-libs/libX11" +RDEPEND="${DEPEND}" +S="${WORKDIR}/${PN}-${P}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf --program-transform-name="s/^x/x11/" +} + +pkg_postinst () { + einfo "To avoid collision with glibc (/usr/bin/xtrace)" + einfo "binary was renamed to x11trace, as suggested by author" +} |