blob: 068d7158dfa9c89cf24758ac58edf13d25aa001b (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
DESCRIPTION="A PHP WebApp Framework"
HOMEPAGE="http://pluf.org/"
SRC_URI="mirror://gentoo/${P}.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND="dev-lang/php
dev-php/PEAR-Console_Getopt
dev-php/PEAR-Mail
dev-php/PEAR-Mail_Mime
${DEPEND}"
S="${WORKDIR}/${PN}-master"
src_install() {
insinto /usr/share/php/${PN}
doins -r src/*
}
|