CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
gpsd: initial import (verified compilation)
authorJose V Beneyto <sepen@crux.nu>
Thu, 28 Jan 2010 13:35:14 +0000 (14:35 +0100)
committerJose V Beneyto <sepen@crux.nu>
Thu, 28 Jan 2010 13:35:14 +0000 (14:35 +0100)
gpsd/.footprint [new file with mode: 0644]
gpsd/.md5sum [new file with mode: 0644]
gpsd/Pkgfile [new file with mode: 0644]

diff --git a/gpsd/.footprint b/gpsd/.footprint
new file mode 100644 (file)
index 0000000..1de3dc5
--- /dev/null
@@ -0,0 +1,51 @@
+drwxr-xr-x     root/root       usr/
+drwxr-xr-x     root/root       usr/bin/
+-rwxr-xr-x     root/root       usr/bin/cgps
+-rwxr-xr-x     root/root       usr/bin/gpsctl
+-rwxr-xr-x     root/root       usr/bin/gpsdecode
+-rwxr-xr-x     root/root       usr/bin/gpsmon
+-rwxr-xr-x     root/root       usr/bin/gpspipe
+-rwxr-xr-x     root/root       usr/bin/gpxlogger
+-rwxr-xr-x     root/root       usr/bin/lcdgps
+-rwxr-xr-x     root/root       usr/bin/xgpsspeed
+drwxr-xr-x     root/root       usr/include/
+-rw-r--r--     root/root       usr/include/gps.h
+-rw-r--r--     root/root       usr/include/gpsd.h
+-rw-r--r--     root/root       usr/include/libgpsmm.h
+drwxr-xr-x     root/root       usr/lib/
+-rw-r--r--     root/root       usr/lib/libgps.a
+-rwxr-xr-x     root/root       usr/lib/libgps.la
+lrwxrwxrwx     root/root       usr/lib/libgps.so -> libgps.so.19.0.0
+lrwxrwxrwx     root/root       usr/lib/libgps.so.19 -> libgps.so.19.0.0
+-rwxr-xr-x     root/root       usr/lib/libgps.so.19.0.0
+drwxr-xr-x     root/root       usr/lib/pkgconfig/
+-rw-r--r--     root/root       usr/lib/pkgconfig/libgps.pc
+-rw-r--r--     root/root       usr/lib/pkgconfig/libgpsd.pc
+drwxr-xr-x     root/root       usr/lib/python2.6/
+drwxr-xr-x     root/root       usr/lib/python2.6/site-packages/
+drwxr-xr-x     root/root       usr/man/
+drwxr-xr-x     root/root       usr/man/man1/
+-rw-r--r--     root/root       usr/man/man1/cgps.1.gz
+-rw-r--r--     root/root       usr/man/man1/cgpxlogger.1.gz
+-rw-r--r--     root/root       usr/man/man1/gps.1.gz
+-rw-r--r--     root/root       usr/man/man1/gpscat.1.gz
+-rw-r--r--     root/root       usr/man/man1/gpsctl.1.gz
+-rw-r--r--     root/root       usr/man/man1/gpsdecode.1.gz
+-rw-r--r--     root/root       usr/man/man1/gpsfake.1.gz
+-rw-r--r--     root/root       usr/man/man1/gpsmon.1.gz
+-rw-r--r--     root/root       usr/man/man1/gpspipe.1.gz
+-rw-r--r--     root/root       usr/man/man1/gpsprof.1.gz
+-rw-r--r--     root/root       usr/man/man1/lcdgps.1.gz
+-rw-r--r--     root/root       usr/man/man1/xgps.1.gz
+-rw-r--r--     root/root       usr/man/man1/xgpsspeed.1.gz
+drwxr-xr-x     root/root       usr/man/man3/
+-rw-r--r--     root/root       usr/man/man3/libgps.3.gz
+-rw-r--r--     root/root       usr/man/man3/libgpsd.3.gz
+-rw-r--r--     root/root       usr/man/man3/libgpsmm.3.gz
+drwxr-xr-x     root/root       usr/man/man5/
+-rw-r--r--     root/root       usr/man/man5/rtcm-104.5.gz
+-rw-r--r--     root/root       usr/man/man5/srec.5.gz
+drwxr-xr-x     root/root       usr/man/man8/
+-rw-r--r--     root/root       usr/man/man8/gpsd.8.gz
+drwxr-xr-x     root/root       usr/sbin/
+-rwxr-xr-x     root/root       usr/sbin/gpsd
diff --git a/gpsd/.md5sum b/gpsd/.md5sum
new file mode 100644 (file)
index 0000000..8216825
--- /dev/null
@@ -0,0 +1 @@
+a23c728b8734c542d559c485857238d2  gpsd-2.90.tar.gz
diff --git a/gpsd/Pkgfile b/gpsd/Pkgfile
new file mode 100644 (file)
index 0000000..f4d9690
--- /dev/null
@@ -0,0 +1,26 @@
+# Description: gpsd is a service daemon that monitors one or more GPSes
+# URL: http://gpsd.berlios.de/
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on:
+
+name=gpsd
+version=2.90
+release=1
+source=(http://download.berlios.de/$name/$name-$version.tar.gz)
+
+build () {
+  cd $name-$version
+  
+  ./configure --build=$CHOST \
+              --host=$CTARGET \
+              --prefix=/usr \
+              --mandir=$PKG/usr/man
+
+  make
+  make prefix=$PKG/usr install
+  
+  install -m 0644 *.1 $PKG/usr/man/man1
+  install -m 0644 *.3 $PKG/usr/man/man3
+  install -m 0644 *.5 $PKG/usr/man/man5
+  install -m 0644 *.8 $PKG/usr/man/man8
+}