diff options
author | 2008-03-17 10:57:23 +0000 | |
---|---|---|
committer | 2008-03-17 10:57:23 +0000 | |
commit | 26f5b88e796eda43f3a1b8567425c9fe29d59836 (patch) | |
tree | e37526190b9e720c94ba33ea16ec0003a85a5df4 /app-text/rtf2html/rtf2html-0.2.0.ebuild | |
parent | tweak logrotate #212876 (diff) | |
download | gentoo-2-26f5b88e796eda43f3a1b8567425c9fe29d59836.tar.gz gentoo-2-26f5b88e796eda43f3a1b8567425c9fe29d59836.tar.bz2 gentoo-2-26f5b88e796eda43f3a1b8567425c9fe29d59836.zip |
Initial import.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-text/rtf2html/rtf2html-0.2.0.ebuild')
-rw-r--r-- | app-text/rtf2html/rtf2html-0.2.0.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
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 +} |