diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-11-06 02:26:38 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-11-06 02:26:38 +0000 |
commit | 939e06529bc5c0f120749b4122e3eb89ed604175 (patch) | |
tree | 266f3395ce9d19644215105bcc9933d57f94bbf0 /www-apps/openwebstats | |
parent | Un-stabling for amd64 as dependencies are not ready (diff) | |
download | gentoo-2-939e06529bc5c0f120749b4122e3eb89ed604175.tar.gz gentoo-2-939e06529bc5c0f120749b4122e3eb89ed604175.tar.bz2 gentoo-2-939e06529bc5c0f120749b4122e3eb89ed604175.zip |
Shorten description, fix quoting, make repoman happier
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'www-apps/openwebstats')
-rw-r--r-- | www-apps/openwebstats/ChangeLog | 8 | ||||
-rw-r--r-- | www-apps/openwebstats/openwebstats-1.1.ebuild | 18 |
2 files changed, 14 insertions, 12 deletions
diff --git a/www-apps/openwebstats/ChangeLog b/www-apps/openwebstats/ChangeLog index d2480052d033..1cd4a50c5bd6 100644 --- a/www-apps/openwebstats/ChangeLog +++ b/www-apps/openwebstats/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-apps/openwebstats -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/openwebstats/ChangeLog,v 1.6 2010/09/11 15:15:28 mabi Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/openwebstats/ChangeLog,v 1.7 2013/11/06 02:26:38 patrick Exp $ + + 30 Oct 2013; Patrick Lauer <patrick@gentoo.org> openwebstats-1.1.ebuild: + Shorten description, fix quoting, make repoman happier 11 Sep 2010; Matti Bickel <mabi@gentoo.org> openwebstats-1.1.ebuild: change virtual/php to dev-lang/php (bug #319623) @@ -22,4 +25,3 @@ 09 Aug 2005; Renat Lumpau <rl03@gentoo.org> +files/config.php, +files/postinstall-en.txt, +metadata.xml, +openwebstats-1.1.ebuild: Initial ebuild wrt bug #101022. Thanks to wrobel. - diff --git a/www-apps/openwebstats/openwebstats-1.1.ebuild b/www-apps/openwebstats/openwebstats-1.1.ebuild index 9097322274a7..3f6604af323b 100644 --- a/www-apps/openwebstats/openwebstats-1.1.ebuild +++ b/www-apps/openwebstats/openwebstats-1.1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/openwebstats/openwebstats-1.1.ebuild,v 1.5 2010/09/11 15:15:28 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/openwebstats/openwebstats-1.1.ebuild,v 1.6 2013/11/06 02:26:38 patrick Exp $ inherit webapp -DESCRIPTION="OpenWebStats is a PHP stats application that reads Apache log files and imports the data to a MySQL database." +DESCRIPTION="PHP stats application that reads Apache log files and imports the data to a MySQL database." HOMEPAGE="http://openwebstats.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -22,18 +22,18 @@ src_install() { dodoc README ## Main application - cp -r . ${D}${MY_HTDOCSDIR} - cp ${FILESDIR}/config.php ${D}${MY_HTDOCSDIR}/ + cp -r . "${D}${MY_HTDOCSDIR}" + cp "${FILESDIR}/config.php" "${D}${MY_HTDOCSDIR}/" ## Docs installed, remove unnecessary files - rm -f ${D}${MY_HTDOCSDIR}/README - rm -f ${D}${MY_HTDOCSDIR}/CHANGELOG + rm -f "${D}${MY_HTDOCSDIR}/README" + rm -f "${D}${MY_HTDOCSDIR}/CHANGELOG" # Database creation - webapp_sqlscript mysql ${D}${MY_HTDOCSDIR}/openwebstats.sql + webapp_sqlscript mysql "${D}${MY_HTDOCSDIR}/openwebstats.sql" # Postinstall instructions - webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt + webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt" webapp_src_install } |