diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /openembedded/packages/libgpg-error | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | openembedded-core-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz openembedded-core-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.bz2 openembedded-core-b2f192faabe412adce79534e22efe9fb69ee40e2.zip |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/libgpg-error')
-rw-r--r-- | openembedded/packages/libgpg-error/libgpg-error-1.0/pkgconfig.patch | 56 | ||||
-rw-r--r-- | openembedded/packages/libgpg-error/libgpg-error_1.0.bb | 28 |
2 files changed, 0 insertions, 84 deletions
diff --git a/openembedded/packages/libgpg-error/libgpg-error-1.0/pkgconfig.patch b/openembedded/packages/libgpg-error/libgpg-error-1.0/pkgconfig.patch deleted file mode 100644 index 04620feedb..0000000000 --- a/openembedded/packages/libgpg-error/libgpg-error-1.0/pkgconfig.patch +++ /dev/null @@ -1,56 +0,0 @@ - -# -# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher -# - -Index: libgpg-error-1.0/configure.ac -=================================================================== ---- libgpg-error-1.0.orig/configure.ac 2004-07-30 07:48:04.000000000 -0500 -+++ libgpg-error-1.0/configure.ac 2005-02-23 18:52:01.000000000 -0600 -@@ -83,6 +83,7 @@ - AC_SUBST(GPG_ERROR_CONFIG_LIBS) - AC_SUBST(GPG_ERROR_CONFIG_CFLAGS) - AC_CONFIG_FILES([src/gpg-error-config], [chmod +x src/gpg-error-config]) -+AC_CONFIG_FILES([src/gpg-error.pc]) - - # Checks for library functions. - AC_CONFIG_FILES([Makefile]) -Index: libgpg-error-1.0/src/Makefile.am -=================================================================== ---- libgpg-error-1.0.orig/src/Makefile.am 2004-06-28 07:37:38.000000000 -0500 -+++ libgpg-error-1.0/src/Makefile.am 2005-02-23 18:53:57.000000000 -0600 -@@ -24,7 +24,8 @@ - mkerrnos.awk errnos.in \ - mkerrcodes.awk mkerrcodes1.awk mkerrcodes2.awk mkerrcodes.c \ - mkheader.awk gpg-error.h.in \ -- err-sources.h err-codes.h gpg-error-config.in gpg-error.m4 -+ err-sources.h err-codes.h gpg-error-config.in gpg-error.m4 \ -+ gpg-error.pc.in - - BUILT_SOURCES = err-sources.h err-codes.h code-to-errno.h code-from-errno.h \ - err-sources-sym.h err-codes-sym.h errnos-sym.h gpg-error.h -@@ -39,6 +40,9 @@ - m4datadir = $(datadir)/aclocal - m4data_DATA = gpg-error.m4 - -+pkgconfigdir = $(libdir)/pkgconfig -+pkgconfig_DATA = gpg-error.pc -+ - include_HEADERS = gpg-error.h - - lib_LTLIBRARIES = libgpg-error.la -Index: libgpg-error-1.0/src/gpg-error.pc.in -=================================================================== ---- /dev/null 1970-01-01 00:00:00.000000000 +0000 -+++ libgpg-error-1.0/src/gpg-error.pc.in 2005-02-23 18:52:01.000000000 -0600 -@@ -0,0 +1,10 @@ -+prefix=@prefix@ -+exec_prefix=@exec_prefix@ -+libdir=@libdir@ -+includedir=@includedir@ -+ -+Name: gpg-error -+Description: a library that defines common error values for all GnuPG components -+Version: @VERSION@ -+Libs: -L{libdir} -lgpg-error -+Cflags: -I${includedir} diff --git a/openembedded/packages/libgpg-error/libgpg-error_1.0.bb b/openembedded/packages/libgpg-error/libgpg-error_1.0.bb deleted file mode 100644 index c29053832b..0000000000 --- a/openembedded/packages/libgpg-error/libgpg-error_1.0.bb +++ /dev/null @@ -1,28 +0,0 @@ -PR = "r0" -DESCRIPTION = "GPG-Error library" -SECTION = "libs" -PRIORITY = "optional" -LICENSE = "GPL LGPL FDL" - -SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-${PV}.tar.gz \ - file://pkgconfig.patch;patch=1" - -# move libgpg-error-config into -dev package -FILES_${PN} = "${libdir}/lib*.so.*" -FILES_${PN}-dev += "${bindir}" - -inherit autotools binconfig pkgconfig - -do_stage() { - oe_libinstall -a -so -C src libgpg-error ${STAGING_LIBDIR} - install -m 0755 src/gpg-error-config ${STAGING_BINDIR}/ - - install -d ${STAGING_INCDIR}/ - for X in gpg-error.h - do - install -m 0644 ${S}/src/$X ${STAGING_INCDIR}/$X - done - - install -d ${STAGING_DATADIR}/aclocal - install -m 0644 src/gpg-error.m4 ${STAGING_DATADIR}/aclocal/ -} |