blob: 7d325f18b29c2f1e337f9b22d63d50c5cd53b40e (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
inherit cmake-utils subversion flag-o-matic
DESCRIPTION="KDE Meta Object Compiler"
HOMEPAGE="http://www.kde.org"
SRC_URI=""
ESVN_REPO_URI="svn://anonsvn.kde.org/home/kde/trunk/kdesupport/automoc"
LICENSE="as-is"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
x11-libs/qt-core:4
"
RDEPEND="${DEPEND}"
src_prepare() {
if [[ ${ELIBC} = uclibc ]]; then
append-flags -pthread
fi
}
|