blob: c08eebc49d2d1f11b27e6fe1f572c6e415291131 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/ampache/ampache-3.3.1.5.ebuild,v 1.1 2005/11/28 20:59:52 marineam Exp $
inherit webapp
DESCRIPTION="Ampache is a PHP-based tool for managing, updating and playing your audio files via a web interface."
HOMEPAGE="http://www.ampache.org/"
SRC_URI="http://www.ampache.org/downloads/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~ppc ~x86"
IUSE=""
RDEPEND="virtual/httpd-php
dev-db/mysql"
DEPEND=""
src_compile() {
einfo "Nothing to compile"
}
src_install() {
webapp_src_preinst
dodoc ${S}/docs/*
rm -rf ${S}/docs/*
cp -R . ${D}${MY_HTDOCSDIR}
webapp_postinst_txt en ${FILESDIR}/${P}-webinstall.txt
webapp_src_install
}
|