diff options
author | Michael Palimaka <kensington@gentoo.org> | 2014-01-09 08:20:09 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2014-01-09 08:20:09 +0000 |
commit | 2a6b5b14b99829c4c30b9afab6e310c5c6eef090 (patch) | |
tree | ba663d94ed31fc0daa7306486ac6e1c80d03a51d /media-gfx | |
parent | Add -9999 ebuild (diff) | |
download | gentoo-2-2a6b5b14b99829c4c30b9afab6e310c5c6eef090.tar.gz gentoo-2-2a6b5b14b99829c4c30b9afab6e310c5c6eef090.tar.bz2 gentoo-2-2a6b5b14b99829c4c30b9afab6e310c5c6eef090.zip |
Version bump wrt bug #497270.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/evoluspencil/ChangeLog | 10 | ||||
-rw-r--r-- | media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild | 44 |
2 files changed, 52 insertions, 2 deletions
diff --git a/media-gfx/evoluspencil/ChangeLog b/media-gfx/evoluspencil/ChangeLog index 419eadd59642..0780815bc19e 100644 --- a/media-gfx/evoluspencil/ChangeLog +++ b/media-gfx/evoluspencil/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/evoluspencil -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/evoluspencil/ChangeLog,v 1.6 2013/08/28 11:51:58 kensington Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/evoluspencil/ChangeLog,v 1.7 2014/01/09 08:20:09 kensington Exp $ + +*evoluspencil-2.0.5 (09 Jan 2014) + + 09 Jan 2014; Michael Palimaka <kensington@gentoo.org> + +evoluspencil-2.0.5.ebuild: + Version bump wrt bug #497270. 28 Aug 2013; Michael Palimaka <kensington@gentoo.org> -evoluspencil-2.0.3.ebuild: diff --git a/media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild b/media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild new file mode 100644 index 000000000000..e468d1cf92ff --- /dev/null +++ b/media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild,v 1.1 2014/01/09 08:20:09 kensington Exp $ + +EAPI=5 +MY_P="pencil-${PV}" + +inherit fdo-mime + +DESCRIPTION="A simple GUI prototyping tool to create mockups." +HOMEPAGE="http://pencil.evolus.vn/" +SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="|| ( www-client/firefox www-client/firefox-bin )" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + # avoid file collisions with media-gfx/pencil + mv usr/bin/{pencil,${PN}} || die + mv usr/share/{pencil,${PN}} || die + mv usr/share/applications/{pencil,${PN}}.desktop || die + + sed -e "s/pencil/${PN}/" -i usr/bin/${PN} \ + -i usr/share/applications/${PN}.desktop || die +} + +src_install() { + doins -r usr + newbin "${FILESDIR}"/launcher ${PN} +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} |