diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-08 17:28:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-08 17:28:54 +0000 |
commit | 57709fc10751b7e06c43d086666ea0c2f86d9727 (patch) | |
tree | 84fc3cc8512aacffccdd50b3d5072673dbede380 /app-text/html2text | |
parent | add inherit eutils (diff) | |
download | gentoo-2-57709fc10751b7e06c43d086666ea0c2f86d9727.tar.gz gentoo-2-57709fc10751b7e06c43d086666ea0c2f86d9727.tar.bz2 gentoo-2-57709fc10751b7e06c43d086666ea0c2f86d9727.zip |
add inherit eutils
Diffstat (limited to 'app-text/html2text')
-rw-r--r-- | app-text/html2text/html2text-1.3.1.ebuild | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/app-text/html2text/html2text-1.3.1.ebuild b/app-text/html2text/html2text-1.3.1.ebuild index 524aea96321b..ae516ab9dbc0 100644 --- a/app-text/html2text/html2text-1.3.1.ebuild +++ b/app-text/html2text/html2text-1.3.1.ebuild @@ -1,41 +1,37 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.1.ebuild,v 1.5 2004/01/20 20:15:03 avenj Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.1.ebuild,v 1.6 2004/04/08 17:28:25 vapier Exp $ + +inherit eutils DESCRIPTION="A HTML to text converter" -SRC_URI="http://userpage.fu-berlin.de/~mbayer/tools/${P}.tar.gz" HOMEPAGE="http://userpage.fu-berlin.de/~mbayer/tools/html2text.html" +SRC_URI="http://userpage.fu-berlin.de/~mbayer/tools/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ~sparc ~amd64" IUSE="" DEPEND="virtual/glibc" src_unpack() { - unpack ${A} # apply a patch for g++ 3.3, provided by the html2text # people (see homepage) <obz@gentoo.org> if has_version ">=sys-devel/gcc-3.3*"; then epatch ${FILESDIR}/${PN}-gcc3.3.patch fi - } src_compile() { - ./configure || die emake || die - } src_install() { - dobin html2text doman html2text.1.gz doman html2textrc.5.gz dodoc CHANGES CREDITS INSTALL KNOWN_BUGS README TODO - } |