Initial import
This commit is contained in:
4
www-apps/dolibarr/Manifest
Normal file
4
www-apps/dolibarr/Manifest
Normal file
@@ -0,0 +1,4 @@
|
||||
DIST dolibarr-12.0.0.tar.gz 59967366 SHA256 25081035e265b45056d3bc60571a1a23d6faf46d8d572240a8c64a581a0c3372 SHA512 35a25f202fe919684c309accd4f2d0ccb81a52bb5427f4fdcdceede50f20026d50ee03547b701faa1c4718b9901c95c34691bbc6e9d1f4a4477bb1c0fe237b1c WHIRLPOOL 669b8138c23a568825da163c8a8d1fab2ca1e969fbd82ded5ec54e7316005a2fba383005bb71aa164da2f547325d8bedbdc7d8ffa48ca390cc0d1a804a78f1c1
|
||||
DIST dolibarr-12.0.4.tar.gz 60010054 SHA256 830ddec037616f977547831d8aebf09b7c1b2442c7051375dc1a0a2274d65235 SHA512 22a81561749f6bb26891e60dcec91854814c81f3c70992b27c77e92805d9b937c6b1f89fc7f5e78ffdb0c4dec402e8c3804bf938b358ac243bc16666cdf1ab15 WHIRLPOOL 30c021570e2b8969519c359187b9e99a1fe410ca0413cbee5a8bda46d21776c3018e10e5305f8600ffc95e18d81537c60982cd10a213cb1f96d03051725a51dd
|
||||
EBUILD dolibarr-12.0.0.ebuild 819 SHA256 667b9382eda5f13f6e6b6aa29ed0f7953824ebdcc801c5e24909d2a0ca58c32f SHA512 11c9dd5ba29b573116c7219c9b8626d69f4efb2e51800efb88ed54aca57ddb17824955aabbf858893f39c918918a6fff7add27bf6e248b79a544835503f9d330 WHIRLPOOL 4e34e1f7c6032a451dc49d4d9a49676ce5c1895a95e57eafff9ba814495fbfe34be53835f3335b1ee4434b1e001a1b3791d5c227677e3c6456513114513feefb
|
||||
EBUILD dolibarr-12.0.4.ebuild 820 SHA256 661c934fd853d426dfce0ff38222b0b541a8aae7d9953ca8f3fccf51bb763e41 SHA512 389491197fc8506c297dfbc87b336c8116b74ff302785d31ca99a4fa4367eae89aa093178975735b6a615963c5e5078832773114cf5560cbfcd0023a19e7b865 WHIRLPOOL 9d47311275708ea09d8ee3e7579eb66f8263bb661885e91116975a7bbc3c666d5092fea2cb41e336d31d3b717d2d683eb10fa5138f9dc020f71bf5e75ca4be1b
|
||||
42
www-apps/dolibarr/dolibarr-12.0.0.ebuild
Normal file
42
www-apps/dolibarr/dolibarr-12.0.0.ebuild
Normal file
@@ -0,0 +1,42 @@
|
||||
# Copyright 2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit webapp
|
||||
|
||||
DESCRIPTION="A modern software package to manage your organization's activity"
|
||||
HOMEPAGE="https://www.dolibarr.org/"
|
||||
SRC_URI="https://github.com/Dolibarr/dolibarr/archive/${PV}.tar.gz -> ${PF}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
IUSE="mysqli +postgres"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=">=dev-lang/php-5.4[mysqli?,postgres?,session,unicode,calendar,curl,gd,intl,zip]"
|
||||
BDEPEND=""
|
||||
|
||||
need_httpd_cgi
|
||||
|
||||
src_compile() {
|
||||
true;
|
||||
}
|
||||
|
||||
src_install() {
|
||||
webapp_src_preinst
|
||||
|
||||
cd htdocs/
|
||||
mkdir -p documents
|
||||
mkdir -p conf
|
||||
touch /conf/conf.php
|
||||
|
||||
insinto "${MY_HTDOCSDIR}"
|
||||
doins -r .
|
||||
|
||||
webapp_serverowned -R "${MY_HTDOCSDIR}"/conf/conf.php
|
||||
webapp_serverowned -R "${MY_HTDOCSDIR}"/documents
|
||||
|
||||
webapp_src_install
|
||||
}
|
||||
|
||||
42
www-apps/dolibarr/dolibarr-12.0.4.ebuild
Normal file
42
www-apps/dolibarr/dolibarr-12.0.4.ebuild
Normal file
@@ -0,0 +1,42 @@
|
||||
# Copyright 2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit webapp
|
||||
|
||||
DESCRIPTION="A modern software package to manage your organization's activity"
|
||||
HOMEPAGE="https://www.dolibarr.org/"
|
||||
SRC_URI="https://github.com/Dolibarr/dolibarr/archive/${PV}.tar.gz -> ${PF}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
IUSE="mysqli +postgres"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=">=dev-lang/php-5.4[mysqli?,postgres?,session,unicode,calendar,curl,gd,intl,zip]"
|
||||
BDEPEND=""
|
||||
|
||||
need_httpd_cgi
|
||||
|
||||
src_compile() {
|
||||
true;
|
||||
}
|
||||
|
||||
src_install() {
|
||||
webapp_src_preinst
|
||||
|
||||
cd htdocs/
|
||||
mkdir -p documents
|
||||
mkdir -p conf
|
||||
touch /conf/conf.php
|
||||
|
||||
insinto "${MY_HTDOCSDIR}"
|
||||
doins -r .
|
||||
|
||||
#webapp_serverowned -R "${MY_HTDOCSDIR}"/conf/conf.php
|
||||
webapp_serverowned -R "${MY_HTDOCSDIR}"/documents
|
||||
|
||||
webapp_src_install
|
||||
}
|
||||
|
||||
4
www-apps/kanboard/Manifest
Normal file
4
www-apps/kanboard/Manifest
Normal file
@@ -0,0 +1,4 @@
|
||||
DIST kanboard-1.2.10.tar.gz 3194411 SHA256 4368f0d5902a4831642103fdab90d2a61b6987ce77b046e637883168e4ad0bcb SHA512 d7bbc1749784d4e37e5d8d52c1a26ab712d4c616648afbe063ce4519e2e266f915320ea0d2464dd8407b0cc75085fd7f34eac86e7ca1736f0af9216c7345cb32 WHIRLPOOL 5cfa027f8677bd5934e6451c2c8fb501f3179bb5cd91a9e05c6731d38859a64f00fe71bc8168bdb3a1440f4a31f464a59c77d1a073c362c597a603174f5ecd19
|
||||
DIST kanboard-1.2.13.tar.gz 3286464 SHA256 1c30604d287ba9421e3941cdd1f0664a3b8c992c4a0fc95e64f307286697d063 SHA512 994c4415c5c49eee975937fc7c2c2cc9afb1b94b3ff61749486f41c41684a25b2a1775f53b7190d3fb1d0b4ac3ff74988cabb195b0e35c51aa6884c42695fde4 WHIRLPOOL ea15839d1fb7499749ef7dc95dd159ba3a84b6c7d0542c478d9b53bd4bb086580402c9640bc41f900361c1fab58a14eb1698fed8311c1c59b44a388c9dc761be
|
||||
EBUILD kanboard-1.2.10.ebuild 1285 SHA256 fd5b4b5cefa505e8307f693239deca8b79ae33ba11bb990a5881bede539b3d99 SHA512 39418953f3a3b20226f304fa6aa9ad244348fbe2e30ace565c42865e7a7e0d04fd56a891492985654634b49ea6b9cd5e8fcd046525ebd43a8b5b8112b082889d WHIRLPOOL 66bf51982f1b622e17bfea0b3b8b9ac8ad6d109d09121e308e2d797cfda2ae8d3c7a38e2951bce26c456d90214169265a4cfdd747504c88071433abeeaec0024
|
||||
EBUILD kanboard-1.2.13.ebuild 1285 SHA256 fd5b4b5cefa505e8307f693239deca8b79ae33ba11bb990a5881bede539b3d99 SHA512 39418953f3a3b20226f304fa6aa9ad244348fbe2e30ace565c42865e7a7e0d04fd56a891492985654634b49ea6b9cd5e8fcd046525ebd43a8b5b8112b082889d WHIRLPOOL 66bf51982f1b622e17bfea0b3b8b9ac8ad6d109d09121e308e2d797cfda2ae8d3c7a38e2951bce26c456d90214169265a4cfdd747504c88071433abeeaec0024
|
||||
64
www-apps/kanboard/kanboard-1.2.10.ebuild
Normal file
64
www-apps/kanboard/kanboard-1.2.10.ebuild
Normal file
@@ -0,0 +1,64 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit webapp
|
||||
|
||||
DESCRIPTION="Kanboard is a free and open source Kanban project management software."
|
||||
HOMEPAGE="https://kanboard.org/"
|
||||
SRC_URI="https://github.com/kanboard/kanboard/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="amd64 ~ppc ~sparc ~x86"
|
||||
IUSE="+apache2 +curl ldap mysql postgres +sqlite"
|
||||
REQUIRED_USE="|| ( mysql postgres sqlite )"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
>=dev-lang/php-5.6[pdo,gd,json,hash,ctype,session,filter,xml,simplexml,zip]
|
||||
virtual/httpd-php:*
|
||||
apache2? (
|
||||
www-servers/apache[apache2_modules_version]
|
||||
dev-lang/php[apache2]
|
||||
)
|
||||
mysql? (
|
||||
>=virtual/mysql-5.6
|
||||
dev-lang/php[mysql]
|
||||
)
|
||||
postgres? (
|
||||
>=dev-db/postgresql-9.3:*
|
||||
dev-lang/php[postgres]
|
||||
)
|
||||
sqlite? (
|
||||
>=dev-db/sqlite-3.7
|
||||
dev-lang/php[sqlite]
|
||||
)
|
||||
curl? ( dev-lang/php[curl] )
|
||||
ldap? ( dev-lang/php[ldap] )
|
||||
"
|
||||
|
||||
need_httpd_cgi
|
||||
|
||||
src_install() {
|
||||
webapp_src_preinst
|
||||
|
||||
rm -f LICENSE
|
||||
rm -f Dockerfile*
|
||||
rm -f composer.*
|
||||
rm -f docker-compose.yml
|
||||
rm -f Vagrantfile
|
||||
rm -f ChangeLog
|
||||
|
||||
touch config.php
|
||||
mkdir data
|
||||
|
||||
insinto "${MY_HTDOCSDIR}"
|
||||
doins -r .
|
||||
|
||||
webapp_serverowned -R "${MY_HTDOCSDIR}"/data
|
||||
|
||||
webapp_configfile "${MY_HTDOCSDIR}"/config.php
|
||||
|
||||
webapp_src_install
|
||||
}
|
||||
64
www-apps/kanboard/kanboard-1.2.13.ebuild
Normal file
64
www-apps/kanboard/kanboard-1.2.13.ebuild
Normal file
@@ -0,0 +1,64 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit webapp
|
||||
|
||||
DESCRIPTION="Kanboard is a free and open source Kanban project management software."
|
||||
HOMEPAGE="https://kanboard.org/"
|
||||
SRC_URI="https://github.com/kanboard/kanboard/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="amd64 ~ppc ~sparc ~x86"
|
||||
IUSE="+apache2 +curl ldap mysql postgres +sqlite"
|
||||
REQUIRED_USE="|| ( mysql postgres sqlite )"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
>=dev-lang/php-5.6[pdo,gd,json,hash,ctype,session,filter,xml,simplexml,zip]
|
||||
virtual/httpd-php:*
|
||||
apache2? (
|
||||
www-servers/apache[apache2_modules_version]
|
||||
dev-lang/php[apache2]
|
||||
)
|
||||
mysql? (
|
||||
>=virtual/mysql-5.6
|
||||
dev-lang/php[mysql]
|
||||
)
|
||||
postgres? (
|
||||
>=dev-db/postgresql-9.3:*
|
||||
dev-lang/php[postgres]
|
||||
)
|
||||
sqlite? (
|
||||
>=dev-db/sqlite-3.7
|
||||
dev-lang/php[sqlite]
|
||||
)
|
||||
curl? ( dev-lang/php[curl] )
|
||||
ldap? ( dev-lang/php[ldap] )
|
||||
"
|
||||
|
||||
need_httpd_cgi
|
||||
|
||||
src_install() {
|
||||
webapp_src_preinst
|
||||
|
||||
rm -f LICENSE
|
||||
rm -f Dockerfile*
|
||||
rm -f composer.*
|
||||
rm -f docker-compose.yml
|
||||
rm -f Vagrantfile
|
||||
rm -f ChangeLog
|
||||
|
||||
touch config.php
|
||||
mkdir data
|
||||
|
||||
insinto "${MY_HTDOCSDIR}"
|
||||
doins -r .
|
||||
|
||||
webapp_serverowned -R "${MY_HTDOCSDIR}"/data
|
||||
|
||||
webapp_configfile "${MY_HTDOCSDIR}"/config.php
|
||||
|
||||
webapp_src_install
|
||||
}
|
||||
2
www-apps/lychee/Manifest
Normal file
2
www-apps/lychee/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST lychee-3.2.14.tar.gz 279026 SHA256 0900774d2a34b226eca163d6109b787463480ec0337088c9ece5d1c9a267c95c SHA512 f81b59bbb2dba3e7940674582bde4ea4822da4be3838cc7717160ec5be6785b78bc57fa46b74d0c7058c1b2a1e7876abe51da0fd6f93d7ea94011e3477cd11f3 WHIRLPOOL a7f9024f5fb8a29169d015b1c83a8efb001ff951fb1743664f2e40eee39cb4ca0e54cfd2181c784bfc0a25b69e52d3017eb4a76151d59c5a8fa0794596ff31e6
|
||||
EBUILD lychee-3.2.14.ebuild 742 SHA256 b358f923c20f13fc1e42c8ea609c9fe16cb4bf5401fed78b95cbda9e319808ec SHA512 c549990b0c125809499c32dfc167b45e04bec4eb0dafeea3f7a4f8bb3aadde115d0d4b868e44bb1ae56f3eb5fa3713d6a0280ea55f7baa00c3d687469ddfbf1b WHIRLPOOL f09ae4a4668f190feb1728d590cf8c6f778bc26665837ad095bd73d34fa52bd0dadc0cda4612eec1b5f176d87ff2fb7157353cc38c21ca0d41ec73ddaa513723
|
||||
40
www-apps/lychee/lychee-3.2.14.ebuild
Normal file
40
www-apps/lychee/lychee-3.2.14.ebuild
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright 2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit webapp
|
||||
|
||||
DESCRIPTION="A free photo-management tool"
|
||||
HOMEPAGE="https://lycheeorg.github.io/"
|
||||
SRC_URI="https://github.com/LycheeOrg/Lychee/archive/v${PV}.tar.gz -> ${PF}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/Lychee-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=">=dev-lang/php-7.1[session,exif,gd,mysqli,json,unicode,zip]"
|
||||
BDEPEND=""
|
||||
|
||||
need_httpd_cgi
|
||||
|
||||
src_compile() {
|
||||
true;
|
||||
}
|
||||
|
||||
src_install() {
|
||||
webapp_src_preinst
|
||||
|
||||
insinto "${MY_HTDOCSDIR}"
|
||||
doins -r .
|
||||
|
||||
webapp_serverowned -R "${MY_HTDOCSDIR}"/data
|
||||
webapp_serverowned -R "${MY_HTDOCSDIR}"/dist
|
||||
webapp_serverowned -R "${MY_HTDOCSDIR}"/uploads
|
||||
|
||||
webapp_src_install
|
||||
}
|
||||
|
||||
6
www-apps/piwigo/Manifest
Normal file
6
www-apps/piwigo/Manifest
Normal file
@@ -0,0 +1,6 @@
|
||||
DIST piwigo-2.10.0beta1.zip 35229215 SHA256 e0322380debcdb8803a88254240ead9638ed2ea6bc5233e18b707fae8a637c22 SHA512 0c47914f4aa96a081d9a6b17d3cfeb8825a124f7c865fabbee40d34e4f534941147e5087e6177e05f62f8cb7dbeadfe15fd04432fd5b900fb79ce20660b955a4 WHIRLPOOL 746114bf6ab5c6d75ab67a9d567e223b44bebedf0c1e2e9baf8a997b6b2a3a988e7d1140631719f67e0e569a05c2b159f5f620e2a8a88502611410562a85b309
|
||||
DIST piwigo-2.10.0beta2.zip 34930664 SHA256 741653044355e55b5f0888805dc11e031937df18f3de7a369efbf608fae73e78 SHA512 3a9f3df620966a2d0af21adcd5e6f4e6a0022ec10931245313f87fc2115bd338ae704133c429aa1cdf698e789447e70fb7a29f56580197a9e04e651056c5d70a WHIRLPOOL 930a8b616122b18280d03b70e523abd9f71b215a9218b8ced01cbb37cccc1d3d4d9e0356a04e3ebeabdfc2d743eecd1bd4acc98dfa31aefd49f9cfe7fe2b14b1
|
||||
DIST piwigo-2.11.0beta2.zip 17583303 SHA256 05e713e1143d5b804344dc07d03c4d18755abd566bb0ff381ff2372e7780a7c8 SHA512 e7564a00ec740e1898831b9f81da3792cf628eea73357d4ef257f8b9dbe770af5a0549f3a32281c91d721b2a8c4259fcb2893120890e27bdd4654aafe03ed70d WHIRLPOOL c1729028bce7bedb82e7dffa62439873f3f500d4aff4ccd3381556198d1f2b6a944920464c60b06b8995ef0c0c307aecd7dec6c7fc99f846ec4aac7520021d38
|
||||
EBUILD piwigo-2.10.0_beta1.ebuild 1197 SHA256 076b9a8708ef133294ea7e676ae983cf8226af0c5ceee8526764b2017130a76e SHA512 465665d44eb399010efc2acb663a91de29e4332e8e1244d3b10ddfe633ee71e07c38505f58ac366908e322f55c458477bcb9e082d361a73395348d4f997f6488 WHIRLPOOL 68123114efcb5d3190bb2c7e7c907457cc10640c6c5ad5ef8735781cb78e7b948a98d5d6215b1285cd1422f36e88a2db38e8855ebf3b0c15fe214f5251dab1ee
|
||||
EBUILD piwigo-2.10.0_beta2.ebuild 1197 SHA256 076b9a8708ef133294ea7e676ae983cf8226af0c5ceee8526764b2017130a76e SHA512 465665d44eb399010efc2acb663a91de29e4332e8e1244d3b10ddfe633ee71e07c38505f58ac366908e322f55c458477bcb9e082d361a73395348d4f997f6488 WHIRLPOOL 68123114efcb5d3190bb2c7e7c907457cc10640c6c5ad5ef8735781cb78e7b948a98d5d6215b1285cd1422f36e88a2db38e8855ebf3b0c15fe214f5251dab1ee
|
||||
EBUILD piwigo-2.11.0_beta2.ebuild 1190 SHA256 460b42b15e38d528e09dcb07f295cba83133f1750549b5b6e3ef656f5b74c6fd SHA512 fd2ba4eeb7bb3dc2292643fb379951bcc37db9fbb2b56ac5cc7aa75896b135c008d1968ccd5a7538bcf8e10510b2be48436cab202ac49ff399063ad4b85f2f57 WHIRLPOOL d3aa3c06e762b80b604a14c254d67901774dd1140dc610a9eabb36adf75f1b12ec9b928de280427b05ae510f9101db9e51405f0da9ca28236466c1da99aa8f5b
|
||||
47
www-apps/piwigo/piwigo-2.10.0_beta1.ebuild
Normal file
47
www-apps/piwigo/piwigo-2.10.0_beta1.ebuild
Normal file
@@ -0,0 +1,47 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
inherit webapp
|
||||
|
||||
MY_PV=${PV//_/}
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
|
||||
DESCRIPTION="a photo gallery software for the web"
|
||||
HOMEPAGE="http://piwigo.org/"
|
||||
SRC_URI="http://piwigo.org/download/dlcounter.php?code=${MY_PV} -> ${MY_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
|
||||
exif? ( media-libs/exiftool )"
|
||||
|
||||
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
|
||||
}
|
||||
47
www-apps/piwigo/piwigo-2.10.0_beta2.ebuild
Normal file
47
www-apps/piwigo/piwigo-2.10.0_beta2.ebuild
Normal file
@@ -0,0 +1,47 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
inherit webapp
|
||||
|
||||
MY_PV=${PV//_/}
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
|
||||
DESCRIPTION="a photo gallery software for the web"
|
||||
HOMEPAGE="http://piwigo.org/"
|
||||
SRC_URI="http://piwigo.org/download/dlcounter.php?code=${MY_PV} -> ${MY_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
|
||||
exif? ( media-libs/exiftool )"
|
||||
|
||||
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
|
||||
}
|
||||
46
www-apps/piwigo/piwigo-2.11.0_beta2.ebuild
Normal file
46
www-apps/piwigo/piwigo-2.11.0_beta2.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
inherit webapp
|
||||
|
||||
MY_PV=${PV//_/}
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
|
||||
DESCRIPTION="a photo gallery software for the web"
|
||||
HOMEPAGE="http://piwigo.org/"
|
||||
SRC_URI="http://piwigo.org/download/dlcounter.php?code=${MY_PV} -> ${MY_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
|
||||
}
|
||||
Reference in New Issue
Block a user