blob: 1b5052bc5139e6dfdb9996cb19e75afdbb6df186 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-extra/transd/transd-0_p20101006.ebuild,v 1.8 2011/03/29 04:06:18 ssuominen Exp $
EAPI=3
EAUTORECONF=yes
EINTLTOOLIZE=yes
inherit xfconf
DESCRIPTION="A small daemon to watch for window creation and set window transparency values"
HOMEPAGE="http://spuriousinterrupt.org/projects/transd"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="debug"
RDEPEND="x11-libs/libX11
>=xfce-base/libxfcegui4-4.2"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig"
pkg_setup() {
XFCONF=(
--disable-dependency-tracking
$(xfconf_use_debug)
)
DOCS="AUTHORS README TODO"
}
src_prepare() {
sed -i -e '/Encoding/d' transd.desktop.in || die
xfconf_src_prepare
}
|