diff options
author | 2005-11-05 04:28:07 +0000 | |
---|---|---|
committer | 2005-11-05 04:28:07 +0000 | |
commit | e8c9407c2e5908e7fadd056d31d21134bcc8bbba (patch) | |
tree | e3e59bc51bf735efd92f6555660c9bcad5dc586b /sys-apps/lshw/lshw-02.06b.ebuild | |
parent | old (diff) | |
download | historical-e8c9407c2e5908e7fadd056d31d21134bcc8bbba.tar.gz historical-e8c9407c2e5908e7fadd056d31d21134bcc8bbba.tar.bz2 historical-e8c9407c2e5908e7fadd056d31d21134bcc8bbba.zip |
Version bump #111500 by Daniel Webert.
Package-Manager: portage-2.0.53_rc7
Diffstat (limited to 'sys-apps/lshw/lshw-02.06b.ebuild')
-rw-r--r-- | sys-apps/lshw/lshw-02.06b.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sys-apps/lshw/lshw-02.06b.ebuild b/sys-apps/lshw/lshw-02.06b.ebuild new file mode 100644 index 000000000000..11192f8e4cd4 --- /dev/null +++ b/sys-apps/lshw/lshw-02.06b.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lshw/lshw-02.06b.ebuild,v 1.1 2005/11/05 04:28:07 vapier 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.sourceforge.net/" +SRC_URI="http://ezix.sourceforge.net/software/files/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="gtk static" + +DEPEND="gtk? ( >=x11-libs/gtk+-2 ) + >=sys-devel/binutils-2.15" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-02.06b-build.patch + epatch "${FILESDIR}"/${PN}-02.06b-cpuid-PIC.patch #61947 +} + +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() { + make DESTDIR="${D}" install || die "install failed" + + if use gtk ; then + make DESTDIR="${D}" install-gui || die "install gui failed" + fi + + dodoc README docs/* +} |