diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-06 14:21:28 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-06 14:21:28 +0000 |
commit | e113a4931bd13591a722cfa2f67ab28b4cd07c5b (patch) | |
tree | 08334c2ffeb6223239314c6693414be72a7f8fed /fam/fam_2.7.0.oe | |
parent | e991648517e28ecb0476bf25606dd181e939e173 (diff) |
fix fam 2.7.0 build.
note to self: start using bk sfiles -x ;)
BKrev: 4049de68oFprb1SqV1YavWM9n6dElA
Diffstat (limited to 'fam/fam_2.7.0.oe')
-rw-r--r-- | fam/fam_2.7.0.oe | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/fam/fam_2.7.0.oe b/fam/fam_2.7.0.oe new file mode 100644 index 0000000000..d9c2279ed4 --- /dev/null +++ b/fam/fam_2.7.0.oe @@ -0,0 +1,20 @@ +DESCRIPTION=File Alteration Monitor +SECTION=libs +PRIORITY=optional +RDEPENDS=libc6 +DEPENDS=virtual/libc + +SRC_URI = ftp://oss.sgi.com/projects/fam/download/stable/fam-${PV}.tar.gz \ + file://${FILESDIR}/compile-fix.patch;patch=1 + +inherit autotools libtool + +CPPFLAGS_append = ' -DNDEBUG' + +do_stage() { + oe_soinstall libfam/.libs/libfam.so.0.0.0 ${STAGING_LIBDIR}/ + install -m 0644 libfam/.libs/libfam.a ${STAGING_LIBDIR}/libfam.a + install -m 0644 libfam/.libs/libfam.lai ${STAGING_LIBDIR}/libfam.la + install -m 0644 include/* ${STAGING_INCDIR}/ +} + |