Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 577336 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-10 / +12 lines)
Line  Link Here
0
-- /var/portage/net-irc/irssi/irssi-0.8.17.ebuild
0
++ irssi-0.8.18.ebuild
Lines 2-28 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
# $Id$
3
# $Id$
4
4
5
EAPI=5
5
EAPI=6
6
6
7
AUTOTOOLS_AUTORECONF=1
7
inherit autotools flag-o-matic perl-module toolchain-funcs
8
9
inherit autotools-utils eutils flag-o-matic perl-module toolchain-funcs
10
8
11
# Keep for _rc compability
9
# Keep for _rc compability
12
MY_P="${P/_/-}"
10
MY_P="${P/_/-}"
13
11
14
DESCRIPTION="A modular textUI IRC client with IPv6 support"
12
DESCRIPTION="A modular textUI IRC client with IPv6 support"
15
HOMEPAGE="http://irssi.org/"
13
HOMEPAGE="http://irssi.org/"
16
SRC_URI="http://irssi.org/files/${MY_P}.tar.bz2"
14
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${MY_P}.tar.xz"
17
15
18
LICENSE="GPL-2"
16
LICENSE="GPL-2"
19
SLOT="0"
17
SLOT="0"
20
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
18
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
21
IUSE="ipv6 +perl selinux ssl socks5 +proxy libressl"
19
IUSE="ipv6 +perl selinux ssl socks5 +proxy libressl"
22
20
23
CDEPEND="sys-libs/ncurses:0=
21
CDEPEND="sys-libs/ncurses:0=
24
	>=dev-libs/glib-2.6.0
22
	>=dev-libs/glib-2.6.0
25
	ssl? ( !libressl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) )
23
	ssl? (
24
		!libressl? ( dev-libs/openssl:= )
25
		libressl? ( dev-libs/libressl:= )
26
	)
26
	perl? ( dev-lang/perl )
27
	perl? ( dev-lang/perl )
27
	socks5? ( >=net-proxy/dante-1.1.18 )"
28
	socks5? ( >=net-proxy/dante-1.1.18 )"
28
29
Lines 39-47 Link Here
39
40
40
src_prepare() {
41
src_prepare() {
41
	pushd m4 > /dev/null || die
42
	pushd m4 > /dev/null || die
42
	epatch "${FILESDIR}/${PN}-0.8.15-tinfo.patch"
43
	eapply "${FILESDIR}/${PN}-0.8.15-tinfo.patch"
43
	popd > /dev/null || die
44
	popd > /dev/null || die
44
	autotools-utils_src_prepare
45
	eapply_user
46
	eautoreconf
45
}
47
}
46
48
47
src_configure() {
49
src_configure() {

Return to bug 577336