31 lines
545 B
Bash
31 lines
545 B
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="2"
|
|
|
|
DESCRIPTION="A Simple PHP Framework"
|
|
HOMEPAGE="http://registeredhosting.ca"
|
|
SRC_URI="http://registeredhosting.ca/${P}.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT=${PV}
|
|
KEYWORDS="x86"
|
|
#IUSE=""
|
|
|
|
#RESTRICT="fetch"
|
|
|
|
inherit eutils
|
|
|
|
RDEPEND="
|
|
>=dev-lang/php-5.4[mysqli,postgres,gd]
|
|
"
|
|
|
|
src_install() {
|
|
dodir /usr/share/php/atom
|
|
cp -R ${S}/* ${D}/usr/share/php/atom
|
|
}
|
|
|
|
pkg_postinst() {
|
|
/usr/bin/php /usr/share/php/atom/manifest.php
|
|
} |