diff options
author | Matti Bickel <mabi@gentoo.org> | 2010-07-03 15:16:18 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2010-07-03 15:16:18 +0000 |
commit | ccf5e4ab7dfb08f9b24b9ace7be35d8007465d05 (patch) | |
tree | cc279c4c4d260dd36f53ed3789264a0a5155d2e4 /www-apps/phpmp/phpmp-0.11.0-r1.ebuild | |
parent | Version bump, remove old testing. (diff) | |
download | gentoo-2-ccf5e4ab7dfb08f9b24b9ace7be35d8007465d05.tar.gz gentoo-2-ccf5e4ab7dfb08f9b24b9ace7be35d8007465d05.tar.bz2 gentoo-2-ccf5e4ab7dfb08f9b24b9ace7be35d8007465d05.zip |
eapi bump for php-5.3 (bug #298205)
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'www-apps/phpmp/phpmp-0.11.0-r1.ebuild')
-rw-r--r-- | www-apps/phpmp/phpmp-0.11.0-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www-apps/phpmp/phpmp-0.11.0-r1.ebuild b/www-apps/phpmp/phpmp-0.11.0-r1.ebuild new file mode 100644 index 000000000000..97c64c41ec18 --- /dev/null +++ b/www-apps/phpmp/phpmp-0.11.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/phpmp/phpmp-0.11.0-r1.ebuild,v 1.1 2010/07/03 15:16:18 mabi Exp $ + +EAPI="2" + +inherit webapp depend.php + +MY_PN="phpMp" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="phpMp is a client program for Music Player Daemon (mpd)" +HOMEPAGE="http://www.musicpd.org/" +SRC_URI="mirror://sourceforge/musicpd/${MY_P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )" + +need_httpd_cgi +need_php_httpd + +S="${WORKDIR}"/${MY_P} + +src_install() { + webapp_src_preinst + + dodoc ChangeLog README TODO + rm -f ChangeLog COPYING INSTALL README TODO + + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_configfile "${MY_HTDOCSDIR}"/config.php + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + webapp_src_install +} |