diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-09-15 00:19:22 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-09-15 00:19:22 +0000 |
commit | 03e78f3533a34e13f94d4ac4b1923b82544bb789 (patch) | |
tree | 659e9375fa210bd07db460e5a0099ec955e1e612 /app-text/psiconv | |
parent | new package to convert Psion documents (diff) | |
download | gentoo-2-03e78f3533a34e13f94d4ac4b1923b82544bb789.tar.gz gentoo-2-03e78f3533a34e13f94d4ac4b1923b82544bb789.tar.bz2 gentoo-2-03e78f3533a34e13f94d4ac4b1923b82544bb789.zip |
new package to convert Psion documents
Diffstat (limited to 'app-text/psiconv')
-rw-r--r-- | app-text/psiconv/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/psiconv/Manifest | 4 | ||||
-rw-r--r-- | app-text/psiconv/files/digest-psiconv-0.8.3 | 1 | ||||
-rw-r--r-- | app-text/psiconv/metadata.xml | 5 | ||||
-rw-r--r-- | app-text/psiconv/psiconv-0.8.3.ebuild | 33 |
5 files changed, 53 insertions, 1 deletions
diff --git a/app-text/psiconv/ChangeLog b/app-text/psiconv/ChangeLog new file mode 100644 index 000000000000..1879fe2a48e6 --- /dev/null +++ b/app-text/psiconv/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-text/psiconv +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/psiconv/ChangeLog,v 1.1 2003/09/15 00:19:21 seemant Exp $ + +*psiconv-0.8.3 (14 Sep 2003) + + 14 Sep 2003; Seemant Kulleen <seemant@gentoo.org> psiconv-0.8.3.ebuild: + Psiconv is a standalone tool for the reading and conversion of Psion + documents. It also provides a lib used by AbiWord to read same with a + plugin. Ebuild submitted by: MG <markgilbert@hotpop.com> in bug #28717 + diff --git a/app-text/psiconv/Manifest b/app-text/psiconv/Manifest index 71fb4766a4d0..c18a4c9aedf9 100644 --- a/app-text/psiconv/Manifest +++ b/app-text/psiconv/Manifest @@ -1,2 +1,4 @@ -MD5 04d9b0d25e7040eb2c3eae6cb807894e psiconv-0.8.3.ebuild 621 +MD5 92f20fce6a4455a32768bfdc1db6767b psiconv-0.8.3.ebuild 743 +MD5 858bfeaceaef77c34bddb0448a55f409 ChangeLog 538 +MD5 ba8dfba0f8603e1d1477e073c3cc272f metadata.xml 161 MD5 ae6680bce7831244891673b5fd1f3445 files/digest-psiconv-0.8.3 65 diff --git a/app-text/psiconv/files/digest-psiconv-0.8.3 b/app-text/psiconv/files/digest-psiconv-0.8.3 new file mode 100644 index 000000000000..218bd7805e4b --- /dev/null +++ b/app-text/psiconv/files/digest-psiconv-0.8.3 @@ -0,0 +1 @@ +MD5 7fe2b6d926aa7fb3b2ef77aada4adaf9 psiconv-0.8.3.tar.gz 326460 diff --git a/app-text/psiconv/metadata.xml b/app-text/psiconv/metadata.xml new file mode 100644 index 000000000000..c950a3b6b1f1 --- /dev/null +++ b/app-text/psiconv/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>app-text</herd> +</pkgmetadata> diff --git a/app-text/psiconv/psiconv-0.8.3.ebuild b/app-text/psiconv/psiconv-0.8.3.ebuild new file mode 100644 index 000000000000..5f95f4721be6 --- /dev/null +++ b/app-text/psiconv/psiconv-0.8.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/psiconv/psiconv-0.8.3.ebuild,v 1.1 2003/09/15 00:19:21 seemant Exp $ + +IUSE="doc" + +S=${WORKDIR}/${P} +DESCRIPTION="An interpreter for Psion 5(MX) file formats" +HOMEPAGE="http://huizen.dds.nl/~frodol/psiconv" +SRC_URI="${HOMEPAGE}/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm" + +DEPEND="virtual/glibc" + +src_compile() { + + local myconf + + use doc \ + && myconf="${myconf} enable-html4-docs \ + --enable-ascii-docs \ + --enable-rtf-docs" + + econf || die "./configure failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die +} |