blob: 2cbc3227201a82b8c390c49ca23c5e9f925c9f79 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_PN="${PN#PEAR-}"
DESCRIPTION="Provides a class to decode mime messages (split from PEAR-Mail_Mime)"
HOMEPAGE="http://pear.php.net/package/Mail_mimeDecode"
SRC_URI="http://pear.php.net/get/${MY_PN}-${PV}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND="dev-lang/php:* >=dev-php/pear-1.8.1 >=dev-php/PEAR-Mail_Mime-1.5.2"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_PN}-${PV}"
src_install() {
insinto /usr/share/php
doins -r Mail
}
pkg_postinst() {
peardev install -nrO --force "${WORKDIR}/package.xml" 2> /dev/null
}
pkg_postrm() {
peardev uninstall -nrO --force pear.php.net/${MY_PN}
}
|