diff options
Diffstat (limited to 'recipes/radlib')
-rw-r--r-- | recipes/radlib/files/Makefile.am.patch | 24 | ||||
-rw-r--r-- | recipes/radlib/radlib-common.inc | 58 | ||||
-rw-r--r-- | recipes/radlib/radlib-mysql.inc | 6 | ||||
-rw-r--r-- | recipes/radlib/radlib-mysql_2.6.2.bb | 3 | ||||
-rw-r--r-- | recipes/radlib/radlib.inc | 1 | ||||
-rw-r--r-- | recipes/radlib/radlib_2.6.2.bb | 3 |
6 files changed, 95 insertions, 0 deletions
diff --git a/recipes/radlib/files/Makefile.am.patch b/recipes/radlib/files/Makefile.am.patch new file mode 100644 index 0000000000..e1e0e47c2c --- /dev/null +++ b/recipes/radlib/files/Makefile.am.patch @@ -0,0 +1,24 @@ +--- radlib-2.6.2/src/Makefile.am.orig 2006-07-01 18:56:09.000000000 +0200 ++++ radlib-2.6.2/src/Makefile.am 2006-07-01 18:56:48.000000000 +0200 +@@ -14,8 +14,8 @@ +
+ if MYSQL
+ MY_INCLUDES = \
+- -I$(prefix)/include/mysql \
+- -I/usr/include/mysql
++ -I$(prefix)/include/mysql
++
+ MY_SOURCES = \
+ $(top_srcdir)/database/mysql/my_database.c \
+ $(top_srcdir)/src/raddatabase.c
+@@ -24,8 +24,8 @@ + endif
+ if PGRESQL
+ PG_INCLUDES = \
+- -I$(prefix)/include \
+- -I/usr/include
++ -I$(prefix)/include
++
+ PG_SOURCES = \
+ $(top_srcdir)/database/postgresql/pg_database.c \
+ $(top_srcdir)/src/raddatabase.c
diff --git a/recipes/radlib/radlib-common.inc b/recipes/radlib/radlib-common.inc new file mode 100644 index 0000000000..1eb9bc0d5f --- /dev/null +++ b/recipes/radlib/radlib-common.inc @@ -0,0 +1,58 @@ +DESCRIPTION = "radlib is a rapid application development library for unix interprocess communications, sockets, SHA utilities, CRC utilities and much more." +HOMEPAGE = "http://www.radlib.teel.ws/" +SECTION = "libs" +LICENSE = "BSD" + +SRC_URI = "${SOURCEFORGE_MIRROR}/radlib/radlib-${PV}.tar.gz \ + file://Makefile.am.patch;patch=1" + +S = "${WORKDIR}/radlib-${PV}" + +inherit autotools +do_compile_prepend() { + rm -f ${STAGING_LIBDIR}/librad.a + rm -f ${STAGING_LIBDIR}/librad.la + rm -f ${STAGING_LIBDIR}/librad.so + rm -f ${STAGING_LIBDIR}/librad.so.0 + rm -f ${STAGING_LIBDIR}/librad.so.0.0.0 +} + +headers = "radbuffers.h \ + radconffile.h \ + radcrc.h \ + raddebug.h \ + radevents.h \ + radlist.h \ + radmsgLog.h \ + radmsgRouter.h \ + radprocess.h \ + radproclist.h \ + radprocutils.h \ + radqueue.h \ + radsemaphores.h \ + radsha.h \ + radshmem.h \ + radsocket.h \ + radsortlist.h \ + radstack.h \ + radstates.h \ + radsysdefs.h \ + radsystem.h \ + radsysutils.h \ + radtimers.h \ + radtimeUtils.h \ + raddatabase.h \ + radUDPsocket.h" + +do_stage () { + cd ${S}/src/.libs + + oe_libinstall -so -a librad ${STAGING_LIBDIR}/ + cd ${S}/h + for i in ${headers}; do + install -m 0644 $i ${STAGING_INCDIR}/ + done + cd ${S} +} + + diff --git a/recipes/radlib/radlib-mysql.inc b/recipes/radlib/radlib-mysql.inc new file mode 100644 index 0000000000..12cb73dcea --- /dev/null +++ b/recipes/radlib/radlib-mysql.inc @@ -0,0 +1,6 @@ +DEPENDS = "mysql" + +export CFLAGS_append=" -I${STAGING_INCDIR}/mysql " + +EXTRA_OECONF = " --host=${TARGET_SYS} --prefix=${STAGING_DIR_HOST}${layout_prefix} --enable-mysql" + diff --git a/recipes/radlib/radlib-mysql_2.6.2.bb b/recipes/radlib/radlib-mysql_2.6.2.bb new file mode 100644 index 0000000000..3b05f1f40a --- /dev/null +++ b/recipes/radlib/radlib-mysql_2.6.2.bb @@ -0,0 +1,3 @@ +require radlib-common.inc +require radlib-mysql.inc +PR = "r1" diff --git a/recipes/radlib/radlib.inc b/recipes/radlib/radlib.inc new file mode 100644 index 0000000000..b8fa555771 --- /dev/null +++ b/recipes/radlib/radlib.inc @@ -0,0 +1 @@ +EXTRA_OECONF = " --host=${TARGET_SYS} --prefix=${STAGING_DIR_HOST}${layout_prefix}" diff --git a/recipes/radlib/radlib_2.6.2.bb b/recipes/radlib/radlib_2.6.2.bb new file mode 100644 index 0000000000..1296a659a9 --- /dev/null +++ b/recipes/radlib/radlib_2.6.2.bb @@ -0,0 +1,3 @@ +require radlib-common.inc +require radlib.inc +PR = "r1" |