blob: 73972716bec3ce8a271ebc326c291d29fa7a3696 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/hal-device-manager/hal-device-manager-0.5.ebuild,v 1.4 2006/02/03 22:21:19 agriffis Exp $
inherit eutils
DESCRIPTION="HAL device viewer"
HOMEPAGE="http://www.freedesktop.org/Software/hal"
SRC_URI=""
LICENSE="|| ( GPL-2 AFL-2.0 )"
SLOT="0"
KEYWORDS="~amd64 ia64 ~ppc sparc ~x86"
IUSE=""
RDEPEND=">=sys-apps/hal-${PV}-r1
>=dev-python/gnome-python-2.0.0-r1"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}
src_install() {
dodir /usr/bin
dosym /usr/share/hal/device-manager/hal-device-manager /usr/bin
#insinto /usr/share/applications
#doins ${FILESDIR}/hal-device-manager.desktop
make_desktop_entry hal-device-manager "Device Manager" \
"hwbrowser" "System"
}
|