diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2023-12-30 11:55:13 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2023-12-30 11:55:25 +0100 |
commit | 355adac7cd107f15e0320179636b7b34df965e9d (patch) | |
tree | d40229069adf2a2671a60f4b180dd33411fdbfe9 /www-apps | |
parent | dev-ruby/reline: drop 0.3.7, 0.3.8 (diff) | |
download | gentoo-355adac7cd107f15e0320179636b7b34df965e9d.tar.gz gentoo-355adac7cd107f15e0320179636b7b34df965e9d.tar.bz2 gentoo-355adac7cd107f15e0320179636b7b34df965e9d.zip |
www-apps/piwigo: add 14.1.0
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/piwigo/Manifest | 1 | ||||
-rw-r--r-- | www-apps/piwigo/piwigo-14.1.0.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/www-apps/piwigo/Manifest b/www-apps/piwigo/Manifest index 55d2effd7c7a..7ecc12988789 100644 --- a/www-apps/piwigo/Manifest +++ b/www-apps/piwigo/Manifest @@ -1 +1,2 @@ DIST piwigo-14.0.0.zip 18442805 BLAKE2B 22c714f68c6f68d7fe9a1bd8303a7ef63ac30dd6862d3dfd32f1bd3754a1805b8cfd321e3b734fe6eba3485374452befa7f2e0bfe0795a34e6ea25d1d1bada5a SHA512 cb679faeec7b188ece561ea5f1bf3fbf4acd513205f0492c5932921aae2676489089241f57fad3b1623e019772e39821121765bc0648d95da8f06d5a644e5a96 +DIST piwigo-14.1.0.zip 18448411 BLAKE2B e4b7c172adae16a1b90c104c4018ec0324773382a348cc9f57d1b7065d011c9fa90b2062322f31c1b2a0a17230d08b07041abebadd9f08054f198f5ab65329c6 SHA512 3dbe34a70840139264088bc2bbaba12eebe7d0ae1b340586b6299f04a584b34a1d827e1a7f7afe4f929373be496f72af5cd35b9a9f12d4a3907249b8718f6d47 diff --git a/www-apps/piwigo/piwigo-14.1.0.ebuild b/www-apps/piwigo/piwigo-14.1.0.ebuild new file mode 100644 index 000000000000..825f7096685f --- /dev/null +++ b/www-apps/piwigo/piwigo-14.1.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +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 +} |