diff options
author | Mike Gardiner <obz@gentoo.org> | 2003-12-30 14:52:01 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2003-12-30 14:52:01 +0000 |
commit | 350f47483fd2d1301ff943a5d10a489928972bd4 (patch) | |
tree | 40f2618034ccb9594e4abfbfd3bb725b55dda024 /app-text/catdoc/catdoc-0.93.3.ebuild | |
parent | Added hppa support (2.6.0-pa6). (diff) | |
download | gentoo-2-350f47483fd2d1301ff943a5d10a489928972bd4.tar.gz gentoo-2-350f47483fd2d1301ff943a5d10a489928972bd4.tar.bz2 gentoo-2-350f47483fd2d1301ff943a5d10a489928972bd4.zip |
First import
Diffstat (limited to 'app-text/catdoc/catdoc-0.93.3.ebuild')
-rw-r--r-- | app-text/catdoc/catdoc-0.93.3.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-text/catdoc/catdoc-0.93.3.ebuild b/app-text/catdoc/catdoc-0.93.3.ebuild new file mode 100644 index 000000000000..2d337e7ebd42 --- /dev/null +++ b/app-text/catdoc/catdoc-0.93.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/catdoc-0.93.3.ebuild,v 1.1 2003/12/30 14:52:01 obz Exp $ + +DESCRIPTION="A convertor for Microsoft Word, Excel and RTF Files to text" +HOMEPAGE="http://www.45.free.net/~vitus/ice/${PN}/" +SRC_URI="ftp://ftp.45.free.net/pub/${PN}/${P}.tar.gz" +LICENSE="GPL-2" + +IUSE="tcltk" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="tcltk? ( >=dev-lang/tk-8.1 )" + +DOCS="CODING.STD COPYING CREDITS INSTALL NEWS README TODO" + +src_compile() { + + local myconf="--with-install-root=${D}" + + use tcltk \ + && myconf="${myconf} --with-wish=/usr/bin/wish" \ + || myconf="${myconf} --disable-wordview" + + econf ${myconf} || die + emake LIB_DIR=/usr/share/catdoc || die + +} + +src_install() { + + make mandir=/usr/share/man/man1 install || die + dodoc ${DOCS} + +} + + |