| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-util/crow-designer/crow-designer-2.99.0.ebuild,v 1.1 2011/07/23 12:36:01 pva Exp $
|
| 4 |
|
| 5 |
EAPI="4"
|
| 6 |
|
| 7 |
DESCRIPTION="GTK+ GUI building tool"
|
| 8 |
HOMEPAGE="http://www.crowdesigner.org"
|
| 9 |
SRC_URI="http://nothing-personal.googlecode.com/files/crow-${PV}.tar.xz"
|
| 10 |
|
| 11 |
LICENSE="MIT"
|
| 12 |
SLOT="0"
|
| 13 |
KEYWORDS="~amd64 ~x86"
|
| 14 |
IUSE="nls"
|
| 15 |
|
| 16 |
LANGS="ru"
|
| 17 |
|
| 18 |
RDEPEND=">=dev-libs/guiloader-2.99
|
| 19 |
>=dev-libs/guiloader-c++-2.99
|
| 20 |
dev-cpp/gtkmm:3.0
|
| 21 |
>=dev-libs/dbus-glib-0.92"
|
| 22 |
DEPEND="${RDEPEND}
|
| 23 |
dev-libs/boost
|
| 24 |
virtual/pkgconfig
|
| 25 |
nls? ( >=sys-devel/gettext-0.18 )"
|
| 26 |
|
| 27 |
S=${WORKDIR}/crow-${PV}
|
| 28 |
|
| 29 |
for x in ${LANGS}; do
|
| 30 |
IUSE="${IUSE} linguas_${x}"
|
| 31 |
done
|
| 32 |
|
| 33 |
src_configure() {
|
| 34 |
econf $(use_enable nls)
|
| 35 |
}
|
| 36 |
|
| 37 |
src_install() {
|
| 38 |
emake DESTDIR="${D}" install
|
| 39 |
dodoc doc/{authors.txt,news.{en,ru}.txt,readme.{en,ru}.txt,readme.ru.txt}
|
| 40 |
}
|