summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-php/xdebug
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
commit1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch)
tree0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-webserver/recipes-php/xdebug
downloadmeta-openembedded-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-webserver/recipes-php/xdebug')
-rw-r--r--meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb b/meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb
new file mode 100644
index 0000000000..3c4d8e4024
--- /dev/null
+++ b/meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb
@@ -0,0 +1,35 @@
1SUMMARY = "Debugging and profiling extension for PHP"
2LICENSE = "Xdebug"
3LIC_FILES_CHKSUM = "file://LICENSE;md5=34df3a274aa12b795417c65634c07f16"
4
5DEPENDS = "modphp"
6
7
8SRC_URI = "http://xdebug.org/files/xdebug-${PV}.tgz"
9
10SRC_URI[md5sum] = "e49cec9861b45dc0b36eae33bf8a14fa"
11SRC_URI[sha256sum] = "b351872da46ed8378dff90a87673f5ec1e0bdd94324558ebc898e1d115e9d71c"
12
13inherit autotools
14
15EXTRA_OECONF += "--enable-xdebug -with-php-config=${STAGING_BINDIR_CROSS}/php-config"
16
17do_configure() {
18 cd ${S}
19 ${STAGING_BINDIR_CROSS}/phpize
20 cd ${B}
21
22 # Running autoreconf as autotools_do_configure would do here
23 # breaks the libtool configuration resulting in a failure later
24 # in do_compile. It's possible this may be fixable, however the
25 # easiest course of action for the moment is to avoid doing that.
26 oe_runconf
27}
28
29do_install() {
30 oe_runmake install INSTALL_ROOT=${D}
31}
32
33FILES_${PN} += "${libdir}/php5/extensions/*/*.so"
34FILES_${PN}-dbg += "${libdir}/php5/extensions/*/.debug"
35