summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Noberasco <s4t4n@gentoo.org>2008-03-17 10:57:23 +0000
committerMichele Noberasco <s4t4n@gentoo.org>2008-03-17 10:57:23 +0000
commite0478e1d7b1cadbafa7e5d181fedbbb3e9756545 (patch)
tree838cbd48f3904b934ddd4fc5002554b03a0e97ae /app-text/rtf2html
parenttweak logrotate #212876 (diff)
downloadhistorical-e0478e1d7b1cadbafa7e5d181fedbbb3e9756545.tar.gz
historical-e0478e1d7b1cadbafa7e5d181fedbbb3e9756545.tar.bz2
historical-e0478e1d7b1cadbafa7e5d181fedbbb3e9756545.zip
Initial import.
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'app-text/rtf2html')
-rw-r--r--app-text/rtf2html/ChangeLog8
-rw-r--r--app-text/rtf2html/Manifest4
-rw-r--r--app-text/rtf2html/metadata.xml9
-rw-r--r--app-text/rtf2html/rtf2html-0.2.0.ebuild29
4 files changed, 50 insertions, 0 deletions
diff --git a/app-text/rtf2html/ChangeLog b/app-text/rtf2html/ChangeLog
new file mode 100644
index 000000000000..50d038934dac
--- /dev/null
+++ b/app-text/rtf2html/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for <CATEGORY>/<PACKAGE_NAME>
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/rtf2html/ChangeLog,v 1.1 2008/03/17 10:57:23 s4t4n Exp $
+
+*rtf2html-0.2.0 (17 Mar 2008)
+
+ 17 Mar 2008; Michele Noberasco <s4t4n@gentoo.org> rtf2html-0.2.0.ebuild:
+ Initial import.
diff --git a/app-text/rtf2html/Manifest b/app-text/rtf2html/Manifest
new file mode 100644
index 000000000000..d80b6a51c933
--- /dev/null
+++ b/app-text/rtf2html/Manifest
@@ -0,0 +1,4 @@
+DIST rtf2html-0.2.0.tar.bz2 75292 RMD160 1aff956c3c78f48d299d66e037cd08d35e7a5da9 SHA1 b4e2e1620e4e48dc7fd589d5c83e315d529fe723 SHA256 13d39bdd3387aeba1e640d3209aa2ce56871291247734757d399675e4b8b918b
+EBUILD rtf2html-0.2.0.ebuild 642 RMD160 2ebfdd30f902bbf5bf6d1a4d6416afa7d595cd5e SHA1 54e9d1b6672a12756f7bfb940a68eec75003ec78 SHA256 4fb1b2a7f21d89619f0cb247435d6d4d42d74831be56f087b6cdedc3c278774a
+MISC ChangeLog 338 RMD160 22c667d289c8f1871a621c11438ef5d2d7a511b4 SHA1 2cf2c3ee4b88246612d88befe77ac3b0069aad00 SHA256 731595c8c58f02f6f90492a950940eb2edb39422eb57c2224fcf3ba7af9a8c9f
+MISC metadata.xml 257 RMD160 b09f722a70b31a7a021c4702c88e5525e1d26ab8 SHA1 71392236bda977d14fa4065bd69efee19e985855 SHA256 befff6ec9d6a4a132aaea2bdc486413f976210902f2830ede0b2435491259351
diff --git a/app-text/rtf2html/metadata.xml b/app-text/rtf2html/metadata.xml
new file mode 100644
index 000000000000..edff0b126bd1
--- /dev/null
+++ b/app-text/rtf2html/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>no-herd</herd>
+ <maintainer>
+ <email>s4t4n@gentoo.org</email>
+ <name>Michele Noberasco</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-text/rtf2html/rtf2html-0.2.0.ebuild b/app-text/rtf2html/rtf2html-0.2.0.ebuild
new file mode 100644
index 000000000000..a0490f029a4f
--- /dev/null
+++ b/app-text/rtf2html/rtf2html-0.2.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/rtf2html/rtf2html-0.2.0.ebuild,v 1.1 2008/03/17 10:57:23 s4t4n Exp $
+
+IUSE=""
+
+DESCRIPTION="RTF to HTML converter."
+HOMEPAGE="http://rtf2html.sourceforge.net/"
+SRC_URI="mirror://sourceforge/rtf2html/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_compile()
+{
+ econf || die "Configuration failed"
+ emake || die "Compilation failed"
+}
+
+src_install()
+{
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc ChangeLog README
+}