diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-office/ooextras | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
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 <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-office/ooextras')
-rw-r--r-- | app-office/ooextras/Manifest | 1 | ||||
-rw-r--r-- | app-office/ooextras/metadata.xml | 9 | ||||
-rw-r--r-- | app-office/ooextras/ooextras-20060909.ebuild | 32 |
3 files changed, 42 insertions, 0 deletions
diff --git a/app-office/ooextras/Manifest b/app-office/ooextras/Manifest new file mode 100644 index 000000000000..cf36b5214789 --- /dev/null +++ b/app-office/ooextras/Manifest @@ -0,0 +1 @@ +DIST ooextras20060909.tgz 19152149 SHA256 9a79b057e47a39058c1effefeafe0b7765b919100a62f7548f39573fc11b2e62 SHA512 5e58a11ddf3e82e19f606ad734777eed8beb987fbc7765f9c0154f6a9a0c288f56da47a2bc4b5f091927ee9ccb41a668c7cb518c528af7642ab95ca73dc5b81f WHIRLPOOL d81999dd54190da135b035f1fc915c37a1767115f5ecf02c9e5eaafcbab7017a8bd606fb928e9b233fe52d5bff4a95c5ef6ed90bc0d51294ac44cbe0d8c92be8 diff --git a/app-office/ooextras/metadata.xml b/app-office/ooextras/metadata.xml new file mode 100644 index 000000000000..1e6a3103234d --- /dev/null +++ b/app-office/ooextras/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>openoffice</herd> + <longdescription>OOExtras is a set of community generated templates and sample files. For it to do anything useful, you also have to install one of the different flavours of OpenOffice.org that Gentoo provides</longdescription> + <upstream> + <remote-id type="sourceforge">ooextras</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-office/ooextras/ooextras-20060909.ebuild b/app-office/ooextras/ooextras-20060909.ebuild new file mode 100644 index 000000000000..c7a2294e4078 --- /dev/null +++ b/app-office/ooextras/ooextras-20060909.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DESCRIPTION="OOExtras: Extra Templates for OpenOffice.org!" +HOMEPAGE="http://ooextras.sourceforge.net/" +SRC_URI="mirror://sourceforge/ooextras/${PN}${PV}.tgz" + +INSTDIR="/opt/${PN}" +S="${WORKDIR}/downloads" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 -sparc x86" +IUSE="" +RDEPEND="virtual/ooo" +DEPEND="${RDEPEND}" + +src_compile() { + true # nothing to do +} + +src_install() { + dodir ${INSTDIR} + cp -R -- "${S}"/. "${D}"/${INSTDIR}/ +} + +pkg_postinst() { + elog "Please add ${INSTDIR} to your template paths in OpenOffice.org" + elog "You can do this under:" + elog "Tools > Options > OpenOffice.org > Paths" +} |