diff options
author | Harri Nieminen <moikkis@gmail.com> | 2017-02-15 20:27:33 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-02-17 21:14:45 +0100 |
commit | d6a0cfab671fd12c36a94313316f0e09a84dfb6b (patch) | |
tree | c26bfd53f9d4e40e39012e7b41af08276fe84775 /x11-misc/devilspie/devilspie-0.23.ebuild | |
parent | x11-misc/accessx: EAPI bump 2 -> 6 (diff) | |
download | gentoo-d6a0cfab671fd12c36a94313316f0e09a84dfb6b.tar.gz gentoo-d6a0cfab671fd12c36a94313316f0e09a84dfb6b.tar.bz2 gentoo-d6a0cfab671fd12c36a94313316f0e09a84dfb6b.zip |
x11-misc/devilspie: Bump to 0.23
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3987
Diffstat (limited to 'x11-misc/devilspie/devilspie-0.23.ebuild')
-rw-r--r-- | x11-misc/devilspie/devilspie-0.23.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/x11-misc/devilspie/devilspie-0.23.ebuild b/x11-misc/devilspie/devilspie-0.23.ebuild new file mode 100644 index 000000000000..f285f63e1b68 --- /dev/null +++ b/x11-misc/devilspie/devilspie-0.23.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit autotools toolchain-funcs + +DESCRIPTION="A Window Matching utility similar to Sawfish's Matched Windows feature" +HOMEPAGE="http://www.burtonini.com/blog/tag/devilspie.html" +SRC_URI="http://www.burtonini.com/computing/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + >=dev-libs/glib-2.10 + x11-libs/gtk+:3[X] + x11-libs/libwnck:3 + x11-libs/libX11" +DEPEND="${RDEPEND} + virtual/pkgconfig + dev-util/intltool + sys-devel/gettext + gnome-base/gnome-common" # Required by eautoreconf + +src_prepare() { + default + sed -i -e "s:\(/usr/share/doc/devilspie\):\1-${PVR}:" devilspie.1 || die + sed -i -e '/-DG.*_DISABLE_DEPRECATED/d' src/Makefile.am || die + mv configure.{in,ac} || die + eautoreconf + LIBS="$($(tc-getPKG_CONFIG) --libs x11)" +} + +src_install() { + default + keepdir /etc/devilspie +} |