blob: 8b4cad40efb229619b26df9e8fcd45eea28167ed (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/phpxmlrpc/phpxmlrpc-1.0.99.2.ebuild,v 1.10 2005/04/22 14:51:19 blubb Exp $
inherit php-lib
MY_PN="xmlrpc"
MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="PHP implementation of the XML-RPC web RPC protocol"
HOMEPAGE="http://phpxmlrpc.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
RESTRICT="nomirror"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ppc ia64 ~sparc amd64"
IUSE=""
DEPEND=""
RDEPEND=">=virtual/php-4.0.5"
src_install() {
# install php files
php-lib_src_install . xmlrpc.inc xmlrpcs.inc
# Install docs and demos
dodoc README
dohtml doc/*.html
dodir /usr/share/${PN}
cp *.fttb *.pem *.php *.pl *.py *.txt ${D}/usr/share/${PN}/
}
|