diff options
author | Michael Marineau <marineam@gentoo.org> | 2007-02-11 05:17:49 +0000 |
---|---|---|
committer | Michael Marineau <marineam@gentoo.org> | 2007-02-11 05:17:49 +0000 |
commit | 68ce48443d3880f322aeb679e2f5cbdd48fa2c43 (patch) | |
tree | 9fa9193432fc5f0ad24722674183111bda47b200 /www-apps/ampache/ampache-3.3.3.ebuild | |
parent | Changed virtual/cdrtools from app-cdr/cdrtools to app-cdr/cdrkit. (diff) | |
download | historical-68ce48443d3880f322aeb679e2f5cbdd48fa2c43.tar.gz historical-68ce48443d3880f322aeb679e2f5cbdd48fa2c43.tar.bz2 historical-68ce48443d3880f322aeb679e2f5cbdd48fa2c43.zip |
Version bump
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'www-apps/ampache/ampache-3.3.3.ebuild')
-rw-r--r-- | www-apps/ampache/ampache-3.3.3.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/www-apps/ampache/ampache-3.3.3.ebuild b/www-apps/ampache/ampache-3.3.3.ebuild new file mode 100644 index 000000000000..63b51e3be196 --- /dev/null +++ b/www-apps/ampache/ampache-3.3.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/ampache/ampache-3.3.3.ebuild,v 1.1 2007/02/11 05:17:49 marineam Exp $ + +inherit webapp depend.php + +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="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="virtual/httpd-php" +DEPEND="" + +need_php + +pkg_setup() { + webapp_pkg_setup + + require_php_with_use pcre session unicode iconv xml mysql gd zlib +} + +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}/installdoc.txt + webapp_src_install +} + |