diff options
author | Theo Chatzimichos <tampakrap@gentoo.org> | 2010-01-06 14:25:59 +0000 |
---|---|---|
committer | Theo Chatzimichos <tampakrap@gentoo.org> | 2010-01-06 14:25:59 +0000 |
commit | 47dcbf967378573ef1db0b385842a965c44062ca (patch) | |
tree | dfd38fae6c8451e583b7481f24cdcbe301b12340 /sci-electronics | |
parent | Marked ppc stable for bug #289092. (diff) | |
download | gentoo-2-47dcbf967378573ef1db0b385842a965c44062ca.tar.gz gentoo-2-47dcbf967378573ef1db0b385842a965c44062ca.tar.bz2 gentoo-2-47dcbf967378573ef1db0b385842a965c44062ca.zip |
Version bump
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/plcedit/ChangeLog | 8 | ||||
-rw-r--r-- | sci-electronics/plcedit/plcedit-2.1.2.ebuild | 31 |
2 files changed, 38 insertions, 1 deletions
diff --git a/sci-electronics/plcedit/ChangeLog b/sci-electronics/plcedit/ChangeLog index 728493b0552b..c88a13c47889 100644 --- a/sci-electronics/plcedit/ChangeLog +++ b/sci-electronics/plcedit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-electronics/plcedit # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/plcedit/ChangeLog,v 1.4 2010/01/06 13:59:57 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/plcedit/ChangeLog,v 1.5 2010/01/06 14:25:59 tampakrap Exp $ + +*plcedit-2.1.2 (06 Jan 2010) + + 06 Jan 2010; Theo Chatzimichos <tampakrap@gentoo.org> + +plcedit-2.1.2.ebuild: + Version bump 06 Jan 2010; <hwoarang@gentoo.org> plcedit-2.1.1.ebuild: migrate to qt4-r2 eclass diff --git a/sci-electronics/plcedit/plcedit-2.1.2.ebuild b/sci-electronics/plcedit/plcedit-2.1.2.ebuild new file mode 100644 index 000000000000..0876ae806e70 --- /dev/null +++ b/sci-electronics/plcedit/plcedit-2.1.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/plcedit/plcedit-2.1.2.ebuild,v 1.1 2010/01/06 14:25:59 tampakrap Exp $ + +EAPI="2" + +inherit versionator qt4-r2 +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" +DEPEND="${RDEPEND}" + +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 +} |