diff options
author | Mike Gardiner <obz@gentoo.org> | 2003-11-16 07:31:13 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2003-11-16 07:31:13 +0000 |
commit | ff4e1bee656b1148c7b3e7ddf8e572449470df80 (patch) | |
tree | 67351447c580038ccd1108e0e4bc34f7054d6697 /x11-plugins/desklet-psisensors/desklet-psisensors-20031028.ebuild | |
parent | New version (diff) | |
download | gentoo-2-ff4e1bee656b1148c7b3e7ddf8e572449470df80.tar.gz gentoo-2-ff4e1bee656b1148c7b3e7ddf8e572449470df80.tar.bz2 gentoo-2-ff4e1bee656b1148c7b3e7ddf8e572449470df80.zip |
New version
Diffstat (limited to 'x11-plugins/desklet-psisensors/desklet-psisensors-20031028.ebuild')
-rw-r--r-- | x11-plugins/desklet-psisensors/desklet-psisensors-20031028.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/x11-plugins/desklet-psisensors/desklet-psisensors-20031028.ebuild b/x11-plugins/desklet-psisensors/desklet-psisensors-20031028.ebuild new file mode 100644 index 000000000000..e1ff4855554c --- /dev/null +++ b/x11-plugins/desklet-psisensors/desklet-psisensors-20031028.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/desklet-psisensors/desklet-psisensors-20031028.ebuild,v 1.1 2003/11/16 07:29:24 obz Exp $ + +MY_PN="PsiSensorPackage" +MY_P=${MY_PN}-${PV} +S=${WORKDIR} + +DESCRIPTION="Psi's collection of popular gDesklet Sensors including CPU, Disk, Memory, Network and other Sensors" +SRC_URI="http://gdesklets.gnomedesktop.org/files/${MY_P}.tar.bz2" +HOMEPAGE="http://gdesklets.gnomedesktop.org/" +LICENSE="as-is" + +SLOT="0" +IUSE="" +KEYWORDS="~x86 ~ppc" + +DEPEND=">=gnome-extra/gdesklets-core-0.23 + !x11-plugins/desklet-cpuinfo + !x11-plugins/desklet-diskinfo + !x11-plugins/desklet-meminfo + !x11-plugins/desklet-networkinfo" +# This package provides all of the *info desklets, +# which are now outdated. We need to block them, or +# we could have two packages providing the same file. + +DOCS="README ChangeLog" + +src_install() { + + SYS_PATH="/usr/share/gdesklets" + dodir ${SYS_PATH}/Sensors + + # We dont want to include the FontSelector sensor + # here, as it's provided with the core library now + rm -rf ${S}/{FontSelector,MemoOver}-* + # We're also removing the MemoOver sensor as it's not + # complete, requires per-user python script to store + # memos etc. + + for sensor in $( ls ); do + + cd ${S}/${sensor} + INSTALL_BIN="Install_${sensor/-*/}_Sensor.bin" + python ${INSTALL_BIN} --nomsg ${D}${SYS_PATH}/Sensors + + docinto ${sensor} + dodoc ${DOCS} + + done + + # the desklets unpack preserves permissions of the archive + chown -R root:root ${D}${SYS_PATH}/Sensors + +} + |