blob: 1acfeda5e79338bf7bc4696fcf10f85db527c473 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/idesk-extras/idesk-extras-1.37-r1.ebuild,v 1.1 2013/10/06 12:50:21 hasufell Exp $
EAPI=5
inherit eutils
DESCRIPTION="Graphical configuration for iDesk plus icons"
HOMEPAGE="http://www.jmurray.id.au/idesk-extras.html" # dead?
SRC_URI="http://dev.gentoo.org/~hasufell/distfiles/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="app-shells/bash
x11-misc/idesk
x11-misc/xdialog"
src_prepare() {
epatch "${FILESDIR}"/${P}-stdout.patch
}
src_install() {
dobin idesktool
dodoc CHANGES
dohtml ${PN}.html
insinto /usr/share/idesk
doins -r icons
}
|