diff options
author | 2012-12-08 00:45:25 +0100 | |
---|---|---|
committer | 2012-12-08 00:45:25 +0100 | |
commit | 0bf1175c95a0da1e581a01fb05c96ffca8a8162b (patch) | |
tree | 82d7dc7a4098acb48b112cb2e81cb478fe224e6a /sys-apps/fwts/fwts-0.26.02.ebuild | |
parent | remove net-analyzer/logstalgia, cause it is in main tree now (diff) | |
download | sunrise-0bf1175c95a0da1e581a01fb05c96ffca8a8162b.tar.gz sunrise-0bf1175c95a0da1e581a01fb05c96ffca8a8162b.tar.bz2 sunrise-0bf1175c95a0da1e581a01fb05c96ffca8a8162b.zip |
sys-apps/fwts: Version bump
Diffstat (limited to 'sys-apps/fwts/fwts-0.26.02.ebuild')
-rw-r--r-- | sys-apps/fwts/fwts-0.26.02.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sys-apps/fwts/fwts-0.26.02.ebuild b/sys-apps/fwts/fwts-0.26.02.ebuild new file mode 100644 index 000000000..dec79ae62 --- /dev/null +++ b/sys-apps/fwts/fwts-0.26.02.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +inherit autotools +DESCRIPTION="Firmware Test Suite" +HOMEPAGE="https://wiki.ubuntu.com/Kernel/Reference/fwts" +SRC_URI="http://launchpad.net/ubuntu/+archive/primary/+files/${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="dev-libs/json-c + dev-libs/libpcre + sys-apps/pciutils + sys-power/iasl + sys-power/pmtools + sys-apps/dmidecode" +DEPEND="${RDEPEND} + sys-devel/libtool" + +S=${WORKDIR} + +src_prepare(){ + sed -i -e 's/-Wall -Werror/-Wall/' configure.ac {,src/,src/lib/src/}Makefile.am || die + sed -i -e 's:/usr/bin/lspci:'$(type -p lspci)':' src/lib/include/fwts_binpaths.h || die + # No Makefile included - upstream wants autoreconf + eautoreconf +} |