summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Marineau <marineam@gentoo.org>2008-05-31 17:14:37 +0000
committerMichael Marineau <marineam@gentoo.org>2008-05-31 17:14:37 +0000
commitdf3d3d674d2a5bfe67c7002fe0a103391e572a28 (patch)
treecb2bbb80c8cc4cf69da7e968deb988aab4caef32 /www-apps/ampache
parentdeclare empty IUSE, bug #224369 (diff)
downloadgentoo-2-df3d3d674d2a5bfe67c7002fe0a103391e572a28.tar.gz
gentoo-2-df3d3d674d2a5bfe67c7002fe0a103391e572a28.tar.bz2
gentoo-2-df3d3d674d2a5bfe67c7002fe0a103391e572a28.zip
Ampache version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'www-apps/ampache')
-rw-r--r--www-apps/ampache/ChangeLog7
-rw-r--r--www-apps/ampache/ampache-3.4.1.ebuild37
2 files changed, 43 insertions, 1 deletions
diff --git a/www-apps/ampache/ChangeLog b/www-apps/ampache/ChangeLog
index bd9e7e5ca877..8cc5f1201eec 100644
--- a/www-apps/ampache/ChangeLog
+++ b/www-apps/ampache/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for www-apps/ampache
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/ampache/ChangeLog,v 1.36 2008/05/20 23:20:02 marineam Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/ampache/ChangeLog,v 1.37 2008/05/31 17:14:37 marineam Exp $
+
+*ampache-3.4.1 (31 May 2008)
+
+ 31 May 2008; Michael Marineau <marineam@gentoo.org> +ampache-3.4.1.ebuild:
+ Version bump, bugfix release.
*ampache-3.4 (20 May 2008)
diff --git a/www-apps/ampache/ampache-3.4.1.ebuild b/www-apps/ampache/ampache-3.4.1.ebuild
new file mode 100644
index 000000000000..9f3af30fa95b
--- /dev/null
+++ b/www-apps/ampache/ampache-3.4.1.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.1.ebuild,v 1.1 2008/05/31 17:14:37 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
+}