voyageur 15/03/17 16:52:18 Added: metadata.xml ChangeLog xplanetFX-2.6.4.ebuild Log: Initial commit, fixes bug #364071 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
Revision Changes Path 1.1 x11-misc/xplanetFX/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanetFX/metadata.xml?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanetFX/metadata.xml?rev=1.1&content-type=text/plain Index: metadata.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <maintainer> <email>voyag...@gentoo.org</email> <name>Bernard Cafarelli</name> </maintainer> <longdescription>Create high quality renderings of mother earth with realistic clouding and lighting effects as your desktop wallpaper with “realtime” capabilities. xplanet (by Hari Nair) is a great piece of software capable of creating renderings inside our solar system. To raise the quality of it’s output adding some graphical effects, it was a great candidate to link with imagemagick. The result is xplanetFX, a user-friendly piece of software to configure, run or daemonize xplanet with h/q capabilities to create wallpapers of mother earth on your desktop. More realistic maps and backgrounds and a sophisticated graphics handling produce nearly photo realistic images of our mothership. It’s GTK GUI makes it really easy to use and provides a lot of settings and a user friendly access to xplanetFX. And even the templating capabilities give xplanetFX an individual and stylish touch.</longdescription> </pkgmetadata> 1.1 x11-misc/xplanetFX/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanetFX/ChangeLog?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanetFX/ChangeLog?rev=1.1&content-type=text/plain Index: ChangeLog =================================================================== # ChangeLog for x11-misc/xplanetFX # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanetFX/ChangeLog,v 1.1 2015/03/17 16:52:18 voyageur Exp $ *xplanetFX-2.6.4 (17 Mar 2015) 17 Mar 2015; Bernard Cafarelli <voyag...@gentoo.org> +xplanetFX-2.6.4.ebuild, +files/xplanetFX-2.6.4-gentoo-path.patch, +metadata.xml: Initial commit, fixes bug #364071 1.1 x11-misc/xplanetFX/xplanetFX-2.6.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanetFX/xplanetFX-2.6.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanetFX/xplanetFX-2.6.4.ebuild?rev=1.1&content-type=text/plain Index: xplanetFX-2.6.4.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanetFX/xplanetFX-2.6.4.ebuild,v 1.1 2015/03/17 16:52:18 voyageur Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit eutils python-r1 DESCRIPTION="User-friendly interface to configure, run or daemonize xplanet with HQ capabilities" HOMEPAGE="http://mein-neues-blog.de/xplanetFX/" SRC_URI="http://repository.mein-neues-blog.de:9000/archive/${P/FX/fx}_all.tar.gz" LICENSE="WTFPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="libnotify" DEPEND="" RDEPEND="${DEPEND} dev-python/pygtk[${PYTHON_USEDEP}] media-gfx/imagemagick sys-devel/bc x11-misc/xplanet libnotify? ( x11-libs/libnotify )" #python S="${WORKDIR}/usr" src_prepare() { epatch "${FILESDIR}"/${P}-gentoo-path.patch sed -e "s/Application;//" -i share/applications/*desktop || die # These will be installed separately mkdir gentoo || die mv share/${PN}/{autostart,flipview.py,stars/catalog.py,xplanetFX_gtk,xplanetFX_tray} \ gentoo || die } src_install() { dobin bin/${PN} insinto /usr/share/applications doins share/applications/${PN}.desktop insinto /usr/share/pixmaps doins share/pixmaps/* insinto /usr/share/${PN} doins -r share/${PN}/* exeinto /usr/share/${PN} doexe gentoo/autostart dodoc usr/share/doc/${PN}/{changelog,README} python_scriptinto /usr/share/${PN}/stars python_foreach_impl python_doscript gentoo/catalog.py python_scriptinto /usr/share/${PN} python_foreach_impl python_doscript gentoo/{xplanetFX_gtk,xplanetFX_tray} python_foreach_impl python_domodule gentoo/flipview.py }