summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/tinderclient.bbclass8
-rw-r--r--packages/at76c503a/at76c503a-modules_cvs.bb13
-rw-r--r--packages/mpc/.mtn2git_empty0
-rw-r--r--packages/mpc/mpc-0.11.2/.mtn2git_empty0
-rw-r--r--packages/mpc/mpc-0.11.2/configure-searchdirs.patch20
-rw-r--r--packages/mpc/mpc_0.11.2.bb15
-rw-r--r--packages/ncmpc/.mtn2git_empty0
-rw-r--r--packages/ncmpc/ncmpc_0.11.1.bb14
-rw-r--r--packages/portmap/portmap_5-9.bb3
9 files changed, 63 insertions, 10 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass
index 3c88b2ac63..5b55589ec0 100644
--- a/classes/tinderclient.bbclass
+++ b/classes/tinderclient.bbclass
@@ -5,21 +5,21 @@ def tinder_tz_offset(off):
return int(off)
except ValueError:
if off == "Europe/Berlin":
- return 120
+ return 200
else:
return 0
def tinder_tinder_time(offset):
import datetime
- td = datetime.timedelta(minutes=tinder_tz_offset(offset))
+ td = datetime.timedelta(tinder_tz_offset(offset))
time = datetime.datetime.utcnow() + td
return time.strftime('%m/%d/%Y %H:%M:%S')
def tinder_tinder_start(date,offset):
import datetime, time
- td = datetime.timedelta(minutes=tinder_tz_offset(offset))
+ td = datetime.timedelta(tinder_tz_offset(offset))
ti = time.strptime(date, "%m/%d/%Y %H:%M:%S")
- time = datetime.datetime(*ti[0:7])+td
+ ti = datetime.datetime(*ti[0:7])-td
return time.strftime('%m/%d/%Y %H:%M:%S')
def tinder_send_email(da, header, log):
diff --git a/packages/at76c503a/at76c503a-modules_cvs.bb b/packages/at76c503a/at76c503a-modules_cvs.bb
index 8f11aeeff3..5e56c4787a 100644
--- a/packages/at76c503a/at76c503a-modules_cvs.bb
+++ b/packages/at76c503a/at76c503a-modules_cvs.bb
@@ -3,13 +3,15 @@ LICENSE = "GPL"
SRC_URI = "cvs://anonymous@cvs.berlios.de/cvsroot/at76c503a;module=at76c503a \
file://makefile.cc.patch;patch=1"
S = "${WORKDIR}/at76c503a"
-PR = "r1"
+PR = "r2"
PV = "0.0cvs${CVSDATE}"
inherit module
-MODULES = "at76c503.ko at76_usbdfu.ko at76c503-i3861.ko at76c503-rfmd.ko at76c503-rfmd-acc.ko \
- at76c505-rfmd.ko at76c503-i3863.ko at76c505-rfmd2958.ko"
+MODULES = "at76c503 at76_usbdfu at76c503-i3861 at76c503-rfmd at76c503-rfmd-acc \
+ at76c505-rfmd at76c503-i3863 at76c505-rfmd2958"
+MODULES_EXTENSION = "o"
+MODULES_EXTENSION_kernel26 = "ko"
pkg_postinst() {
#!/bin/sh
@@ -26,8 +28,9 @@ update-modules || true
do_install() {
install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/
- for i in ${MODULES}; do install -m 0644 $i ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/$i; done
-
+ for i in ${MODULES}; do
+ install -m 0644 $i.${MODULES_EXTENSION} ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/
+ done
if [ "${MACHINE}" = "h3900" ]; then
install -d ${D}${sysconfdir}/modutils
echo "at76c503-rfmd" > ${D}${sysconfdir}/modutils/at76c503-rfmd
diff --git a/packages/mpc/.mtn2git_empty b/packages/mpc/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/mpc/.mtn2git_empty
diff --git a/packages/mpc/mpc-0.11.2/.mtn2git_empty b/packages/mpc/mpc-0.11.2/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/mpc/mpc-0.11.2/.mtn2git_empty
diff --git a/packages/mpc/mpc-0.11.2/configure-searchdirs.patch b/packages/mpc/mpc-0.11.2/configure-searchdirs.patch
new file mode 100644
index 0000000000..f35b085b96
--- /dev/null
+++ b/packages/mpc/mpc-0.11.2/configure-searchdirs.patch
@@ -0,0 +1,20 @@
+--- mpc-0.11.2/configure.ac~ 2005-03-11 10:04:35.000000000 +0100
++++ mpc-0.11.2/configure.ac 2005-07-28 00:51:32.000000000 +0200
+@@ -31,8 +31,6 @@
+ ICONV_LIBS="-L$iconv_libraries"
+ elif test "x$iconv_prefix" != "x" ; then
+ ICONV_LIBS="-L$iconv_prefix/lib"
+- elif test "x$prefix" != "xNONE"; then
+- ICONV_LIBS="-L$libdir"
+ fi
+
+ ICONV_LIBS="$ICONV_LIBS -liconv"
+@@ -41,8 +39,6 @@
+ ICONV_CFLAGS="-I$iconv_includes"
+ elif test "x$iconv_prefix" != "x" ; then
+ ICONV_CFLAGS="-I$iconv_prefix/include"
+- elif test "x$prefix" != "xNONE"; then
+- ICONV_CFLAGS="-I$includedir"
+ fi
+
+ CFLAGS="$CFLAGS $ICONV_CFLAGS"
diff --git a/packages/mpc/mpc_0.11.2.bb b/packages/mpc/mpc_0.11.2.bb
new file mode 100644
index 0000000000..cb6c785d22
--- /dev/null
+++ b/packages/mpc/mpc_0.11.2.bb
@@ -0,0 +1,15 @@
+SECTION = "console/multimedia"
+DESCRIPTION = "command line client for mpd"
+HOMEPAGE = "http://www.musicpd.org/mpc.shtml"
+LICENSE = "GPLv2"
+MAINTAINER = "Hannes Reich <hannes@skynet.ie>"
+DEPENDS = ""
+PR = "r0"
+
+SRC_URI = "http://mercury.chem.pitt.edu/~shank/mpc-${PV}.tar.gz \
+ file://configure-searchdirs.patch;patch=1"
+
+inherit autotools
+
+
+
diff --git a/packages/ncmpc/.mtn2git_empty b/packages/ncmpc/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/ncmpc/.mtn2git_empty
diff --git a/packages/ncmpc/ncmpc_0.11.1.bb b/packages/ncmpc/ncmpc_0.11.1.bb
new file mode 100644
index 0000000000..b7568b4e1c
--- /dev/null
+++ b/packages/ncmpc/ncmpc_0.11.1.bb
@@ -0,0 +1,14 @@
+SECTION = "console/multimedia"
+DESCRIPTION = "curses client for mpd"
+HOMEPAGE = "http://www.musicpd.org/ncmpc.shtml"
+LICENSE = "GPLv2"
+MAINTAINER = "Hannes Reich <hannes@skynet.ie>"
+DEPENDS = "ncurses glib-2.0"
+PR = "r0"
+
+SRC_URI = "http://mercury.chem.pitt.edu/~shank/ncmpc-${PV}.tar.gz"
+
+inherit autotools
+
+
+
diff --git a/packages/portmap/portmap_5-9.bb b/packages/portmap/portmap_5-9.bb
index 3092b70539..9df7c0c021 100644
--- a/packages/portmap/portmap_5-9.bb
+++ b/packages/portmap/portmap_5-9.bb
@@ -1,7 +1,8 @@
DESCRIPTION = "RPC program number mapper."
SECTION = "console/network"
LICENSE = "GPL"
-PR = "r3"
+RDEPENDS = "portmap-utils"
+PR = "r4"
SRC_URI = "http://www.uk.debian.org/debian/pool/main/p/portmap/portmap_5.orig.tar.gz \
http://www.uk.debian.org/debian/pool/main/p/portmap/portmap_${PV}.diff.gz;patch=1 \