48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/qdevelop/qdevelop-0.28.ebuild,v 1.7 2013/03/02 21:06:45 hwoarang Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit eutils cmake-utils
|
|
|
|
MY_P=${PN}-v${PV}
|
|
DESCRIPTION="A development environment entirely dedicated to Qt4."
|
|
HOMEPAGE="http://biord-software.org/qdevelop/"
|
|
SRC_URI="http://biord-software.org/downloads/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="amd64 x86"
|
|
SLOT="0"
|
|
IUSE="debug plugins"
|
|
|
|
DEPEND="dev-qt/qtgui:4
|
|
dev-qt/qtsql:4[sqlite]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-qt-4.7_fix.patch )
|
|
|
|
src_configure() {
|
|
mycmakeargs=( "-DAUTOPLUGINS=$(use plugins && echo 1 || echo 0)" )
|
|
|
|
sed -e "s#/lib/pkgconfig#/$(get_libdir)/pkgconfig#" \
|
|
-e "s#DESTINATION lib#DESTINATION $(get_libdir)#" \
|
|
-i CMakeLists.txt || die "sed fixing multilib failed"
|
|
|
|
cmake-utils_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake-utils_src_install
|
|
dodoc ChangeLog.txt README.txt
|
|
newicon "${S}"/resources/images/QDevelop.png qdevelop.png
|
|
make_desktop_entry ${PN}
|
|
}
|
|
|
|
pkg_postinst(){
|
|
elog "Additional functionality can be achieved by emerging other packages:"
|
|
elog " dev-util/ctags - code completion"
|
|
elog " sys-devel/gdb - debugging"
|
|
}
|