diff options
author | Mamoru Komachi <usata@gentoo.org> | 2005-05-16 04:30:10 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2005-05-16 04:30:10 +0000 |
commit | 073c8823e7b6aeb99c278d7a615a37c73da24925 (patch) | |
tree | 6feadb9389547207ddde219e4e75417efbf3624c /app-text/html2text | |
parent | use toolchain-funcs.eclass instead of gcc.eclass; bug #92745. (diff) | |
download | gentoo-2-073c8823e7b6aeb99c278d7a615a37c73da24925.tar.gz gentoo-2-073c8823e7b6aeb99c278d7a615a37c73da24925.tar.bz2 gentoo-2-073c8823e7b6aeb99c278d7a615a37c73da24925.zip |
use toolchain-funcs.eclass instead of gcc.eclass; bug #92745.
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'app-text/html2text')
-rw-r--r-- | app-text/html2text/html2text-1.3.2.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-text/html2text/html2text-1.3.2.ebuild b/app-text/html2text/html2text-1.3.2.ebuild index 062e2bad75a0..ce20ca94d499 100644 --- a/app-text/html2text/html2text-1.3.2.ebuild +++ b/app-text/html2text/html2text-1.3.2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.2.ebuild,v 1.8 2005/04/01 03:48:07 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.2.ebuild,v 1.9 2005/05/16 04:25:29 usata Exp $ -inherit eutils gcc +inherit eutils toolchain-funcs DESCRIPTION="A HTML to text converter" HOMEPAGE="http://userpage.fu-berlin.de/~mbayer/tools/html2text.html" @@ -10,7 +10,7 @@ SRC_URI="http://userpage.fu-berlin.de/~mbayer/tools/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~sparc ~amd64 ~ppc ppc64 ~alpha ia64" +KEYWORDS="x86 ~sparc ~amd64 ~ppc ppc64 ~alpha ia64" IUSE="" DEPEND="virtual/libc" @@ -26,7 +26,7 @@ src_unpack() { src_compile() { econf || die - emake || die + emake CXX="$(tc-getCXX)" || die } src_install() { |