2013-03-04 02:16:24 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
2012-02-06 16:39:49 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-03-04 02:16:24 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/automoc/automoc-0.9.88.ebuild,v 1.7 2013/03/02 20:19:56 hwoarang Exp $
|
2012-02-06 16:39:49 +04:00
|
|
|
|
|
|
|
EAPI="2"
|
|
|
|
|
|
|
|
MY_PN="automoc4"
|
|
|
|
MY_P="$MY_PN-${PV}"
|
|
|
|
|
|
|
|
inherit base cmake-utils flag-o-matic
|
|
|
|
|
|
|
|
DESCRIPTION="KDE Meta Object Compiler"
|
|
|
|
HOMEPAGE="http://www.kde.org"
|
|
|
|
SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/${MY_P}.tar.bz2"
|
|
|
|
|
2012-12-04 10:11:53 +04:00
|
|
|
LICENSE="BSD-2"
|
2012-02-06 16:39:49 +04:00
|
|
|
SLOT="0"
|
2012-10-01 23:11:07 +04:00
|
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
|
2012-02-06 16:39:49 +04:00
|
|
|
IUSE=""
|
|
|
|
|
2013-03-04 02:16:24 +04:00
|
|
|
DEPEND="dev-qt/qtcore:4"
|
2012-02-06 16:39:49 +04:00
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
|
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}"/${PN}-0.9.88-objc++.patch
|
|
|
|
)
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
base_src_prepare
|
|
|
|
|
|
|
|
if [[ ${ELIBC} = uclibc ]]; then
|
|
|
|
append-flags -pthread
|
|
|
|
fi
|
|
|
|
}
|