diff options
author | Nick White <git@njw.me.uk> | 2009-06-14 19:42:51 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2009-06-14 19:42:51 +0100 |
commit | db58686ea91f7276adbf68e9db40fba0a4112405 (patch) | |
tree | c1afdd244def5611db551bb25f9a319e7a2aa93b /app-office/odftools | |
download | njw-gentoo-local-db58686ea91f7276adbf68e9db40fba0a4112405.tar.bz2 njw-gentoo-local-db58686ea91f7276adbf68e9db40fba0a4112405.zip |
Initial commit
Diffstat (limited to 'app-office/odftools')
-rw-r--r-- | app-office/odftools/odftools-0.1.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-office/odftools/odftools-0.1.ebuild b/app-office/odftools/odftools-0.1.ebuild new file mode 100644 index 0000000..c6eda2b --- /dev/null +++ b/app-office/odftools/odftools-0.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="A collection of command-line tools for processing ODF documents" +HOMEPAGE="http://opendocumentfellowship.com/development/projects/odftools" +SRC_URI="http://opendocumentfellowship.com/~daniel/${P}.tgz" + +LICENSE="Apache-2.0 LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="dev-lang/perl + dev-libs/libxslt" +RDEPEND="${DEPEND}" + +src_install() { + dobin odfread odf2html + doman doc/odfread.1 doc/odf2html.1 + insinto "/usr/share/${PN}" + doins odt2html.xsl odt2html-fast.xsl elinks.conf +} |