diff options
author | Joonas Niilola <juippis@gentoo.org> | 2022-02-26 10:33:00 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-02-26 10:33:00 +0200 |
commit | 6155841f76ceaeaab548ff7be7eff3b7485b58b1 (patch) | |
tree | ee1c4a83ffe35154f482a22c0d9662b0c2b182bd /sys-apps/usbredir | |
parent | net-ftp/ncftp: drop 3.2.6-r3 (diff) | |
download | gentoo-6155841f76ceaeaab548ff7be7eff3b7485b58b1.tar.gz gentoo-6155841f76ceaeaab548ff7be7eff3b7485b58b1.tar.bz2 gentoo-6155841f76ceaeaab548ff7be7eff3b7485b58b1.zip |
sys-apps/usbredir: drop 0.9.0
Bug: https://bugs.gentoo.org/834010
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-apps/usbredir')
-rw-r--r-- | sys-apps/usbredir/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/usbredir/usbredir-0.9.0.ebuild | 45 |
2 files changed, 0 insertions, 46 deletions
diff --git a/sys-apps/usbredir/Manifest b/sys-apps/usbredir/Manifest index e6c4e24c175e..7682a1717955 100644 --- a/sys-apps/usbredir/Manifest +++ b/sys-apps/usbredir/Manifest @@ -1,2 +1 @@ DIST usbredir-0.12.0.tar.bz2 70102 BLAKE2B c6891e14a7951520066fdc7e8095c905599aa3186c72ff378d25e46335843df6daa746937619f8bcb9e60447f19ce671317e9b21e6ce127d2b977d82cb39a337 SHA512 586465d3a18c3bbf621e6b7d1dc24edb333e00491dbd0d0dc781a9e0640f3483a8abf73c55d4ad76b3be0a27a4b1801d08dffb77db3f9aab2234039a60a605ca -DIST usbredir-0.9.0.tar.bz2 72498 BLAKE2B 857b83795ac082d412b2872a4ca06b1602d556698f3217379698e8b1f54edd09b012600069045ff0f7583703253853998b900f34d861a538047783510b3fb2e9 SHA512 5df62fb6e49161be974776c86f026a58322ccf1c1964447958707408492c02175100ead9dc4a7e77bb7a9112a33b91461d64761425e7aee7d44c71ff6913588a diff --git a/sys-apps/usbredir/usbredir-0.9.0.ebuild b/sys-apps/usbredir/usbredir-0.9.0.ebuild deleted file mode 100644 index b72e69206ca5..000000000000 --- a/sys-apps/usbredir/usbredir-0.9.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic - -MY_PV=${PV/_p*/} - -DESCRIPTION="TCP daemon and set of libraries for usbredir protocol (redirecting USB traffic)" -HOMEPAGE="https://www.spice-space.org/usbredir.html" -SRC_URI="https://gitlab.freedesktop.org/spice/${PN}/-/archive/${P}/${PN}-${P}.tar.bz2 -> ${P}.tar.bz2" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv ~sparc x86" -IUSE="static-libs" - -RDEPEND="virtual/libusb:1" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/${PN}-${PN}-${MY_PV}" - -DOCS="README* TODO *.txt" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # https://bugs.freedesktop.org/show_bug.cgi?id=54643 - append-cflags -Wno-error - - econf $(use_enable static-libs static) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die - - # noinst_PROGRAMS - dobin usbredirtestclient/.libs/usbredirtestclient -} |