More section fixes
authorMatthias Hentges <oe@hentges.net>
Mon, 11 Oct 2004 12:15:32 +0000 (12:15 +0000)
committerMatthias Hentges <oe@hentges.net>
Mon, 11 Oct 2004 12:15:32 +0000 (12:15 +0000)
BKrev: 416a79643LSGzR9xhW1Qat0-LoYx-g

12 files changed:
apache/apache_2.0.48.oe
bitchx/bitchx_1.1.oe
boa/boa_0.94.13.oe
libtomcrypt/libtomcrypt_0.97b.oe
madwifi/madwifi-modules_cvs.oe
prism54/prism54-firmware_1.0.4.3.oe
prism54/prism54-module_1.2.oe
putty/putty_cvs.oe
unik-olsrd/unik-olsrd_0.4.5.oe
unik-olsrd/unik-olsrd_0.4.6.oe
unik-olsrd/unik-olsrd_0.4.7.oe
vtun/vtun_2.6.oe

index 86ea6bc..2ba8433 100644 (file)
@@ -1,5 +1,5 @@
 BROKEN = "1"
-SECTION = "net"
+SECTION = "console/network"
 DEPENDS = "expat openssl"
 DESCRIPTION = "A high performance Unix-based HTTP server."
 
index e69de29..d94f5e0 100644 (file)
@@ -0,0 +1,33 @@
+DESCRIPTION = "BitchX is a IRC client"
+SECTION = "console/network"
+
+SRC_URI = "http://www.bitchx.org/files/source/ircii-pana-${PV}-final.tar.gz \
+          file://gcc34.patch;patch=1"
+S = "${WORKDIR}/BitchX"
+
+inherit autotools
+
+do_configure() {
+        gnu-configize
+        oe_runconf
+}
+
+do_install() {
+       oe_runmake install \
+                    prefix=${D}/${prefix} \
+                    exec_prefix=${D}/${exec_prefix} \
+                    bindir=${D}/${bindir} \
+                    sbindir=${D}/${sbindir} \
+                    libexecdir=${D}/${libexecdir} \
+                    datadir=${D}/${datadir} \
+                    sysconfdir=${D}/${sysconfdir} \
+                    sharedstatedir=${D}/${sharedstatedir} \
+                    localstatedir=${D}/${localstatedir} \
+                    libdir=${D}/${libdir} \
+                    includedir=${D}/${includedir} \
+                    oldincludedir=${D}/${oldincludedir} \
+                    infodir=${D}/${infodir} \
+                    mandir=${D}/${mandir}
+       ln -sf ./BitchX-1.1-final ${D}/${bindir}/BitchX
+}
+
index ce700e6..43ff789 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "Lightweight and High Performance WebServer"
-SECTION = "net"
+SECTION = "console/network"
 RPROVIDES = "httpd"
 MAINTAINER = "Rene Wagner <reenoo@gmx.de>"
 PR = "r1"
index e69de29..72244dd 100644 (file)
@@ -0,0 +1,26 @@
+DESCRIPTION = "LibTomCrypt is a fairly comprehensive, modular \
+and portable cryptographic toolkit that provides developers \
+with a vast array of well known published block ciphers, \
+one-way hash functions, chaining modes, pseudo-random number \
+generators, public key cryptography and a plethora of other \
+routines."
+SECTION = "libs/network"
+PRIORITY = "optional"
+
+SRC_URI = "http://libtomcrypt.org/files/crypt-${PV}.tar.bz2"
+
+inherit autotools
+
+EXTRA_OEMAKE = "library"
+
+#FIXME add patch to make it shared
+
+do_stage() {
+       oe_libinstall -a libtomcrypt ${STAGING_LIBDIR}/
+       install -m 0644 *.h ${STAGING_INCDIR}/
+}
+
+do_install() {
+       :
+}
+
index ed325dd..e643f3b 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "Linux driver for 802.11a/b/g universal NIC cards using Atheros chip sets"
-SECTION = "net"
+SECTION = "base/network"
 PRIORITY = "optional"
 MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"
 LICENSE = "GPL"
index e69de29..24efe32 100644 (file)
@@ -0,0 +1,16 @@
+DESCRIPTION = "Firmware for the Prism54 driver"
+SECTION = "base/network"
+PRIORITY = "optional"
+MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"
+LICENSE = "unknown"
+
+SRC_URI = "http://prism54.org/~mcgrof/firmware/${PV}.arm"
+
+S = "${WORKDIR}/prism54.org"
+
+do_install() {
+       install -d ${D}/usr/lib/hotplug/firmware/
+       install -m 0644 ${PV}.arm ${D}/usr/lib/hotplug/firmware/
+}
+
+FILES_${PN} = "/usr/lib/hotplug/firmware/"
index e69de29..ad9a57c 100644 (file)
@@ -0,0 +1,31 @@
+DESCRIPTION = "Linux Driver for the 802.11g Prism GT / Prism Duette / Prism Indigo Chipsets"
+SECTION = "base/network"
+PRIORITY = "optional"
+MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"
+LICENSE = "GPL"
+RDEPENDS = "kernel (${KERNEL_VERSION}) kernel-module-firmware-class prism54-firmware"
+DEPENDS = "virtual/kernel"
+
+SRC_URI = "http://prism54.org/pub/linux/testing/tars/2004-06/prism54-1.2.tar.bz2"
+
+S = "${WORKDIR}/prism54-${PV}"
+
+inherit module-base
+
+# Hack Alert :D
+ARCH_mipsel = "mips"
+
+EXTRA_OEMAKE = "KDIR=${KERNEL_SOURCE} KMISC=${D}/lib/modules/${KERNEL_VERSION}/net KVER=${KERNEL_VERSION}"
+
+do_compile() {
+       unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
+       oe_runmake modules
+}
+
+do_install() {
+       unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
+       oe_runmake install
+       
+}
+
+FILES_${PN} = "/lib/modules/"
index 0c48461..42e20fa 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "PuTTY is a free implementation of Telnet and SSH for Win32 and Unix platforms"
-SECTION = "net"
+SECTION = "console/network"
 
 SRC_URI = "cvs://cvsuser:anonymous@cvs.tartarus.org/home/cvs;module=putty \
           file://lib.pro \
index e69de29..5bcdca5 100644 (file)
@@ -0,0 +1,18 @@
+DESCRIPTION = "OLSR mesh routing daemon"
+DESCRIPTION_unik-olsrd-libs = "OLSR mesh routing daemon -  optional libraries"
+SECTION = "console/network"
+PRIORITY = "optional"
+LICENSE = "GPL"
+
+SRC_URI="http://www.olsr.org/downloadolsr.cgi?file=uolsrd-${PV}.tar.bz2 \
+       file://unik-olsrd-0.4.5_Makefiles.diff;patch=1;pnum=1 \
+       file://unik-olsrd"
+
+PACKAGES =+ "unik-olsrd-libs"
+FILES_unik-olsrd-libs = "${libdir}"
+
+do_install () {
+       oe_runmake INSTALL_PREFIX=${D} install
+       install -d ${D}/etc/init.d
+       install -m 0755 ${WORKDIR}/unik-olsrd ${D}/${sysconfdir}/init.d
+}
index e69de29..90133da 100644 (file)
@@ -0,0 +1,24 @@
+DESCRIPTION = "OLSR mesh routing daemon"
+DESCRIPTION_unik-olsrd-libs = "OLSR mesh routing daemon -  optional libraries"
+MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"
+SECTION = "console/network"
+PRIORITY = "optional"
+LICENSE = "GPL"
+
+SRC_URI="http://www.olsr.org/downloadolsr.cgi?file=olsrd-${PV}.tar.bz2 \
+       file://unik-olsrd"
+
+PACKAGES =+ "unik-olsrd-libs"
+FILES_unik-olsrd-libs = "${libdir}"
+
+S = "${WORKDIR}/olsrd-${PV}"
+
+do_compile() {
+       oe_runmake all libs
+}
+
+do_install () {
+       oe_runmake INSTALL_PREFIX=${D} install install_libs
+       install -d ${D}/etc/init.d
+       install -m 0755 ${WORKDIR}/unik-olsrd ${D}/${sysconfdir}/init.d
+}
index e69de29..90133da 100644 (file)
@@ -0,0 +1,24 @@
+DESCRIPTION = "OLSR mesh routing daemon"
+DESCRIPTION_unik-olsrd-libs = "OLSR mesh routing daemon -  optional libraries"
+MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"
+SECTION = "console/network"
+PRIORITY = "optional"
+LICENSE = "GPL"
+
+SRC_URI="http://www.olsr.org/downloadolsr.cgi?file=olsrd-${PV}.tar.bz2 \
+       file://unik-olsrd"
+
+PACKAGES =+ "unik-olsrd-libs"
+FILES_unik-olsrd-libs = "${libdir}"
+
+S = "${WORKDIR}/olsrd-${PV}"
+
+do_compile() {
+       oe_runmake all libs
+}
+
+do_install () {
+       oe_runmake INSTALL_PREFIX=${D} install install_libs
+       install -d ${D}/etc/init.d
+       install -m 0755 ${WORKDIR}/unik-olsrd ${D}/${sysconfdir}/init.d
+}
index e69de29..b607943 100644 (file)
@@ -0,0 +1,23 @@
+DESCRIPTION = "Virtual Tunnels over TCP/IP networks with traffic shaping, compression and encryption."
+SECTION = "console/network"
+PRIORITY = "optional"
+LICENSE = "GPL"
+DEPENDS = "zlib lzo"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/vtun/vtun-${PV}.tar.gz \
+       file://init \
+       file://makefile.in-ldflags.patch;patch=1;pnum=0"
+
+S = "${WORKDIR}/vtun"
+
+inherit autotools
+
+do_configure() {
+       oe_runconf
+}
+
+do_install_append() {
+       install -d ${D}${sysconfdir}/init.d/
+       install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/vtund
+       install ${S}/scripts/vtund-start.conf ${D}${sysconfdir}
+}