diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-webserver/recipes-php/xdebug | |
download | meta-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.bb | 35 |
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 @@ | |||
1 | SUMMARY = "Debugging and profiling extension for PHP" | ||
2 | LICENSE = "Xdebug" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=34df3a274aa12b795417c65634c07f16" | ||
4 | |||
5 | DEPENDS = "modphp" | ||
6 | |||
7 | |||
8 | SRC_URI = "http://xdebug.org/files/xdebug-${PV}.tgz" | ||
9 | |||
10 | SRC_URI[md5sum] = "e49cec9861b45dc0b36eae33bf8a14fa" | ||
11 | SRC_URI[sha256sum] = "b351872da46ed8378dff90a87673f5ec1e0bdd94324558ebc898e1d115e9d71c" | ||
12 | |||
13 | inherit autotools | ||
14 | |||
15 | EXTRA_OECONF += "--enable-xdebug -with-php-config=${STAGING_BINDIR_CROSS}/php-config" | ||
16 | |||
17 | do_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 | |||
29 | do_install() { | ||
30 | oe_runmake install INSTALL_ROOT=${D} | ||
31 | } | ||
32 | |||
33 | FILES_${PN} += "${libdir}/php5/extensions/*/*.so" | ||
34 | FILES_${PN}-dbg += "${libdir}/php5/extensions/*/.debug" | ||
35 | |||