blob: be0ac27e51eb139e855467d953910398c33c9519 (
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
49
50
51
52
53
54
55
56
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/desklet-sysinfo/desklet-sysinfo-0.21.2-r1.ebuild,v 1.5 2004/07/13 04:11:52 obz Exp $
DESKLET_NAME="SysInfo"
MY_P=${DESKLET_NAME}-${PV}
S=${WORKDIR}/${DESKLET_NAME}
DESCRIPTION="A system information providing Display/Sensor for gDesklets"
SRC_URI="http://gdesklets.gnomedesktop.org/files/${MY_P}.tar.bz2"
HOMEPAGE="http://gdesklets.gnomedesktop.org/categories.php?func=gd_show_app&gd_app_id=56"
LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="~x86 ~ppc"
DEPEND=">=gnome-extra/gdesklets-core-0.22"
DOCS="AUTHORS ChangeLog"
src_unpack( ) {
# *grumble* if you compress an archive using gunzip,
# why would you suffix it .tar.bz2 ? <obz@gentoo.org>
cd ${WORKDIR}
tar zxfv ${DISTDIR}/${MY_P}.tar.bz2
}
src_install() {
SYS_PATH="/usr/share/gdesklets"
INSTALL_BIN="Install_${DESKLET_NAME}_Sensor.bin"
dodir ${SYS_PATH}/{Sensors,Displays}
cd ${WORKDIR}
# first we install the Sensor
python ${INSTALL_BIN} --nomsg ${D}${SYS_PATH}/Sensors
cd ${S}
# and then the .displays
insinto ${SYS_PATH}/Displays/${DESKLET_NAME}
doins *.display
# and finally the graphics
cp -R gfx/ ${D}${SYS_PATH}/Displays/${DESKLET_NAME}
dodoc ${DOCS}
# desklets unpack preserves the permissions of the archive
chown -R root:root ${D}${SYS_PATH}/Sensors/${DESKLET_NAME}
}
|