# 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-networkinfo/desklet-networkinfo-0.1.4-r1.ebuild,v 1.2 2003/11/20 20:32:42 dholm Exp $ SENS_NAME="Network" DISP_NAME="networkinfo" SENS_P=${SENS_NAME}-${PV} DISP_P=${DISP_NAME}-${PV} DESCRIPTION="A Network monitoring 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 ~sparc ~ppc" 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 }