Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 248030
Collapse All | Expand All

(-)a/net-irc/weechat/files/0001-weechat-dblatex-tex4ht.patch (+38 lines)
Line 0 Link Here
1
From 0052a5c6e793cd53e22e08ab06ff8eefd27a50ca Mon Sep 17 00:00:00 2001
2
From: Matt McCormick (thewtex) <matt@mmmccormick.com>
3
Date: Tue, 31 Mar 2009 23:03:45 -0500
4
Subject: [PATCH] weechat dblatex tex4ht
5
6
dblatex is a separate program from the dblatex provided by
7
dev-tex/tex4ht
8
---
9
 configure.in |    6 +-----
10
 1 files changed, 1 insertions(+), 5 deletions(-)
11
12
diff --git a/configure.in b/configure.in
13
index d6e80b9..6026b8b 100644
14
--- a/configure.in
15
+++ b/configure.in
16
@@ -659,10 +659,6 @@ fi
17
 
18
 msg_doc=""
19
 
20
-if test "x$DBLATEX_FOUND" = "xyes"; then
21
-    msg_doc="pdf $msg_doc"
22
-fi
23
-
24
 AC_MSG_CHECKING(for html/chunk.xsl)
25
 DOC_XSL_PREFIX=""
26
 
27
@@ -784,7 +780,7 @@ AM_CONDITIONAL(PLUGIN_ASPELL,  test "$enable_aspell" = "yes")
28
 AM_CONDITIONAL(PLUGIN_CHARSET, test "$enable_charset" = "yes")
29
 AM_CONDITIONAL(HAVE_GNUTLS,    test "$enable_gnutls" = "yes")
30
 AM_CONDITIONAL(HAVE_FLOCK,     test "$enable_flock" = "yes")
31
-AM_CONDITIONAL(DBLATEX_FOUND,  test "$DBLATEX_FOUND" = "yes")
32
+AM_CONDITIONAL(DBLATEX_FOUND, test "dontwantit" = "yes") 
33
 
34
 AC_OUTPUT([Makefile
35
            doc/Makefile
36
-- 
37
1.6.2
38
(-)a/net-irc/weechat/weechat-0.2.6.1.ebuild (-3 / +15 lines)
Lines 2-7 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.2.6.1.ebuild,v 1.3 2009/03/24 18:53:01 ranger Exp $
3
# $Header: /var/cvsroot/gentoo-x86/net-irc/weechat/weechat-0.2.6.1.ebuild,v 1.3 2009/03/24 18:53:01 ranger Exp $
4
4
5
inherit eutils 
6
5
DESCRIPTION="Portable and multi-interface IRC client."
7
DESCRIPTION="Portable and multi-interface IRC client."
6
HOMEPAGE="http://weechat.flashtux.org/"
8
HOMEPAGE="http://weechat.flashtux.org/"
7
SRC_URI="http://weechat.flashtux.org/download/${P}.tar.bz2"
9
SRC_URI="http://weechat.flashtux.org/download/${P}.tar.bz2"
Lines 21-32 DEPEND="sys-libs/ncurses Link Here
21
	spell? ( app-text/aspell )"
23
	spell? ( app-text/aspell )"
22
RDEPEND="${DEPEND}"
24
RDEPEND="${DEPEND}"
23
25
24
src_compile() {
26
EAPI="2"
27
28
src_prepare() {
29
	epatch ${FILESDIR}/0001-weechat-dblatex-tex4ht.patch || die "patch failed"
30
}
31
32
src_configure() {
33
	mkdir m4
34
	einfo "Regenerating autotools files ..."
35
	WANT_AUTOCONF=2.6 autoconf || die "autoreconf failed"
36
	libtoolize --copy --force || die "libtoolize fail"
37
25
	# The qt and gtk frontends are not usable, so they're disabled
38
	# The qt and gtk frontends are not usable, so they're disabled
26
	econf \
39
	econf \
27
		--enable-ncurses \
40
		--enable-ncurses \
28
		--disable-qt \
41
		--disable-qt \
29
		--disable-gtk \
42
		--disable-gtk \
43
		--with-doc-xsl-prefix=/usr/share/sgml/docbook/xsl-stylesheets \
30
		$(use_enable perl) \
44
		$(use_enable perl) \
31
		$(use_enable python) \
45
		$(use_enable python) \
32
		$(use_enable ruby) \
46
		$(use_enable ruby) \
Lines 35-41 src_compile() { Link Here
35
		$(use_enable spell aspell) \
49
		$(use_enable spell aspell) \
36
		$(use_with debug debug 2) \
50
		$(use_with debug debug 2) \
37
		|| die "econf failed"
51
		|| die "econf failed"
38
	emake || die "emake failed"
39
}
52
}
40
53
41
src_install() {
54
src_install() {
42
- 

Return to bug 248030