aboutsummaryrefslogtreecommitdiffstats
path: root/packages/gnutls
diff options
context:
space:
mode:
authorRene Wagner <rw@handhelds.org>2006-03-12 18:07:38 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-03-12 18:07:38 +0000
commit8f292eb3959239337df2a3671ac9d71809c26982 (patch)
tree0d89a3ea43db3376cb072d116aba552ded079d64 /packages/gnutls
parentb5daee486e0390421eec65d8331f7617b5b6edea (diff)
downloadopenembedded-8f292eb3959239337df2a3671ac9d71809c26982.tar.gz
wpa-supplicant, gnutls, libgcrypt, various .confs: revert recent commits by jnc.
- reverts revisions: 53e14a99825447107bfefacf77e28b5718be54b8 b0535ae5d884f64c3f25212755c0dbbd607a4984 8aaa554502fb1d84fe29935d27089df09bfc3ea1 de47a33901a0f8666a237eaf5825ba25f364516f - reasoning - please play by the rules * we have a policy for commit messages * don't silently drop patches (gnutls), whenever we patch stuff it's usually done for a reason * don't upgrade security critical packages (gnutls) to development releases. upstream has a reason for not declaring them stable yet. * when told by a senior developer to consult oe@ _before_ pushing a change do so, don't ignore him (RP) and push anyway
Diffstat (limited to 'packages/gnutls')
-rw-r--r--packages/gnutls/gnutls_1.2.10.bb27
-rw-r--r--packages/gnutls/gnutls_1.3.4.bb27
2 files changed, 0 insertions, 54 deletions
diff --git a/packages/gnutls/gnutls_1.2.10.bb b/packages/gnutls/gnutls_1.2.10.bb
deleted file mode 100644
index 7227dfdcae..0000000000
--- a/packages/gnutls/gnutls_1.2.10.bb
+++ /dev/null
@@ -1,27 +0,0 @@
-DESCRIPTION = "GNU Transport Layer Security Library"
-DEPENDS = "zlib libgcrypt lzo"
-
-LICENSE = "LGPL"
-
-SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/gnutls-${PV}.tar.bz2"
-
-inherit autotools
-inherit binconfig
-
-PACKAGES =+ "${PN}-openssl ${PN}-extra ${PN}-bin"
-FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*"
-FILES_${PN}-extra = "${libdir}/libgnutls-extra.so.*"
-FILES_${PN} = "${libdir}/libgnutls.so.*"
-FILES_${PN}-bin = "${bindir}/gnutls-serv ${bindir}/gnutls-cli \
- ${bindir}/srptool ${bindir}/certtool ${bindir}/gnutls-srpcrypt"
-FILES_${PN}-dev += "${bindir}/*-config ${bindir}/gnutls-cli-debug"
-
-EXTRA_OECONF="--with-included-opencdk --with-included-libtasn1"
-
-do_stage() {
- oe_libinstall -C lib/.libs -so -a libgnutls ${STAGING_LIBDIR}
- oe_libinstall -C libextra/.libs -so -a libgnutls-extra ${STAGING_LIBDIR}
- oe_libinstall -C libextra/.libs -so -a libgnutls-openssl ${STAGING_LIBDIR}
- autotools_stage_includes
-}
-
diff --git a/packages/gnutls/gnutls_1.3.4.bb b/packages/gnutls/gnutls_1.3.4.bb
deleted file mode 100644
index 0c02f4bd0f..0000000000
--- a/packages/gnutls/gnutls_1.3.4.bb
+++ /dev/null
@@ -1,27 +0,0 @@
-DESCRIPTION = "GNU Transport Layer Security Library"
-DEPENDS = "zlib libgcrypt lzo"
-
-LICENSE = "LGPL"
-
-SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/devel/gnutls-${PV}.tar.bz2"
-
-inherit autotools
-inherit binconfig
-
-PACKAGES =+ "${PN}-openssl ${PN}-extra ${PN}-bin"
-FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*"
-FILES_${PN}-extra = "${libdir}/libgnutls-extra.so.*"
-FILES_${PN} = "${libdir}/libgnutls.so.*"
-FILES_${PN}-bin = "${bindir}/gnutls-serv ${bindir}/gnutls-cli \
- ${bindir}/srptool ${bindir}/certtool ${bindir}/gnutls-srpcrypt"
-FILES_${PN}-dev += "${bindir}/*-config ${bindir}/gnutls-cli-debug"
-
-EXTRA_OECONF="--with-included-opencdk --with-included-libtasn1"
-
-do_stage() {
- oe_libinstall -C lib/.libs -so -a libgnutls ${STAGING_LIBDIR}
- oe_libinstall -C libextra/.libs -so -a libgnutls-extra ${STAGING_LIBDIR}
- oe_libinstall -C libextra/.libs -so -a libgnutls-openssl ${STAGING_LIBDIR}
- autotools_stage_includes
-}
-
/fix-yocto-bug-7984'>dengke/fix-yocto-bug-7984 OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/bitbake/contrib/bbdev.sh
blob: 33a78531e1ac31a8fae3da25b553ff9490888a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This is a shell function to be sourced into your shell or placed in your .profile,
# which makes setting things up for BitBake a bit easier.
#
# The author disclaims copyright to the contents of this file and places it in the
# public domain.

bbdev () {
	local BBDIR PKGDIR BUILDDIR
	if test x"$1" = "x--help"; then echo >&2 "syntax: bbdev [bbdir [pkgdir [builddir]]]"; return 1; fi
	if test x"$1" = x; then BBDIR=`pwd`; else BBDIR=$1; fi
	if test x"$2" = x; then PKGDIR=`pwd`; else PKGDIR=$2; fi
	if test x"$3" = x; then BUILDDIR=`pwd`; else BUILDDIR=$3; fi

	BBDIR=`readlink -f $BBDIR`
	PKGDIR=`readlink -f $PKGDIR`
	BUILDDIR=`readlink -f $BUILDDIR`
	if ! (test -d $BBDIR && test -d $PKGDIR && test -d $BUILDDIR); then
		echo >&2 "syntax: bbdev [bbdir [pkgdir [builddir]]]"
		return 1
	fi
	
	PATH=$BBDIR/bin:$PATH
	BBPATH=$BBDIR
	if test x"$BBDIR" != x"$PKGDIR"; then
		BBPATH=$PKGDIR:$BBPATH
	fi
	if test x"$PKGDIR" != x"$BUILDDIR"; then
		BBPATH=$BUILDDIR:$BBPATH
	fi
	export BBPATH
}