blob: c93eef26f5ac46869570b41021d79a820399cd76 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/desklet-cpuinfo/desklet-cpuinfo-0.1.4-r1.ebuild,v 1.5 2004/06/24 22:49:28 agriffis Exp $
SENS_NAME="CPU"
DISP_NAME="info"
SENS_P=${SENS_NAME}-${PV}
DISP_P=${DISP_NAME}-${PV}
DESCRIPTION="A CPU Monitor Sensor and Display for gDesklets"
SRC_URI="http://gdesklets.gnomedesktop.org/files/${SENS_P}.tar.bz2 \
http://gdesklets.gnomedesktop.org/files/${DISP_P}.tar.bz2"
HOMEPAGE="http://www.pycage.de/"
LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="~x86 ~ppc amd64"
DEPEND=">=gnome-extra/gdesklets-core-0.22"
# unfortunately, these are usually dependent on the particular
# desklet and it's packager
DOCS="README ChangeLog"
SENS_S=${WORKDIR}/${SENS_P}
DISP_S=${WORKDIR}
src_install( ) {
# set up our paths
SYS_PATH="/usr/share/gdesklets"
INSTALL_BIN="Install_${SENS_NAME}_Sensor.bin"
dodir ${SYS_PATH}/{Sensors,Displays}
# first we install the Sensor
cd ${SENS_S}
python ${INSTALL_BIN} --nomsg ${D}${SYS_PATH}/Sensors
# and the docs
dodoc ${DOCS}
# and now the display
cd ${DISP_S}
dodir ${SYS_PATH}/Displays/${DISP_NAME}/{dark,light}-theme
# this one include both 'light' and 'dark' themed displays
cp -R dark-theme/{${DISP_NAME}.display,gfx/} \
${D}${SYS_PATH}/Displays/${DISP_NAME}/dark-theme
cp -R light-theme/{${DISP_NAME}.display,gfx/} \
${D}${SYS_PATH}/Displays/${DISP_NAME}/light-theme
}
|