You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/qdevelop/qdevelop-0.25-r1.ebuild

39 lines
900 B

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/qdevelop/qdevelop-0.25-r1.ebuild,v 1.6 2009/10/05 19:56:10 ayoy Exp $
EAPI="2"
inherit base eutils qt4 toolchain-funcs
DESCRIPTION="A development environment entirely dedicated to Qt4."
HOMEPAGE="http://qdevelop.org/"
SRC_URI="http://qdevelop.free.fr/download/${PN}_${PV}.zip"
LICENSE="GPL-2"
KEYWORDS="~amd64 x86"
SLOT="0"
IUSE=""
RDEPEND="x11-libs/qt-gui:4
x11-libs/qt-sql:4[sqlite]"
DEPEND="app-arch/unzip
${RDEPEND}"
PATCHES=( "${FILESDIR}/${P}-gcc43.patch" )
src_configure() {
eqmake4 QDevelop.pro
}
src_compile() {
emake CXX=$(tc-getCXX) || die "emake failed"
}
src_install() {
dodoc ChangeLog.txt README.txt
dobin bin/qdevelop
newicon "${S}"/resources/images/QDevelop.png qdevelop.png
domenu "${FILESDIR}"/qdevelop.desktop
}