aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2004-09-29 15:10:37 +0000
committerMatthias Hentges <oe@hentges.net>2004-09-29 15:10:37 +0000
commit6a4043e6d36d241ada95003c9014264a4c998c00 (patch)
tree91313cceeaee632a39afac542121c444e93d9129
parent2559b746a63dac206bf8ea670e8acecd8a46e806 (diff)
downloadopenembedded-6a4043e6d36d241ada95003c9014264a4c998c00.tar.gz
Merge bk://openembedded@openembedded.bkbits.net/packages
into mhcln01.hentges.local:/home/mhentges/OpenEmbedded/packages 2004/09/29 16:41:23+02:00 mn-logistik.de!schurig fix some INHERIT += "oelint" warnings BKrev: 415ad06dOGp0_TI_vyRVCWHZOjrasg
-rw-r--r--autoconf/autoconf_2.59.oe9
-rw-r--r--automake/automake_1.8.4.oe20
-rw-r--r--binutils/binutils_2.15.91.0.2.oe6
-rw-r--r--bison/bison_1.875.oe4
-rw-r--r--flex/flex_2.5.31.oe4
-rw-r--r--gcc/gcc_3.4.2.oe2
-rw-r--r--glibc/glibc_2.3.2+cvs20040726.oe6
-rw-r--r--libtool/libtool_1.5.6.oe3
-rw-r--r--offlineimap/offlineimap_4.0.3.oe11
-rw-r--r--patcher/patcher_20040913.oe18
-rw-r--r--python/python-native_2.3.3.oe2
-rw-r--r--python/python_2.3.4.oe2
-rw-r--r--sqlite/sqlite_2.8.15.oe1
13 files changed, 81 insertions, 7 deletions
diff --git a/autoconf/autoconf_2.59.oe b/autoconf/autoconf_2.59.oe
index 41c8e21058..8863ac476c 100644
--- a/autoconf/autoconf_2.59.oe
+++ b/autoconf/autoconf_2.59.oe
@@ -1,3 +1,9 @@
+DESCRIPTION = "A package of M4 macros to produce scripts to \
+automatically configure sourcecode."
+LICENSE = "GPL"
+HOMEPAGE = "http://www.gnu.org/software/autoconf/"
+SECTION = "devel"
+
SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.bz2 \
file://program_prefix.patch;patch=1 \
file://autoreconf-include.patch;patch=1 \
@@ -7,7 +13,4 @@ SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.bz2 \
file://autoconf259-update-configscripts.patch;patch=1 \
file://autoheader-nonfatal-warnings.patch;patch=1 \
file://sizeof_types.patch;patch=1"
-DESCRIPTION = "A package of M4 macros to produce scripts to \
-automatically configure sourcecode."
-
inherit autotools
diff --git a/automake/automake_1.8.4.oe b/automake/automake_1.8.4.oe
index e69de29bb2..dd802afdc1 100644
--- a/automake/automake_1.8.4.oe
+++ b/automake/automake_1.8.4.oe
@@ -0,0 +1,20 @@
+DESCRIPTION = "A tool for automatically generating Makefiles."
+LICENSE = "GPL"
+HOMEPAGE = "http://www.gnu.org/software/automake/"
+SECTION = "devel"
+
+SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2"
+FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/automake-${PV}"
+
+inherit autotools
+
+do_install () {
+ oe_runmake 'DESTDIR=${D}' install
+ install -d ${D}/${datadir}
+ if [ ! -e ${D}/${datadir}/aclocal ]; then
+ ln -sf aclocal-1.8 ${D}/${datadir}/aclocal
+ fi
+ if [ ! -e ${D}/${datadir}/automake ]; then
+ ln -sf automake-1.8 ${D}/${datadir}/automake
+ fi
+}
diff --git a/binutils/binutils_2.15.91.0.2.oe b/binutils/binutils_2.15.91.0.2.oe
index f5bfabb15f..ad570de8d5 100644
--- a/binutils/binutils_2.15.91.0.2.oe
+++ b/binutils/binutils_2.15.91.0.2.oe
@@ -1,10 +1,12 @@
-inherit autotools
-
DESCRIPTION = "A GNU collection of binary utilities"
+HOMEPAGE = "http://www.gnu.org/software/binutils/"
+SECTION = "devel"
LICENSE = "GPL"
MAINTAINER = "Gerald Britton <gbritton@doomcom.org>"
PR = "r3"
+inherit autotools
+
PACKAGES = "${PN} ${PN}-dev ${PN}-doc ${PN}-symlinks"
FILES_${PN} = " \
diff --git a/bison/bison_1.875.oe b/bison/bison_1.875.oe
index fca2973757..eff89cd801 100644
--- a/bison/bison_1.875.oe
+++ b/bison/bison_1.875.oe
@@ -1,4 +1,8 @@
DESCRIPTION = "GNU Project parser generator (yacc replacement)."
+HOMEPAGE = "http://www.gnu.org/software/bison/"
+LICENSE = "GPL"
+SECTION = "devel"
+PRIORITY = "optional"
SRC_URI = "${GNU_MIRROR}/bison/bison-${PV}.tar.bz2 \
file://m4.patch;patch=1"
diff --git a/flex/flex_2.5.31.oe b/flex/flex_2.5.31.oe
index 0bbb3a7e71..9c8317b111 100644
--- a/flex/flex_2.5.31.oe
+++ b/flex/flex_2.5.31.oe
@@ -1,5 +1,9 @@
DESCRIPTION = "Flex is a tool for generating programs \
that recognize lexical patterns in text."
+HOMEPAGE = "http://www.gnu.org/software/flex/"
+LICENSE = "GPL"
+SECTION = "devel"
+PRIORITY = "optional"
SRC_URI = "${SOURCEFORGE_MIRROR}/lex/flex-${PV}.tar.bz2 \
file://include.patch;patch=1"
diff --git a/gcc/gcc_3.4.2.oe b/gcc/gcc_3.4.2.oe
index 4aa1d3a763..dc15ba89c8 100644
--- a/gcc/gcc_3.4.2.oe
+++ b/gcc/gcc_3.4.2.oe
@@ -3,6 +3,8 @@ PR = "r0"
inherit autotools
DESCRIPTION = "The GNU cc and gcc C compilers."
+HOMEPAGE = "http://www.gnu.org/software/gcc/"
+SECTION = "devel"
LICENSE = "GPL"
MAINTAINER = "Gerald Britton <gbritton@doomcom.org>"
diff --git a/glibc/glibc_2.3.2+cvs20040726.oe b/glibc/glibc_2.3.2+cvs20040726.oe
index 5889b2d4b8..a476a74e95 100644
--- a/glibc/glibc_2.3.2+cvs20040726.oe
+++ b/glibc/glibc_2.3.2+cvs20040726.oe
@@ -1,11 +1,13 @@
-FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/glibc-cvs"
-PR = "r9"
DESCRIPTION = "GNU C Library"
+HOMEPAGE = "http://www.gnu.org/software/libc/libc.html"
LICENSE = "LGPL"
SECTION = "libs"
PRIORITY = "required"
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
+FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/glibc-cvs"
+PR = "r9"
+
GLIBC_ADDONS ?= "linuxthreads"
GLIBC_EXTRA_OECONF ?= ""
diff --git a/libtool/libtool_1.5.6.oe b/libtool/libtool_1.5.6.oe
index 66c7a26ce6..bb740c108e 100644
--- a/libtool/libtool_1.5.6.oe
+++ b/libtool/libtool_1.5.6.oe
@@ -2,6 +2,9 @@ DESCRIPTION = "Generic library support script \
This is GNU libtool, a generic library support script. Libtool hides \
the complexity of generating special library types (such as shared \
libraries) behind a consistent interface."
+HOMEPAGE = "http://www.gnu.org/software/libtool/libtool.html"
+LICENSE = "GPL"
+SECTION = "devel"
PR = "r1"
SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \
diff --git a/offlineimap/offlineimap_4.0.3.oe b/offlineimap/offlineimap_4.0.3.oe
index e69de29bb2..e9ea45f59e 100644
--- a/offlineimap/offlineimap_4.0.3.oe
+++ b/offlineimap/offlineimap_4.0.3.oe
@@ -0,0 +1,11 @@
+DESCRIPTION = "OfflineIMAP is a tool to simplify your e-mail reading."
+HOMEPAGE = "http://gopher.quux.org:70/devel/offlineimap"
+LICENSE = "GPL"
+MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
+SECTION = "net"
+LICENSE = "GPL PSF"
+
+SRC_URI = "http://gopher.quux.org:70/devel/offlineimap/offlineimap_${PV}.tar.gz"
+S = "${WORKDIR}/offlineimap"
+
+inherit distutils
diff --git a/patcher/patcher_20040913.oe b/patcher/patcher_20040913.oe
index e69de29bb2..95ab5f0d16 100644
--- a/patcher/patcher_20040913.oe
+++ b/patcher/patcher_20040913.oe
@@ -0,0 +1,18 @@
+DESCRIPTION = "Patcher is a perl script for managing patches."
+HOMEPAGE = "http://www.holgerschurig.de/patcher.html"
+LICENSE = "Perl"
+DEPENDS = ""
+SECTION = "base"
+PRIORITY = "optional"
+MAINTAINER = "Holger Schurig <hs4233@mail.mn-solutions.de>"
+INHIBIT_DEFAULT_DEPS = "1"
+
+SRC_URI = "http://www.holgerschurig.de/files/linux/patcher-${PV}.tar.bz2"
+S="${WORKDIR}/patcher"
+
+do_install() {
+ install -d ${D}${bindir}
+ install -m 0755 patcher.py ${D}/${bindir}/patcher
+}
+
+DEPENDS_prepend_delete = "patcher "
diff --git a/python/python-native_2.3.3.oe b/python/python-native_2.3.3.oe
index d6aa390ceb..28b6c90845 100644
--- a/python/python-native_2.3.3.oe
+++ b/python/python-native_2.3.3.oe
@@ -1,4 +1,6 @@
DESCRIPTION = "Python Programming Language"
+HOMEPAGE = "http://www.python.org"
+LICENSE = "PSF"
SECTION = "devel/python"
PRIORITY = "optional"
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
diff --git a/python/python_2.3.4.oe b/python/python_2.3.4.oe
index c519d3b1fb..323aef17c6 100644
--- a/python/python_2.3.4.oe
+++ b/python/python_2.3.4.oe
@@ -1,4 +1,6 @@
DESCRIPTION = "Python Programming Language"
+HOMEPAGE = "http://www.python.org"
+LICENSE = "PSF"
SECTION = "devel/python"
PRIORITY = "optional"
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
diff --git a/sqlite/sqlite_2.8.15.oe b/sqlite/sqlite_2.8.15.oe
index 7a113393a2..2a5a677596 100644
--- a/sqlite/sqlite_2.8.15.oe
+++ b/sqlite/sqlite_2.8.15.oe
@@ -1,4 +1,5 @@
DESCRIPTION = "An Embeddable SQL Database Engine"
+HOMEPAGE = "http://www.sqlite.org/"
SECTION = "libs"
PRIORITY = "optional"
DEPENDS = "readline ncurses"