blob: 7547a5ade07a89496f0c44f0abc1466d8664b904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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.1 2008/05/31 10:13:08 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.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
}
|