diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-17 15:01:24 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-17 15:01:24 +0100 |
commit | 814700d243d8eae70dffa9bef5e5111ad6902d7f (patch) | |
tree | a2522e1967f79bb6fa18c38f38d96081ea3199cf /meta-openmoko | |
parent | b8abc2db38a08e803c0b278cbe16f42b5f313a3c (diff) | |
download | poky-814700d243d8eae70dffa9bef5e5111ad6902d7f.tar.gz |
Move libsampletate and libsndfile from meta-openmoko -> meta-moblin
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta-openmoko')
4 files changed, 0 insertions, 72 deletions
diff --git a/meta-openmoko/packages/libnotify/libnotify_0.4.4.bb b/meta-openmoko/packages/libnotify/libnotify_0.4.4.bb deleted file mode 100644 index 7c95fb2ad6..0000000000 --- a/meta-openmoko/packages/libnotify/libnotify_0.4.4.bb +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | DESCRIPTION = "Send desktop notifications to a notification daemon" | ||
2 | HOMEPAGE = "http://www.galago-project.org/" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "LGPL" | ||
5 | DEPENDS = "dbus gtk+ dbus-glib" | ||
6 | PR = "r0" | ||
7 | |||
8 | SRC_URI = "http://www.galago-project.org/files/releases/source/${PN}/${PN}-${PV}.tar.gz" | ||
9 | |||
10 | inherit autotools pkgconfig | ||
11 | |||
12 | do_stage() { | ||
13 | autotools_stage_all | ||
14 | } | ||
diff --git a/meta-openmoko/packages/libsamplerate/libsamplerate0_0.1.2.bb b/meta-openmoko/packages/libsamplerate/libsamplerate0_0.1.2.bb deleted file mode 100644 index 78a7f403d4..0000000000 --- a/meta-openmoko/packages/libsamplerate/libsamplerate0_0.1.2.bb +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | DESCRIPTION = "An audio Sample Rate Conversion library" | ||
2 | SECTION = "libs" | ||
3 | LICENSE = "GPL libsamplerate" | ||
4 | PR = "r2" | ||
5 | |||
6 | SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz" | ||
7 | S = "${WORKDIR}/libsamplerate-${PV}" | ||
8 | |||
9 | inherit autotools pkgconfig | ||
10 | |||
11 | do_stage() { | ||
12 | oe_libinstall -a -so -C src libsamplerate ${STAGING_LIBDIR} | ||
13 | install -m 0644 ${S}/src/samplerate.h ${STAGING_INCDIR}/ | ||
14 | } | ||
diff --git a/meta-openmoko/packages/libsndfile/files/add-cxx.patch b/meta-openmoko/packages/libsndfile/files/add-cxx.patch deleted file mode 100644 index da0c4010e6..0000000000 --- a/meta-openmoko/packages/libsndfile/files/add-cxx.patch +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | --- | ||
2 | configure.ac | 1 + | ||
3 | 1 file changed, 1 insertion(+) | ||
4 | |||
5 | --- libsndfile-1.0.17.orig/configure.ac | ||
6 | +++ libsndfile-1.0.17/configure.ac | ||
7 | @@ -29,10 +29,11 @@ AC_LANG([C]) | ||
8 | # to 0. | ||
9 | |||
10 | SHARED_VERSION_INFO="1:17:0" | ||
11 | |||
12 | AC_PROG_CC | ||
13 | +AC_PROG_CXX | ||
14 | AM_PROG_LIBTOOL | ||
15 | |||
16 | AC_CHECK_PROG(autogen, autogen, yes, no) | ||
17 | |||
18 | AC_PROG_INSTALL | ||
diff --git a/meta-openmoko/packages/libsndfile/libsndfile1_1.0.17.bb b/meta-openmoko/packages/libsndfile/libsndfile1_1.0.17.bb deleted file mode 100644 index f2d134b5e1..0000000000 --- a/meta-openmoko/packages/libsndfile/libsndfile1_1.0.17.bb +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | DESCRIPTION = "An audio format Conversion library" | ||
2 | HOMEPAGE = "http://www.mega-nerd.com/libsndfile" | ||
3 | AUTHOR = "Erik de Castro Lopo" | ||
4 | DEPENDS = "sqlite3" | ||
5 | SECTION = "libs/multimedia" | ||
6 | LICENSE = "LGPL" | ||
7 | PR = "r2" | ||
8 | |||
9 | SRC_URI = "http://www.mega-nerd.com/libsndfile/libsndfile-${PV}.tar.gz \ | ||
10 | file://add-cxx.patch;patch=1" | ||
11 | |||
12 | S = "${WORKDIR}/libsndfile-${PV}" | ||
13 | |||
14 | inherit autotools lib_package pkgconfig | ||
15 | |||
16 | do_configure_prepend_arm() { | ||
17 | export ac_cv_sys_largefile_source=1 | ||
18 | export ac_cv_sys_file_offset_bits=64 | ||
19 | ac_cv_sizeof_off_t=8 | ||
20 | } | ||
21 | |||
22 | do_stage() { | ||
23 | oe_libinstall -a -so -C src libsndfile ${STAGING_LIBDIR} | ||
24 | install -m 0644 ${S}/src/sndfile.h ${STAGING_INCDIR}/ | ||
25 | } | ||
26 | |||