diff options
author | 2016-04-09 18:48:16 +0100 | |
---|---|---|
committer | 2016-06-25 11:03:39 +0000 | |
commit | 4fc22142eec1950e4359d46e4fde1e7d58fec448 (patch) | |
tree | b66fe4d41f0bdc90d7616d377fabfcd1ebd1955f /net-irc/irker/irker-2.17.ebuild | |
parent | dev-util/netbeans: Use L10N value "fil" rather than "tl" for Filipino. (diff) | |
download | gentoo-4fc22142eec1950e4359d46e4fde1e7d58fec448.tar.gz gentoo-4fc22142eec1950e4359d46e4fde1e7d58fec448.tar.bz2 gentoo-4fc22142eec1950e4359d46e4fde1e7d58fec448.zip |
net-irc/irker: Version bump
Add an option USE flag for new SOCKS support.
Update irkerhook-Remove-file-listing.patch with a rebased version that apply on this new version
Package-Manager: portage-2.2.26
Gentoo-Bug: https://bugs.gentoo.org/579524
Closes: https://github.com/gentoo/gentoo/pull/1223
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'net-irc/irker/irker-2.17.ebuild')
-rw-r--r-- | net-irc/irker/irker-2.17.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/net-irc/irker/irker-2.17.ebuild b/net-irc/irker/irker-2.17.ebuild new file mode 100644 index 000000000000..dd74618e90cf --- /dev/null +++ b/net-irc/irker/irker-2.17.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +PYTHON_REQ_USE="ssl" + +inherit python-single-r1 systemd eutils + +DESCRIPTION="Submission tools for IRC notifications" +HOMEPAGE="http://www.catb.org/esr/irker/" +SRC_URI="http://www.catb.org/esr/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="socks5" + +DEPEND="app-text/docbook-xml-dtd:4.1.2 + app-text/xmlto + socks5? ( dev-python/PySocks[${PYTHON_USEDEP}] )" + +src_prepare() { + # https://gitorious.org/irker/irker/merge_requests/25 + epatch "${FILESDIR}/2.7-Register-author_name-as-author-instead-of-email-user.patch" + + epatch "${FILESDIR}/2.17-irkerhook-Remove-file-listing.patch" + + # Rely on systemd eclass for systemd service install + sed -i -e "/^SYSTEMDSYSTEMUNITDIR/d" Makefile \ + || die "sed failed" + + # Prefix support + sed -i -e "/^ExecStart=/ s:=/:=${EROOT}:" irkerd.service \ + || die "sed failed" +} + +src_install() { + emake DESTDIR="${ED}" install + + python_doscript "${ED}/usr/bin/irkerd" + # Not installed with the default Makefile + python_doscript irk irkerhook.py + + newinitd "${FILESDIR}/irkerd.initd" irkerd + newconfd "${FILESDIR}/irkerd.confd" irkerd + + systemd_dounit irkerd.service + + dodoc NEWS README hacking.txt security.txt + dohtml irkerd.html irkerhook.html + + docinto examples + dodoc filter-example.py filter-test.py +} |