summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.4.9.bb
diff options
context:
space:
mode:
authorRoy Li <rongqing.li@windriver.com>2015-06-15 17:32:42 +0800
committerMartin Jansa <Martin.Jansa@gmail.com>2015-06-23 12:41:52 +0200
commitac462c7e58737d7396ed92ad98faba6a3f20bd35 (patch)
tree3c87fc33089382ec8444f4450755927267ef36da /meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.4.9.bb
parent8f7ee00291f0e693223ebf0644386206dcf8e64b (diff)
downloadmeta-openembedded-ac462c7e58737d7396ed92ad98faba6a3f20bd35.tar.gz
phpmyadmin: upgrade 4.4.9
upgrade to include CVE fixes: CVE-2015-3903 CVE-2015-3902 Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.4.9.bb')
-rw-r--r--meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.4.9.bb34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.4.9.bb b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.4.9.bb
new file mode 100644
index 0000000000..91a1cbf9e7
--- /dev/null
+++ b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.4.9.bb
@@ -0,0 +1,34 @@
1SUMMARY = "Web-based MySQL administration interface"
2HOMEPAGE = "http://www.phpmyadmin.net"
3# Main code is GPLv2, libraries/tcpdf is under LGPLv3, js/jquery is under MIT
4LICENSE = "GPLv2 & LGPLv3 & MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a \
6 file://libraries/tcpdf/LICENSE.TXT;md5=5c87b66a5358ebcc495b03e0afcd342c"
7
8SRC_URI = "${SOURCEFORGE_MIRROR}/phpmyadmin/phpMyAdmin/${PV}/phpMyAdmin-${PV}-all-languages.tar.xz \
9 file://apache.conf"
10
11SRC_URI[md5sum] = "d60d80fabe1b27023122228dcf7ee73e"
12SRC_URI[sha256sum] = "b9a31d6ec3e7abe708160ce8dbc364c029015256766bac6f68134b84a836d766"
13
14S = "${WORKDIR}/phpMyAdmin-${PV}-all-languages"
15
16inherit allarch
17
18do_install() {
19 install -d ${D}${datadir}/${BPN}
20 cp -a * ${D}${datadir}/${BPN}
21 # Don't install patches to target
22 rm -rf ${D}${datadir}/${BPN}/patches
23
24 install -d ${D}${sysconfdir}/apache2/conf.d
25 install -m 0644 ${WORKDIR}/apache.conf ${D}${sysconfdir}/apache2/conf.d/phpmyadmin.conf
26
27 # Remove a few scripts that explicitly require bash (!)
28 rm -f ${D}${datadir}/phpmyadmin/libraries/transformations/*.sh
29}
30
31FILES_${PN} = "${datadir}/${BPN} \
32 ${sysconfdir}/apache2/conf.d"
33
34RDEPENDS_${PN} += "bash"