# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/lshw/lshw-02.13b.ebuild,v 1.6 2008/10/14 20:00:38 ranger Exp $ inherit flag-o-matic eutils toolchain-funcs MAJ_PV=${PV:0:${#PV}-1} MIN_PVE=${PV:0-1} MIN_PV=${MIN_PVE/b/B} MY_P="$PN-$MIN_PV.$MAJ_PV" DESCRIPTION="Hardware Lister" HOMEPAGE="http://ezix.org/project/wiki/HardwareLiSter" SRC_URI="http://ezix.org/software/files/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86" IUSE="gtk static" DEPEND="gtk? ( >=x11-libs/gtk+-2 )" S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${PN}-02.12.01b-build.patch epatch "${FILESDIR}"/${P}-gcc43.patch } src_compile() { tc-export CC CXX AR use static && append-ldflags -static emake || die "make failed" if use gtk ; then emake gui || die "make gui failed" fi } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc README docs/* if use gtk ; then emake DESTDIR="${D}" install-gui || die "install gui failed" make_desktop_entry /usr/sbin/gtk-lshw "Hardware Lister" "/usr/share/lshw/artwork/logo.svg" fi }