blob: 4d7d5fcfa71d480f2e06409b3390b526b4d6cbec (
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
|
# Copyright 2014 deterenkelt
# Distributed under the terms of the GNU General Public License v3
# $Header: $
EAPI="5"
inherit eutils
SLOT="0"
DESCRIPTION="A tool for creating graphical dialogs from shell scripts. Fork of zenity."
HOMEPAGE="http://sourceforge.net/projects/yad-dialog/"
SRC_URI="https://sourceforge.net/projects/yad-dialog/files/yad-0.36.3.tar.xz"
LICENSE="GPL-3"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="x11-libs/gtk+:2
dev-libs/glib:2"
DEPEND="${RDEPEND}
|| ( dev-util/pkgconfig dev-util/pkgconf )
sys-devel/gettext
dev-util/intltool
app-arch/xz-utils"
src_prepare() {
epatch_user
}
src_configure() {
econf \
--disable-deprecated
}
|