blob: 6300d2deb2ccc3343cae328d95253c69e701243c (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-composite-editor/xfce4-composite-editor-0.ebuild,v 1.1 2012/12/11 12:07:42 ssuominen Exp $
EAPI=5
inherit xfconf
MY_PN=Xfce4-Composite-Editor
DESCRIPTION="An graphical interface to modify composite settings"
HOMEPAGE="http://keithhedger.hostingsiteforfree.com/pages/apps.html#xfcecomp"
SRC_URI="http://keithhedger.hostingsiteforfree.com/zips/${MY_PN}.tar.gz -> ${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="app-shells/bash
>=x11-misc/gtkdialog-0.8"
DEPEND="${RDEPEND}"
S=${WORKDIR}
pkg_setup() {
PATCHES=( "${FILESDIR}"/${P}-validate.patch )
}
src_configure() { :; }
src_compile() { :; }
src_install() {
dobin xfce4-composite-editor
domenu xfcecomped.desktop
dodoc README
}
|