Initial version of the handly little presentation tool.
authorArun Raghavan <ford_prefect@gentoo.org>
Wed, 24 Aug 2011 06:27:38 +0000 (06:27 +0000)
committerArun Raghavan <ford_prefect@gentoo.org>
Wed, 24 Aug 2011 06:27:38 +0000 (06:27 +0000)
Package-Manager: portage-2.2.0_alpha50/cvs/Linux x86_64

app-office/pinpoint/ChangeLog [new file with mode: 0644]
app-office/pinpoint/Manifest [new file with mode: 0644]
app-office/pinpoint/metadata.xml [new file with mode: 0644]
app-office/pinpoint/pinpoint-0.1.2.ebuild [new file with mode: 0644]

diff --git a/app-office/pinpoint/ChangeLog b/app-office/pinpoint/ChangeLog
new file mode 100644 (file)
index 0000000..bc00dda
--- /dev/null
@@ -0,0 +1,10 @@
+# ChangeLog for app-office/pinpoint
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-office/pinpoint/ChangeLog,v 1.1 2011/08/24 06:27:38 ford_prefect Exp $
+
+*pinpoint-0.1.2 (24 Aug 2011)
+
+  24 Aug 2011; Arun Raghavan <ford_prefect@gentoo.org> +pinpoint-0.1.2.ebuild,
+  +metadata.xml:
+  Initial version of the handly little presentation tool.
+
diff --git a/app-office/pinpoint/Manifest b/app-office/pinpoint/Manifest
new file mode 100644 (file)
index 0000000..32b37e2
--- /dev/null
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+DIST pinpoint-0.1.2.tar.bz2 788823 RMD160 05732991a421e9f0e5924cc337a798299d855961 SHA1 d57d240556e14581734a8891b7c5693ffb95ae24 SHA256 365a566de86b69e483c92f608ec099a0ebcfac3a0e88072a49997db0b887bbed
+EBUILD pinpoint-0.1.2.ebuild 1136 RMD160 9f6a8adfde41d84fd8119b044a0741bb4360d696 SHA1 b9d622a376643e43aef594fb38455e1542e8a3f9 SHA256 60858d11db22d442a6e57e3c1bddca91e8553e62cf182806fa949b68eb0beab0
+MISC ChangeLog 403 RMD160 aff8ad732078092c340e1414ed6e61a006f53294 SHA1 62bb60fa1375dbb5da8a1d1587d9bdfe77cde8f9 SHA256 76189f7d6a0c1c78a7760a473ec27d688a2314a6cfa6e7cb3bdc2cac258aca4e
+MISC metadata.xml 614 RMD160 12ff2ce1c4f401768e43abec77c9acf0d6516c65 SHA1 537a17584221fc912553a572ff7a5cc1c9488fb1 SHA256 7d14e7ebd3d7d7ea036de953a5f34f851b69b3993e1e214e042b2cb390385e48
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.18 (GNU/Linux)
+
+iEYEARECAAYFAk5UmeQACgkQ+Vqt1inD4uwm9QCfX8RK8qJyuVB3F6Awu1JPVVYZ
+imYAn2MvmS3Uijq0CeDmqUmpZ3iaYesP
+=cOUt
+-----END PGP SIGNATURE-----
diff --git a/app-office/pinpoint/metadata.xml b/app-office/pinpoint/metadata.xml
new file mode 100644 (file)
index 0000000..9f7a74c
--- /dev/null
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <herd>no-herd</herd>
+       <maintainer>
+               <email>ford_prefect@gentoo.org</email>
+               <name>Arun Raghavan</name>
+       </maintainer>
+       <maintainer>
+               <email>nirbheek@gentoo.org</email>
+               <name>Nirbheek Chauhan</name>
+       </maintainer>
+       <longdescription lang="en">
+               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. 
+       </longdescription>
+</pkgmetadata>
+
diff --git a/app-office/pinpoint/pinpoint-0.1.2.ebuild b/app-office/pinpoint/pinpoint-0.1.2.ebuild
new file mode 100644 (file)
index 0000000..d2f6d13
--- /dev/null
@@ -0,0 +1,45 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-office/pinpoint/pinpoint-0.1.2.ebuild,v 1.1 2011/08/24 06:27:38 ford_prefect Exp $
+
+EAPI=4
+
+GNOME_TARBALL_SUFFIX="bz2"
+
+inherit gnome.org
+
+DESCRIPTION="A tool for making hackers do excellent presentations"
+HOMEPAGE="https://live.gnome.org/Pinpoint"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples +gstreamer +pdf"
+
+# rsvg is used for svg-in-pdf -- clubbing it under pdf for now
+RDEPEND=">=media-libs/clutter-1.4: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-1.3:1.0 )
+       pdf? ( gnome-base/librsvg:2 )"
+DEPEND="dev-util/pkgconfig
+       ${RDEPEND}"
+
+src_configure() {
+       # dax support is disabled because we don't have it in tree yet and it's
+       # experimental
+       econf --disable-dax \
+               $(use_enable gstreamer cluttergst) \
+               $(use_enable pdf rsvg)
+}
+
+src_install() {
+       default
+
+       if use examples; then
+               insinto "/usr/share/doc/${PF}/examples"
+               doins introduction.pin bg.jpg bowls.jpg linus.jpg
+       fi
+}