From 4f2d7949f03e1c198bc888f2d05f421d35c57e21 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 9 Oct 2017 18:53:29 +0100 Subject: reinit the tree, so we can have metadata --- app-office/pinpoint/Manifest | 5 ++++ app-office/pinpoint/metadata.xml | 13 +++++++++ app-office/pinpoint/pinpoint-0.1.8.ebuild | 47 +++++++++++++++++++++++++++++++ 3 files changed, 65 insertions(+) create mode 100644 app-office/pinpoint/Manifest create mode 100644 app-office/pinpoint/metadata.xml create mode 100644 app-office/pinpoint/pinpoint-0.1.8.ebuild (limited to 'app-office/pinpoint') diff --git a/app-office/pinpoint/Manifest b/app-office/pinpoint/Manifest new file mode 100644 index 000000000000..832a73ffca31 --- /dev/null +++ b/app-office/pinpoint/Manifest @@ -0,0 +1,5 @@ +DIST pinpoint-0.1.8.tar.xz 772980 SHA256 5a207dd1a35681b7268e6aa5ff9b2c5381f4cc63e5f2e5695997ca9d3264e8ca SHA512 dc41405f79bf03b6a7c77ec31304e505d4ae2d13407304fbcc2f338dfe175f91db3c554ea06ba8041edbf99a12551f16efed98b5a07f29b7f24255cad2b1b94d WHIRLPOOL 4ddda5e82faa2ce2d426adccfbb0d834161d354cf6947526a829b2126e1f9067b5632925c2b3d29a42030cd815a8295922443ddf314c76e5156539a7f051c484 +EBUILD pinpoint-0.1.8.ebuild 1074 SHA256 81fae6e2eff0d62962c13914c830863bc84cdb6cdf2d5b50c0d5d6016269d90a SHA512 0e282f771c36b73fefcca603242d8d9b760a95aee086a6f658ceee6100ea6e64e45bbe3122060fa90eaf523665a22e0f1a8fe9d4173bd794989ff5562a418e7d WHIRLPOOL 895d8fc783ea2e6c4b87679a23c0181f39d807364f23d6636e6ba32b0363a0e8aa86e68c6031a3d521b19b4c196994a1e9eef852b4694e4f4fc63165170473f8 +MISC ChangeLog 4039 SHA256 69350ab3e76822835ad50638d183557571f507d33ce0e60b181968e9be8904e2 SHA512 7c9dd76ff3b703b70ead2d2852d70b0044b08732e408282d960f5f41cb444ea4ad640ca835102b1dcde085910df514034a8844fbbc3da31409e0b4ac36a1ce73 WHIRLPOOL 5b0531924723f6d5c59d779440fae50f9879244e908c74fb0753a57a5eca07bcfc1082f71bbf05111b1146406453e5fff49379beb7d81d2ad7ca97445d128a89 +MISC ChangeLog-2015 2202 SHA256 66855a77f9e77d4f0230d5b25ca1428818f4a9165c3197f4df55eb3baf4401d8 SHA512 d22ef8c698c20d4821dfccff9861bc2eab4140b20fbe5eb2c7b963a80b7cda4d83d86d2371bd0120726acbb5f32f5b598a0c7c5865c516daee1eba43acc6543d WHIRLPOOL 29619f8d986b7c2161001819d9bd1a8ec062d818ac4b260f777a69e1488c9978fa3b1baad70ae37b82546c3eaa16d5b889df571409f4324e2b58894e4e330699 +MISC metadata.xml 507 SHA256 c2c0e0b2ba9e2dffe81ffb604fe6921f8a15b39c23cf0c28d67ca77046e31dc2 SHA512 be6bb803225f307fc7d2a9febd4ece776ce2e99f902d952b80c5bb8068793a9f32ab09c6a79a4c950299a83829fd32fab366600637892fbac02a908f038add74 WHIRLPOOL 339dc476732a0a891612e13070d7c4a10268f5b68be3f97ce8d140184a0c0b87f9f0b1104b4808034dd9bff11a4844abff2ce73c947489f8c6d7c0a1df132440 diff --git a/app-office/pinpoint/metadata.xml b/app-office/pinpoint/metadata.xml new file mode 100644 index 000000000000..3f1c1dff8912 --- /dev/null +++ b/app-office/pinpoint/metadata.xml @@ -0,0 +1,13 @@ + + + + + gnome@gentoo.org + Gentoo GNOME Desktop + + + Pinpoint is a simple presentation tool that hopes to avoid audience + death by bullet point and instead encourage presentations containing + beautiful images and small amounts of concise text in slides. + + diff --git a/app-office/pinpoint/pinpoint-0.1.8.ebuild b/app-office/pinpoint/pinpoint-0.1.8.ebuild new file mode 100644 index 000000000000..20e41ca9d30a --- /dev/null +++ b/app-office/pinpoint/pinpoint-0.1.8.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="A tool for making hackers do excellent presentations" +HOMEPAGE="https://wiki.gnome.org/Apps/Pinpoint" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="+gstreamer +pdf" + +# rsvg is used for svg-in-pdf -- clubbing it under pdf for now +RDEPEND=" + >=media-libs/clutter-1.23.7:1.0 + >=media-libs/clutter-gtk-1.6:1.0 + >=dev-libs/glib-2.28:2 + >=x11-libs/cairo-1.9.4 + x11-libs/pango + x11-libs/gdk-pixbuf:2 + gstreamer? ( media-libs/clutter-gst:3.0 ) + pdf? ( gnome-base/librsvg:2 ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +src_configure() { + # dax support is disabled because we don't have it in tree yet and it's + # experimental + gnome2_src_configure \ + --disable-dax \ + $(use_enable gstreamer cluttergst) \ + $(use_enable pdf rsvg) +} + +src_install() { + gnome2_src_install + + docompress -x /usr/share/doc/${PF}/examples + insinto "/usr/share/doc/${PF}/examples" + doins introduction.pin bg.jpg bowls.jpg linus.jpg +} -- cgit v1.2.3