diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2017-08-07 09:01:05 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2017-08-07 09:01:05 +0200 |
commit | d8c570024046afba35fd6d99b56b24831023b9ac (patch) | |
tree | 59d3a2d03fa6a4d330733f378fe06f339c6d187b /sys-apps | |
parent | sys-apps/fwupd: Bump to version 0.9.6 (diff) | |
download | gentoo-d8c570024046afba35fd6d99b56b24831023b9ac.tar.gz gentoo-d8c570024046afba35fd6d99b56b24831023b9ac.tar.bz2 gentoo-d8c570024046afba35fd6d99b56b24831023b9ac.zip |
sys-apps/fwupd: Removed old.
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/fwupd/fwupd-0.9.5.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/sys-apps/fwupd/fwupd-0.9.5.ebuild b/sys-apps/fwupd/fwupd-0.9.5.ebuild deleted file mode 100644 index 8599c3e634c0..000000000000 --- a/sys-apps/fwupd/fwupd-0.9.5.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit meson - -DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and reliable" -HOMEPAGE="http://www.fwupd.org" -SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="colorhug dell doc elf +man systemd uefi" - -RDEPEND=" - app-crypt/gpgme - dev-db/sqlite - >=dev-libs/appstream-glib-0.6.13 - >=dev-libs/glib-2.45.8:2 - dev-libs/libgpg-error - dev-libs/libgudev - dev-libs/libgusb - >=net-libs/libsoup-2.51.92:2.4 - >=sys-auth/polkit-0.103 - colorhug? ( >=x11-misc/colord-1.2.12:0= ) - dell? ( - sys-libs/efivar - >=sys-libs/libsmbios-2.3.3 - ) - elf? ( dev-libs/libelf ) - systemd? ( sys-apps/systemd ) - !systemd? ( >=sys-auth/consolekit-1.0.0 ) - uefi? ( >=sys-apps/fwupdate-5 ) -" -DEPEND=" - ${RDEPEND} - app-arch/gcab - app-arch/libarchive - virtual/pkgconfig - doc? ( dev-util/gtk-doc ) - man? ( app-text/docbook-sgml-utils ) -" - -REQUIRED_USE="dell? ( uefi )" - -PATCHES=( - "${FILESDIR}/${PN}-0.9-polkit_its_files.patch" -) - -src_configure() { - local emesonargs=( - -Denable-colorhug="$(usex colorhug true false)" - -Denable-consolekit="$(usex systemd false true)" - -Denable-dell="$(usex dell true false)" - -Denable-doc="$(usex doc true false)" - -Denable-man="$(usex man true false)" - -Denable-libelf="$(usex elf true false)" - -Denable-systemd="$(usex systemd true false)" - # requires libtbtfwu which is not packaged yet - -Denable-thunderbolt=false - -Denable-uefi="$(usex uefi true false)" - ) - meson_src_configure -} |