diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2003-06-19 21:55:17 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2003-06-19 21:55:17 +0000 |
commit | 77de7e3a7119ee047509dbe115167ba68c5cb26a (patch) | |
tree | 569e1e3050654bf2e8f61b1a6b28923b1fd4e759 /net-irc | |
parent | adding backward compat symlink (diff) | |
download | historical-77de7e3a7119ee047509dbe115167ba68c5cb26a.tar.gz historical-77de7e3a7119ee047509dbe115167ba68c5cb26a.tar.bz2 historical-77de7e3a7119ee047509dbe115167ba68c5cb26a.zip |
Ugly hack to work around compression of the html files. (bug 23048)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/irssi/ChangeLog | 4 | ||||
-rw-r--r-- | net-irc/irssi/Manifest | 4 | ||||
-rw-r--r-- | net-irc/irssi/irssi-0.8.6-r2.ebuild | 17 |
3 files changed, 20 insertions, 5 deletions
diff --git a/net-irc/irssi/ChangeLog b/net-irc/irssi/ChangeLog index 3a60722daf5d..7b2620d2dd98 100644 --- a/net-irc/irssi/ChangeLog +++ b/net-irc/irssi/ChangeLog @@ -1,7 +1,9 @@ # ChangeLog for net-irc/irssi # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v 1.23 2003/06/01 09:29:54 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/ChangeLog,v 1.24 2003/06/19 21:55:11 msterret Exp $ + 19 Jun 2003; <msterret@gentoo.org> irssi-0.8.6-r2.ebuild: + Ugly hack to work around compression of the html files. (bug 23048) *irssi-0.8.6-r2 (10 Feb 2003) diff --git a/net-irc/irssi/Manifest b/net-irc/irssi/Manifest index ef2231f24981..1462bc432476 100644 --- a/net-irc/irssi/Manifest +++ b/net-irc/irssi/Manifest @@ -1,5 +1,5 @@ -MD5 9761286da8a86c22263e3ad1d82b7fbe ChangeLog 3093 +MD5 0fc4c2e5f0767196b52ebaf6de0e9f42 ChangeLog 3226 MD5 8166a0faf975ff5c75f39c1b2bfeaa04 irssi-0.8.5-r2.ebuild 1866 -MD5 61dc3abb84a15bcae8c05bb86da2ff51 irssi-0.8.6-r2.ebuild 1977 +MD5 6597c7abaab84472503c82e049988e35 irssi-0.8.6-r2.ebuild 2301 MD5 1920fb9f4aba0f95f26302d82430ffa8 files/digest-irssi-0.8.5-r2 64 MD5 cb17857da5af4446fef7e94d553277de files/digest-irssi-0.8.6-r2 64 diff --git a/net-irc/irssi/irssi-0.8.6-r2.ebuild b/net-irc/irssi/irssi-0.8.6-r2.ebuild index e69756499c53..f3e462c8b51b 100644 --- a/net-irc/irssi/irssi-0.8.6-r2.ebuild +++ b/net-irc/irssi/irssi-0.8.6-r2.ebuild @@ -1,18 +1,18 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.6-r2.ebuild,v 1.8 2003/06/01 09:29:54 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.6-r2.ebuild,v 1.9 2003/06/19 21:55:11 msterret Exp $ IUSE="nls ipv6 perl" inherit perl-module -S=${WORKDIR}/${P} DESCRIPTION="A modular textUI IRC client with IPv6 support." SRC_URI="http://irssi.org/files/${P}.tar.bz2" HOMEPAGE="http://irssi.org/" DEPEND=">=dev-libs/glib-1.2 sys-libs/ncurses + >=sys-apps/sed-4 perl? ( dev-lang/perl )" #socks? ( >=net-misc/dante-1.1.13 ) RDEPEND="nls? ( sys-devel/gettext )" @@ -21,6 +21,17 @@ SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ~ppc sparc ~alpha hppa ~mips" +src_unpack() { + unpack ${A} + + # Ugly hack to work around compression of the html files. + # Remove this if prepalldocs is changed to avoid gzipping html files. + cd ${S} && \ + sed -i \ + -e 's/[^ ]\+\.html//g' docs/Makefile.in || \ + die "sed doc/Makefile.in failed" +} + src_compile() { # Note: there is an option to build a GUI for irssi, but according # to the website the GUI is no longer developed, so that option is @@ -78,4 +89,6 @@ src_install() { prepalldocs dodoc AUTHORS ChangeLog README TODO NEWS + cd docs && \ + dohtml -r . || die "dohtml failed" } |