diff options
author | Michael Marineau <marineam@gentoo.org> | 2008-12-26 21:42:22 +0000 |
---|---|---|
committer | Michael Marineau <marineam@gentoo.org> | 2008-12-26 21:42:22 +0000 |
commit | b686efa7ae0fef43662c3bb9483e7ef4eea51102 (patch) | |
tree | dddf42b062b63f73ca83a1ef8f3d4e5862407c9f /www-apps/ampache/ampache-3.4.4.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-b686efa7ae0fef43662c3bb9483e7ef4eea51102.tar.gz gentoo-2-b686efa7ae0fef43662c3bb9483e7ef4eea51102.tar.bz2 gentoo-2-b686efa7ae0fef43662c3bb9483e7ef4eea51102.zip |
Bump to 3.4.4
(Portage version: 2.1.4.5)
Diffstat (limited to 'www-apps/ampache/ampache-3.4.4.ebuild')
-rw-r--r-- | www-apps/ampache/ampache-3.4.4.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/www-apps/ampache/ampache-3.4.4.ebuild b/www-apps/ampache/ampache-3.4.4.ebuild new file mode 100644 index 000000000000..155a75a6dddc --- /dev/null +++ b/www-apps/ampache/ampache-3.4.4.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/ampache/ampache-3.4.4.ebuild,v 1.1 2008/12/26 21:42:22 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="" +DEPEND="" + +need_httpd_cgi +need_php_httpd + +pkg_setup() { + webapp_pkg_setup + require_php_with_use pcre session unicode iconv xml mysql gd zlib +} + +src_install() { + webapp_src_preinst + + dodoc docs/* + rm -rf docs/ + + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_postinst_txt en "${FILESDIR}"/installdoc.txt + webapp_src_install +} |