diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 15:14:24 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 15:29:45 +0100 |
commit | 29d6678fd546377459ef75cf54abeef5b969b5cf (patch) | |
tree | 8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/packages/libacpi | |
parent | da49de6885ee1bc424e70bc02f21f6ab920efb55 (diff) | |
download | openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.bz2 openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.zip |
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things
and is generally overwhelming. This commit splits it into several
logical sections roughly based on function, recipes.txt gives more
information about the classifications used.
The opportunity is also used to switch from "packages" to "recipes"
as used in OpenEmbedded as the term "packages" can be confusing to
people and has many different meanings.
Not all recipes have been classified yet, this is just a first pass
at separating things out. Some packages are moved to meta-extras as
they're no longer actively used or maintained.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/libacpi')
-rw-r--r-- | meta/packages/libacpi/files/makefile-fix.patch | 45 | ||||
-rw-r--r-- | meta/packages/libacpi/libacpi_0.2.bb | 19 |
2 files changed, 0 insertions, 64 deletions
diff --git a/meta/packages/libacpi/files/makefile-fix.patch b/meta/packages/libacpi/files/makefile-fix.patch deleted file mode 100644 index 9193929767..0000000000 --- a/meta/packages/libacpi/files/makefile-fix.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- - Makefile | 6 +++--- - config.mk | 3 ++- - 2 files changed, 5 insertions(+), 4 deletions(-) - -Index: libacpi-0.2/Makefile -=================================================================== ---- libacpi-0.2.orig/Makefile 2007-07-29 14:09:34.000000000 +0200 -+++ libacpi-0.2/Makefile 2008-09-26 10:34:53.000000000 +0200 -@@ -25,16 +25,16 @@ ${OBJ}: config.mk libacpi.h - - libacpi.a: ${OBJ} - @echo AR $@ -- @${AR} $@ ${OBJ} -+ ${AR} ${ARFLAGS} $@ ${OBJ} - @${RANLIB} $@ - - libacpi.so: ${OBJ} - @echo LD $@ -- @${LD} ${SOFLAGS} -o $@.${SOVERSION} ${OBJ} -+ @${CC} ${SOFLAGS} -o $@.${SOVERSION} ${OBJ} - - test-libacpi: ${OBJ_test} - @echo LD $@ -- @${LD} -o $@ ${OBJ_test} ${LDFLAGS} -+ @${CC} -o $@ ${OBJ_test} ${LDFLAGS} - @strip $@ - - install: all -Index: libacpi-0.2/config.mk -=================================================================== ---- libacpi-0.2.orig/config.mk 2007-07-29 14:09:34.000000000 +0200 -+++ libacpi-0.2/config.mk 2008-09-26 10:34:33.000000000 +0200 -@@ -9,9 +9,10 @@ MANPREFIX = ${PREFIX}/share/man - # flags - SOFLAGS = -shared -Wl,-soname,${SONAME} - CFLAGS += -fPIC -g --pedantic -Wall -Wextra -+ARFLAGS = cr - - # Compiler and linker - CC = cc - LD = ${CC} --AR = ar cr -+AR = ar - RANLIB = ranlib diff --git a/meta/packages/libacpi/libacpi_0.2.bb b/meta/packages/libacpi/libacpi_0.2.bb deleted file mode 100644 index e60d934ea8..0000000000 --- a/meta/packages/libacpi/libacpi_0.2.bb +++ /dev/null @@ -1,19 +0,0 @@ -DESCRIPTION = "ACPI data gathering library." -SECTION = "base" -HOMEPAGE = "http://www.ngolde.de/libacpi.html" -LICENSE = "MIT" -PR = "r1" - -SRC_URI = "http://www.ngolde.de/download/libacpi-${PV}.tar.gz \ - file://makefile-fix.patch;patch=1 " - -PACKAGES += "${PN}-bin" - -FILES_${PN} = "${libdir}/libacpi.so.*" -FILES_${PN}-bin = "${bindir}" - -COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)' - -do_install() { - oe_runmake install DESTDIR=${D} PREFIX=${exec_prefix} -} |