diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2007-01-12 14:01:30 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2007-01-12 14:01:30 +0000 |
commit | 3017ec01620f007a44588dd5d6e8b396b0df05d1 (patch) | |
tree | c79737e7c5050151b257895e401e3e062e1a1396 /www-apps/zina/zina-1.0_rc2.ebuild | |
parent | Added EANT_GENTOO_CLASSPATH and EANT_EXTRA_ARGUMENTS support to the general s... (diff) | |
download | gentoo-2-3017ec01620f007a44588dd5d6e8b396b0df05d1.tar.gz gentoo-2-3017ec01620f007a44588dd5d6e8b396b0df05d1.tar.bz2 gentoo-2-3017ec01620f007a44588dd5d6e8b396b0df05d1.zip |
Added zina 1.0rc2 to the tree.
(Portage version: 2.1.1)
Diffstat (limited to 'www-apps/zina/zina-1.0_rc2.ebuild')
-rw-r--r-- | www-apps/zina/zina-1.0_rc2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/www-apps/zina/zina-1.0_rc2.ebuild b/www-apps/zina/zina-1.0_rc2.ebuild new file mode 100644 index 000000000000..5a39d63d38ba --- /dev/null +++ b/www-apps/zina/zina-1.0_rc2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/zina/zina-1.0_rc2.ebuild,v 1.1 2007/01/12 14:01:30 wrobel Exp $ + +inherit webapp + +MY_P=${P/_/} + +DESCRIPTION="Zina (Zina Is Not Andromeda) is a digital audio streaming jukebox via a web interface." +HOMEPAGE="http://www.pancake.org/zina/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="" + +RDEPEND="net-www/apache + virtual/httpd-php" + +S=${WORKDIR}/${MY_P} + +src_install() { + webapp_src_preinst + + touch ${S}/zina.ini.php + + cp -R . ${D}${MY_HTDOCSDIR} + + webapp_configfile ${MY_HTDOCSDIR}/zina.ini.php + webapp_serverowned ${MY_HTDOCSDIR}/zina.ini.php + + keepdir ${MY_HTDOCSDIR}/_zina/cache + webapp_serverowned ${MY_HTDOCSDIR}/_zina/cache + + webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt + webapp_src_install +} + |