# Copyright 1999-2010 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.2 2010/11/01 15:59:14 ssuominen Exp $ EAPI="2" 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="x11-libs/qt-gui:4 x11-libs/qt-sql: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)" ) cmake-utils_src_configure } src_install() { cmake-utils_src_install dodoc ChangeLog.txt README.txt || die "dodoc failed" newicon "${S}"/resources/images/QDevelop.png qdevelop.png domenu "${S}"/qdevelop.desktop } pkg_postinst(){ elog "Additional functionality can be achieved by emerging other packages:" elog " dev-util/ctags - code completion" elog " sys-devel/gdb - debugging" }