From 6fa3511f330670c1609fd2dd1b1bba08afba5628 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 22 Jan 2010 04:08:15 +0100 Subject: added tt-rss ebuild from sunrise overlay with conf.d/init.d file --- www-apps/tt-rss/tt-rss-1.3.4.ebuild | 58 +++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 www-apps/tt-rss/tt-rss-1.3.4.ebuild (limited to 'www-apps/tt-rss/tt-rss-1.3.4.ebuild') diff --git a/www-apps/tt-rss/tt-rss-1.3.4.ebuild b/www-apps/tt-rss/tt-rss-1.3.4.ebuild new file mode 100644 index 0000000..cc8880e --- /dev/null +++ b/www-apps/tt-rss/tt-rss-1.3.4.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +inherit webapp depend.php depend.apache + +DESCRIPTION="Tiny Tiny RSS - A web-based news feed (RSS/Atom) aggregator using AJAX" +HOMEPAGE="http://tt-rss.org/" +SRC_URI="http://tt-rss.org/download/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64" +IUSE="mysql mysqli postgres" + +DEPEND="dev-lang/php[mysql?,mysqli?,postgres?]" +RDEPEND="${DEPEND}" + +need_httpd_cgi +need_php_httpd + +pkg_setup() { + webapp_pkg_setup + use mysql && require_php_with_use mysql + use mysqli && require_php_with_use mysqli + use postgres && require_php_with_use postgres +} + +src_prepare() { + # Customize config.php so that the right 'DB_TYPE' is already set (according to the USE flag) + einfo "Customizing config.php..." + mv config.php{-dist,} || die "Could not rename config.php-dist to config.php." + if ( use mysql || use mysqli ) && ! use postgres; then + sed -e "/define('DB_TYPE',/{s:pgsql:mysql:}" -i config.php || die "sed failed" + fi + sed -e "/define('DB_TYPE',/{s:// \(or mysql\):// pgsql \1:}" -i config.php \ + || die "sed failed" +} + +src_install() { + webapp_src_preinst + + insinto "/${MY_HTDOCSDIR}" + doins -r * || die "Could not copy the files to ${MY_HTDOCSDIR}." + keepdir "/${MY_HTDOCSDIR}"/icons + + webapp_serverowned "${MY_HTDOCSDIR}"/icons + webapp_configfile "${MY_HTDOCSDIR}"/config.php + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + webapp_src_install +} + +pkg_postinst() { + elog "If you want to use the update daemon, you could find" + elog "a conf.d file and an init script in ${FILESDIR}." +} -- cgit v1.2.3