summaryrefslogtreecommitdiff
path: root/curl
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
committerChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
commita780643c4b6aa11e1a36965a69df7116477c7b4c (patch)
tree17e81e77bde19931facf9b30fa5b5981df796071 /curl
parent88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff)
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb 2004/12/07 04:58:25-06:00 ti.com!kergoth More updates per the core rename. 2004/12/07 04:46:51-06:00 ti.com!kergoth Update soundtracker per the core rename. 2004/12/07 04:44:14-06:00 ti.com!kergoth Merge 2004/12/07 04:42:38-06:00 ti.com!kergoth Updates per the recent rename of the oe core from 'oe' to 'bitbake'. BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'curl')
-rw-r--r--curl/curl_7.12.2.bb0
-rw-r--r--curl/curl_7.12.2.oe43
2 files changed, 0 insertions, 43 deletions
diff --git a/curl/curl_7.12.2.bb b/curl/curl_7.12.2.bb
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/curl/curl_7.12.2.bb
diff --git a/curl/curl_7.12.2.oe b/curl/curl_7.12.2.oe
deleted file mode 100644
index 9a5b1e71e4..0000000000
--- a/curl/curl_7.12.2.oe
+++ /dev/null
@@ -1,43 +0,0 @@
-# NOTE: FIXME: curl puts its LDFLAGS in its curl-config and curl.pc files.
-# This is flawed, as the LDFLAGS are often overridden by the user, and in
-# addition, are generally specific to the *build* environment, not target.
-# curl's build should be fixed to manipulate LIBS where appropriate and
-# use that. -CL
-
-DEPENDS = "zlib"
-DESCRIPTION = "Command line tool and library for \
-client-side URL transfers."
-LICENSE = "MIT"
-SECTION = "console/network"
-PR = "r1"
-
-SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2"
-
-inherit autotools pkgconfig
-
-EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \
- --without-ssl --with-random=/dev/urandom"
-
-PACKAGES = "curl curl-doc libcurl libcurl-dev libcurl-doc"
-FILES_${PN} = "${bindir}/curl"
-FILES_${PN}-doc = "${mandir}/man1/curl.1"
-FILES_lib${PN} = "${libdir}/lib*.so.*"
-FILES_lib${PN}-dev = "${includedir} \
- ${libdir}/lib*.so \
- ${libdir}/lib*.a \
- ${libdir}/lib*.la \
- ${libdir}/pkgconfig \
- ${datadir}/aclocal \
- ${bindir}/*-config"
-FILES_lib${PN}-doc = "${mandir}/man3 \
- ${mandir}/man1/curl-config.1"
-
-do_stage () {
- install -d ${STAGING_INCDIR}/curl
- install -m 0644 ${S}/include/curl/*.h ${STAGING_INCDIR}/curl/
- oe_libinstall -so -a -C lib libcurl ${STAGING_LIBDIR}
-
- cat curl-config | sed -e "s,-I/usr/include,-I${STAGING_INCDIR}/," \
- | sed -e "s,-L/usr/lib , , "> ${STAGING_BINDIR}/curl-config
- chmod a+rx ${STAGING_BINDIR}/curl-config
-}