blob: d00e9a174e4c2dee9eec2cba9309f354a09d7354 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
PR = "r0"
LICENSE = "LGPL"
DESCRIPTION = "GLib 1.2 is a deprecated libray to \
provide support for old glib 1.2 based applications"
SECTION = "libs"
PRIORITY = "optional"
DEPENDS = ""
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/glib-1.2-${PV}"
EXTRA_OECONF = "--disable-debug"
SRC_URI = "ftp://ftp.gtk.org/pub/gtk/v1.2/glib-${PV}.tar.gz \
file://glibconfig-sysdefs.h \
file://depcomp \
file://glib-reconf-fix;apply=yes \
file://posix-conf-changes;apply=yes \
file://gcc-3.4-pretty_function;apply=yes"
S = "${WORKDIR}/glib-${PV}"
inherit autotools pkgconfig native gettext
acpaths = ""
do_configure_prepend () {
install -m 0644 ${WORKDIR}/glibconfig-sysdefs.h .
install -m 0644 ${WORKDIR}/depcomp .
rm -f ltconfig acinclude.m4 libtool ltmain.sh
}
do_stage () {
oe_libinstall -so libglib ${STAGING_LIBDIR}
oe_libinstall -so -C gmodule libgmodule ${STAGING_LIBDIR}
oe_libinstall -so -C gthread libgthread ${STAGING_LIBDIR}
autotools_stage_includes
install -d ${STAGING_INCDIR}/glib-1.2
install -m 0755 ${S}/glibconfig.h ${STAGING_INCDIR}/glib-1.2/glibconfig.h
install -d ${STAGING_DATADIR}/aclocal
install -m 0644 ${S}/glib.m4 ${STAGING_DATADIR}/aclocal/glib-1.2.m4
}
do_install () {
:
}
SRC_URI[md5sum] = "6fe30dad87c77b91b632def29dd69ef9"
SRC_URI[sha256sum] = "6e1ce7eedae713b11db82f11434d455d8a1379f783a79812cd2e05fc024a8d9f"
|