diff options
author | David Seifert <soap@gentoo.org> | 2021-05-13 12:59:21 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-13 12:59:21 +0200 |
commit | 6448da1464c20d32d35926166f586c0837f29d4e (patch) | |
tree | 2b5a7ee252fd15690c1fae53e6683a9e76fbeb14 /dev-libs/libusb-compat | |
parent | sys-apps/findutils: Remove old 4.7.0 (diff) | |
download | gentoo-6448da1464c20d32d35926166f586c0837f29d4e.tar.gz gentoo-6448da1464c20d32d35926166f586c0837f29d4e.tar.bz2 gentoo-6448da1464c20d32d35926166f586c0837f29d4e.zip |
dev-libs/libusb-compat: Remove old 0.1.5-r2
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs/libusb-compat')
-rw-r--r-- | dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild b/dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild deleted file mode 100644 index bb832fd04764..000000000000 --- a/dev-libs/libusb-compat/libusb-compat-0.1.5-r2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit multilib-minimal usr-ldscript - -DESCRIPTION="Userspace access to USB devices (libusb-0.1 compat wrapper)" -HOMEPAGE="http://libusb.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN/-compat}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="debug examples static-libs" - -RDEPEND=">=virtual/libusb-1-r1:1[${MULTILIB_USEDEP}] - !dev-libs/libusb:0" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS ChangeLog NEWS README" - -PATCHES=( - "${FILESDIR}"/${PN/-compat}-0.1-ansi.patch -) - -multilib_src_configure() { - ECONF_SOURCE="${S}" \ - econf \ - $(use_enable static-libs static) \ - $(use_enable debug debug-log) -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - gen_usr_ldscript -a usb -} - -multilib_src_install_all() { - find "${ED}" -name '*.la' -delete || die - einstalldocs - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/*.c - fi -} |