gentoo/app-emacs/zenirc/zenirc-2.112-r1.ebuild
Ulrich Müller eab8bb4b3f
app-emacs/zenirc: EAPI 7, readme.gentoo-r1
Closes: https://bugs.gentoo.org/778713
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
2021-03-28 21:36:38 +02:00

43 lines
1008 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit elisp readme.gentoo-r1
DESCRIPTION="A full-featured scriptable IRC client for the Emacs text editor"
HOMEPAGE="http://www.zenirc.org/"
SRC_URI="ftp://ftp.zenirc.org/pub/zenirc/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 x86"
SITEFILE="50${PN}-gentoo.el"
src_configure() {
# econf won't work because of unknown options
./configure --prefix="${EPREFIX}/usr/" || die "configure failed"
}
src_compile() {
default
}
src_install() {
elisp-install ${PN} src/*.el src/*.elc
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
doinfo doc/zenirc.info
dodoc BUGS INSTALL NEWS README TODO
local DOC_CONTENTS="Refer to the Info documentation and
${SITELISP}/${PN}/zenirc-example.el for customization hints."
readme.gentoo_create_doc
cd doc || die
docinto doc
dodoc 666.conspiracy FAQ README-OLD ctcp.doc irc-operators \
server-list tao-of-irc tour.of.irc undernet
}