aboutsummaryrefslogtreecommitdiffstats
path: root/libetpan
diff options
context:
space:
mode:
authorral@home <ral@home>2004-02-14 18:38:15 +0000
committerral@home <ral@home>2004-02-14 18:38:15 +0000
commit952f7d44f3c1eb040521efd77d4433a602134379 (patch)
treecf6555d30ad464f7d55a9202cb828ec6bcc4fb29 /libetpan
parent56e3e1e7e7f9fb38fef7befc1c2b094899892838 (diff)
downloadopenembedded-952f7d44f3c1eb040521efd77d4433a602134379.tar.gz
bugfix
BKrev: 402e6b174j_UMhFHGHdI_2XwlDo7JA
Diffstat (limited to 'libetpan')
-rw-r--r--libetpan/libetpan_0.33pre.oe23
1 files changed, 23 insertions, 0 deletions
diff --git a/libetpan/libetpan_0.33pre.oe b/libetpan/libetpan_0.33pre.oe
index e69de29bb2..faae1d5728 100644
--- a/libetpan/libetpan_0.33pre.oe
+++ b/libetpan/libetpan_0.33pre.oe
@@ -0,0 +1,23 @@
+DESCRIPTION="libetpan is a library for mail server functions"
+SECTION=libs
+DEPENDS = virtual/libc openssl
+RDEPENDS = libc6 openssl
+
+SRC_URI := http://www.alwins-world.de/oe/${P}.tar.bz2 \
+
+inherit autotools
+
+do_configure() {
+ ./configure --prefix=${STAGING_DIR}/target --with-openssl=${STAGING_DIR}/target --disable-db --host=${HOST_SYS}
+
+}
+
+do_stage() {
+ oe_runmake install
+}
+
+do_install() {
+ install -d ${D}/${libdir}
+ oe_soinstall .libs/libetpan.so.1.0.0 ${D}/${libdir}
+}
+