# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-electronics/plcedit/plcedit-2.1.1.ebuild,v 1.1 2009/07/07 15:11:33 hwoarang Exp $ EAPI="2" inherit versionator qt4 MY_PN="PLCEdit" DESCRIPTION="Qt4 notepad for PLC programming" HOMEPAGE="http://www.qt-apps.org/content/show.php/PLCEdit?content=78380" #upstreams default tarball is quite messy. Better repack it myself :/ SRC_URI="mirror://gentoo/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug doc" RDEPEND="x11-libs/qt-gui:4[debug?]" DEPEND="${RDEPEND}" src_configure(){ eqmake4 ${MY_PN}.pro } src_install(){ newbin release/${MY_PN} ${PN} || die "dobin failed" newicon src/ressources/images/icon.png ${PN}.png make_desktop_entry ${PN} ${MY_PN} ${PN}.png 'Qt;Electronics' dodoc readme.txt || die "dodoc failed" if use doc; then dohtml -r Docs/html/* || die "dohtml failed" fi }