commit: 81b800f3042276f956ea722dbfc51a5bf104d799 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> AuthorDate: Wed Jan 20 20:49:46 2021 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Wed Jan 20 20:49:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81b800f3
www-apps/piwigo: 11.0.0 bump Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org> www-apps/piwigo/Manifest | 1 + www-apps/piwigo/piwigo-11.0.0.ebuild | 44 ++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/www-apps/piwigo/Manifest b/www-apps/piwigo/Manifest index 99de152d320..f88b9a27a88 100644 --- a/www-apps/piwigo/Manifest +++ b/www-apps/piwigo/Manifest @@ -1 +1,2 @@ +DIST piwigo-11.0.0.zip 17686353 BLAKE2B ea9425c70aa4d3febf93b473393e551b05955b8248c1e710fd49af50bf112e99902b14ac3a90e63e0651602b5005a7bb2f0f7e5a8e71fea8589fc369045399f0 SHA512 833b2daa8d0f71dc2a38647b11df3fed41d76451dae43fd32ef9e785b057d29fc11407c1c69233da895051de400b10e1d07395824ec71615146852b938bc963c DIST piwigo-2.10.2.zip 17391322 BLAKE2B 9982b398b8f3ead6bb5e70b34508d868e2a7440c1fe2d066f659d1a04e90f3239af0b63c2bcdc2fa250edab216acd155d5201d2634c30b275008f25bd0a5e7d0 SHA512 b75359a5ca1fd863de766eaf46dee64fc36482162fd1013bb95fd98553ae1135f9eafd584929a8d0f4dd074e9231978e84917e557de328786c6060098ab3734b diff --git a/www-apps/piwigo/piwigo-11.0.0.ebuild b/www-apps/piwigo/piwigo-11.0.0.ebuild new file mode 100644 index 00000000000..978f3b237a3 --- /dev/null +++ b/www-apps/piwigo/piwigo-11.0.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit webapp + +DESCRIPTION="a photo gallery software for the web" +HOMEPAGE="http://piwigo.org/" +SRC_URI="http://piwigo.org/download/dlcounter.php?code=${PV} -> ${P}.zip" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="+exif +gd imagemagick" + +DEPEND="" +RDEPEND=" + imagemagick? ( virtual/imagemagick-tools ) + dev-lang/php[ctype,exif?,gd?,filter,iconv,json,mysqli] + >=virtual/mysql-5.0 + virtual/httpd-php" +BDEPEND="app-arch/unzip" + +REQUIRED_USE="|| ( gd imagemagick )" + +S=${WORKDIR}/${PN} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + + # Local configuration, and parts that can be updated + webapp_serverowned "${MY_HTDOCSDIR}"/_data + webapp_serverowned -R "${MY_HTDOCSDIR}"/galleries + webapp_serverowned -R "${MY_HTDOCSDIR}"/language + webapp_serverowned -R "${MY_HTDOCSDIR}"/local + webapp_serverowned -R "${MY_HTDOCSDIR}"/plugins + webapp_serverowned -R "${MY_HTDOCSDIR}"/template-extension + webapp_serverowned -R "${MY_HTDOCSDIR}"/themes + webapp_serverowned "${MY_HTDOCSDIR}"/upload + + webapp_src_install +}