diff options
author | Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org> | 2023-03-18 22:29:43 -0100 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org> | 2023-03-18 22:29:43 -0100 |
commit | f4226aff3493d6a1c5390a38363d9c3178e3eb9e (patch) | |
tree | 8e2fa1530a4def3876bcf39b7ed4dd1b83d3f26a /www-apps/limesurvey/limesurvey-2.63.1.ebuild | |
parent | Several QA fixes. (diff) | |
download | jmbsvicetto-f4226aff3493d6a1c5390a38363d9c3178e3eb9e.tar.gz jmbsvicetto-f4226aff3493d6a1c5390a38363d9c3178e3eb9e.tar.bz2 jmbsvicetto-f4226aff3493d6a1c5390a38363d9c3178e3eb9e.zip |
www-apps/limesurvey: Drop old versions.
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>
Diffstat (limited to 'www-apps/limesurvey/limesurvey-2.63.1.ebuild')
-rw-r--r-- | www-apps/limesurvey/limesurvey-2.63.1.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/www-apps/limesurvey/limesurvey-2.63.1.ebuild b/www-apps/limesurvey/limesurvey-2.63.1.ebuild deleted file mode 100644 index c784b73..0000000 --- a/www-apps/limesurvey/limesurvey-2.63.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit webapp - -MY_PN="LimeSurvey" -MY_DATE="170305" -MY_PV="${PV}+${MY_DATE}" - -DESCRIPTION="LimeSurvey is a popular Free Open Source Software survey tool" -HOMEPAGE="https://www.limesurvey.org/" -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" -IUSE="+gd ldap mssql mysql postgres zip" -REQUIRED_USE="^^ ( mssql mysql postgres )" - -DEPEND=" - app-admin/webapp-config -" -RDEPEND=" - dev-lang/php[gd?,hash,ldap?,session,zip?,zlib] - mssql? ( dev-lang/php[mssql] ) - mysql? ( dev-lang/php[mysqli] ) - postgres? ( dev-lang/php[postgres] ) -" -S="${WORKDIR}/${MY_PN}-${PV}-${MY_DATE}" - -pkg_config () { - - webapp_pkg_setup -} - -src_install () { - - webapp_src_preinst - - einfo "Installing files" - insinto "${MY_HTDOCSDIR}" - doins -r . - - webapp_src_install -} - -pkg_preinst () { - - fowners -R root:apache "${MY_HTDOCSDIR}" - fperms -R g-w,o-rwx "${MY_HTDOCSDIR}" - - # Allow writing to the tmp, upload and application/config directories - for dir in tmp upload application/config ; do - - fperms -R g+w "${MY_HTDOCSDIR}/${dir}" - done -} |