blob: b7570cb5de5a2143b494ed9e54433712cff3b02f (
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
34
35
36
37
38
39
|
# Copyright 1999-2004 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.ebuild,v 1.2 2004/08/22 23:04:25 kloeri Exp $
IUSE=""
inherit webapp
MY_PN="phpMp"
MY_P="${MY_PN}-${PV}"
S=${WORKDIR}/${MY_P}
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="x86 ~ppc ~sparc alpha ~amd64"
DEPEND=">=dev-php/mod_php-4.2.3-r2"
src_install() {
webapp_src_preinst
local docs="COPYING ChangeLog INSTALL README TODO"
dodoc ${docs}
for doc in ${docs} INSTALL; do
rm -f ${doc}
done
cp -r . ${D}${MY_HTDOCSDIR}
webapp_configfile ${MY_HTDOCSDIR}/config.php
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
|