From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- x11-apps/whyteboard/Manifest | 2 ++ x11-apps/whyteboard/files/whyteboard.desktop | 13 ++++++++ x11-apps/whyteboard/metadata.xml | 25 ++++++++++++++ x11-apps/whyteboard/whyteboard-0.41.1.ebuild | 49 ++++++++++++++++++++++++++++ 4 files changed, 89 insertions(+) create mode 100644 x11-apps/whyteboard/Manifest create mode 100644 x11-apps/whyteboard/files/whyteboard.desktop create mode 100644 x11-apps/whyteboard/metadata.xml create mode 100644 x11-apps/whyteboard/whyteboard-0.41.1.ebuild (limited to 'x11-apps/whyteboard') diff --git a/x11-apps/whyteboard/Manifest b/x11-apps/whyteboard/Manifest new file mode 100644 index 000000000000..8018075a7ff3 --- /dev/null +++ b/x11-apps/whyteboard/Manifest @@ -0,0 +1,2 @@ +DIST whyteboard-0.41.1.tar.gz 372110 SHA256 2d054981736f905a5c690b73bf2eedbb32337e61e099e87aeae52681f9d83125 SHA512 c2f789846c5c611047b590109a49b6c28c51e5c84a7d2399f025b5b79d3c633577106aba79f76f0244bc175cbd3169cd8a53221d08ca94ddf39be01406fd429e WHIRLPOOL fd24754077f07f12c9401878b7ecf34a30e0539b36ae97216386f8b68989241316f7c9705b5e8296685bd28d9ace4c2cb96baa5f22cb6102f42aa1ccea9642f4 +DIST whyteboard.png 7601 SHA256 cd1188ebc24c7fc139052269a528e12c4cb4943195c626a73604ea9b2cf042af SHA512 384b0e6de138d3d193c3fbf02dbfe53273d24d88e9665b04cbc8b826d29b7aa7ff8ad916a39cfb6e44d0518da1229546a230369d55b1ae86cab5152ceb33f4fe WHIRLPOOL 5894486aff445929558f494e71cab58cf3f7ceb3c4a0d43ff8524bca47ac69532a2fd044bcbb938ac0edae268439b422809be8e66e840dfccdd9074a7129367b diff --git a/x11-apps/whyteboard/files/whyteboard.desktop b/x11-apps/whyteboard/files/whyteboard.desktop new file mode 100644 index 000000000000..958e63690082 --- /dev/null +++ b/x11-apps/whyteboard/files/whyteboard.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Type=Application +Name=Whyteboard +GenericName=Panting App +GenericName[it]=lavagna +Comment=Simple whiteboard and PDF annotator +Exec=whyteboard %U +TryExec=whyteboard +Icon=/usr/share/pixmaps/whyteboard.png +Terminal=false +Categories=GNOME;GTK;Utility; +StartupNotify=true +MimeType=image/png;image/svg+xml; diff --git a/x11-apps/whyteboard/metadata.xml b/x11-apps/whyteboard/metadata.xml new file mode 100644 index 000000000000..e86319d033f7 --- /dev/null +++ b/x11-apps/whyteboard/metadata.xml @@ -0,0 +1,25 @@ + + + + proxy-maintainers + + lxnay@gentoo.org + Fabio Erculiani + Maintainer. Assign bugs to him + + + ziapannocchia@gmail.com + Marco Clocchiatti + Proxy maintainer. CC him on bugs + + A simple image, PDF and postscript file annotator. + + + + Steven Sproat + + http://whyteboard.org/ + + + + diff --git a/x11-apps/whyteboard/whyteboard-0.41.1.ebuild b/x11-apps/whyteboard/whyteboard-0.41.1.ebuild new file mode 100644 index 000000000000..b29b060fefcf --- /dev/null +++ b/x11-apps/whyteboard/whyteboard-0.41.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit eutils python-single-r1 multilib + +DESCRIPTION="A simple image, PDF and postscript file annotator" +HOMEPAGE="http://code.google.com/p/whyteboard" +SRC_URI=" + http://whyteboard.googlecode.com/files/${P}.tar.gz + http://dev.gentoo.org/~lxnay/${PN}/${PN}.png" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND} + dev-python/wxpython:*[${PYTHON_USEDEP}] + media-gfx/imagemagick" + +src_install() { + doicon "${DISTDIR}"/${PN}.png + domenu "${FILESDIR}"/${PN}.desktop + + dodoc CHANGELOG.txt DEVELOPING.txt README.txt TODO.txt + + python_domodule images locale ${PN} ${PN}-help ${PN}.py + + cat >> "${T}/${PN}" <<- EOF + #!/bin/sh + exec ${PYTHON} -O "$(python_get_sitedir)/${PN}/${PN}.py" + EOF + dobin "${T}/${PN}" + + python_optimize +} + +pkg_preinst() { + echo + elog "This application is very experimental and some features" + elog "are not yet implemented, however you can live with it" + echo +} -- cgit v1.2.3-65-gdbad