blob: 413a9729286b271b549e6924725bd82f49c9fc23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_PN="${PN/PEAR-/}"
MY_P="${MY_PN}-${PV}"
HOMEPAGE="https://pear.php.net/package/Net_SmartIRC"
# The PEAR tarball is missing some docs as of v1.10.0.
SRC_URI="https://github.com/pear/${MY_PN}/archive/v${PV}.tar.gz
-> ${MY_P}.tar.gz"
DESCRIPTION="PHP class to communicate with IRC networks"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 sparc x86"
IUSE="doc examples"
RDEPEND="dev-lang/php:*"
S="${WORKDIR}/${MY_P}"
src_install() {
dodoc CREDITS FEATURES docs/HOWTO README.md TODO
use examples && dodoc -r docs/examples
if use doc; then
dodoc docs/DOCUMENTATION
dodoc -r docs/HTML
fi
insinto /usr/share/php
doins -r Net
}
|