blob: 2a2ee714860ab67c34e332f74f16c0826135396c (
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
38
39
40
41
42
43
44
45
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/devilspie2/devilspie2-0.27.ebuild,v 1.1 2012/12/17 21:57:27 hasufell Exp $
EAPI=5
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Devilspie like window matching utility, using LUA for scripting"
HOMEPAGE="http://devilspie2.gusnan.se"
SRC_URI="http://devilspie2.gusnan.se/download/${PN}_${PV}-src.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND=">=dev-libs/glib-2.32.4:2
>=dev-lang/lua-5.1.5
>=x11-libs/gtk+-3.4.4:3
>=x11-libs/libwnck-3.4.4:3
x11-libs/libX11"
DEPEND="${RDEPEND}
sys-devel/gettext
virtual/pkgconfig
x11-proto/xproto"
src_prepare() {
use debug && append-cflags -D_DEBUG
}
src_compile() {
emake CC=$(tc-getCC) PREFIX="/usr"
}
src_install() {
emake PREFIX="/usr" DESTDIR="${D}" install
dodoc AUTHORS ChangeLog README README.translators TODO VERSION
doman devilspie2.1
}
pkg_postinst() {
elog "Default folder for scripts is ~/.config/devilspie2/"
}
|