blob: b1a48070846d515f8292231ec4919a3863747267 (
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
46
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils flag-o-matic
DESCRIPTION="GTK+ GUI building tool"
HOMEPAGE="http://www.crowdesigner.org"
SRC_URI="https://nothing-personal.googlecode.com/files/crow-${PV}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="nls"
LANGS="ru"
RDEPEND="
>=dev-libs/guiloader-2.21
>=dev-libs/guiloader-c++-2.21
dev-cpp/gtkmm:2.4
>=dev-libs/dbus-glib-0.86
"
DEPEND="${RDEPEND}
dev-libs/boost
virtual/pkgconfig
nls? ( >=sys-devel/gettext-0.18 )
"
S="${WORKDIR}/crow-${PV}"
for x in ${LANGS}; do
IUSE="${IUSE} linguas_${x}"
done
src_configure() {
append-cxxflags -std=c++11
econf $(use_enable nls)
}
src_install() {
default
dodoc doc/{authors.txt,news.{en,ru}.txt,readme.{en,ru}.txt,readme.ru.txt}
prune_libtool_files
}
|