Merge pull request #2549 from uriah0/master

New packages: pps-tools-20120407 / gpsd-3.15
This commit is contained in:
Juan RP 2015-09-18 09:22:51 +02:00
commit 6a8dfb9b52
12 changed files with 195 additions and 0 deletions

View File

@ -81,6 +81,7 @@ libmenuw.so.5 ncurses-libs-5.9_13 ignore
libmenuw.so.6 ncurses-libs-5.8_1 ignore
libobjc.so.4 libobjc-4.7.3_12
libgomp.so.1 libgomp-4.4.0_1
libgps.so.22 gpsd-3.15_1
libmagic.so.1 libmagic-5.12_1
libbluetooth.so.3 libbluetooth-4.58_1
libwmf-0.2.so.7 libwmf-0.2.8.4_1
@ -435,6 +436,7 @@ libdca.so.0 libdca-0.0.5_1
libmpeg2.so.0 libmpeg2-0.5.1_1
libmpeg2convert.so.0 libmpeg2-0.5.1_1
libmng.so.2 libmng-2.0.2_1
libQgpsmm.so.22 gpsd-qt-3.15_1
libQtAssistantClient.so qt-4.5.3_1
libQtXmlPatterns.so.4 qt-4.5.3_1
libQtScriptTools.so.4 qt-4.5.3_1

1
srcpkgs/gpsd-devel Symbolic link
View File

@ -0,0 +1 @@
gpsd

1
srcpkgs/gpsd-python Symbolic link
View File

@ -0,0 +1 @@
gpsd

1
srcpkgs/gpsd-qt Symbolic link
View File

@ -0,0 +1 @@
gpsd

1
srcpkgs/gpsd-qt-devel Symbolic link
View File

@ -0,0 +1 @@
gpsd

1
srcpkgs/gpsd-xgps Symbolic link
View File

@ -0,0 +1 @@
gpsd

View File

@ -0,0 +1,38 @@
From 95c99f69e026e8c57aecba545e51c97f3b284e75 Mon Sep 17 00:00:00 2001
From: Gary E. Miller <gem@rellim.com>
Date: Tue, 23 Jun 2015 21:36:26 +0000
Subject: Remove a BSD-ism.
CTRL('L') is a BSD-ism. CTRL() is defined in sys/ttydefaults.h
which does not always exist. Instead of adding scons tests for
needing CTRL() and its include files just replace with a simple
constant.
Needed for musl and found by Baruch Siach <baruch@tkos.co.il>
---
diff --git a/gpsmon.c b/gpsmon.c
index c3001c8..58c8300 100644
--- a/gpsmon.c
+++ b/gpsmon.c
@@ -583,6 +583,9 @@ static void select_packet_monitor(struct gps_device_t *device)
(void)wnoutrefresh(devicewin);
}
+/* Control-L character */
+#define CTRL_L 0x0C
+
static char *curses_get_command(void)
/* char-by-char nonblocking input, return accumulated command line on \n */
{
@@ -591,7 +594,8 @@ static char *curses_get_command(void)
int c;
c = wgetch(cmdwin);
- if (c == CTRL('L')) {
+ if (CTRL_L == c) {
+ /* ^L is to repaint the screen */
(void)clearok(stdscr, true);
if (active != NULL && (*active)->initialize != NULL)
(void)(*active)->initialize();
--
cgit v0.9.0.2

View File

@ -0,0 +1,12 @@
diff -urN gpsd-3.15-old/SConstruct gpsd-3.15-new/SConstruct
--- gpsd-3.15-old/SConstruct 2015-09-17 01:33:26.227445589 -0400
+++ gpsd-3.15-new/SConstruct 2015-09-17 01:34:11.761522374 -0400
@@ -613,7 +613,7 @@
confdefs.append("#define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path) + strlen((ptr)->sun_path))\n")
confdefs.append("#endif /* SUN_LEN */\n")
- if config.CheckHeader(["bits/sockaddr.h", "linux/can.h"]):
+ if config.CheckHeader(["linux/can.h"]):
confdefs.append("#define HAVE_LINUX_CAN_H 1\n")
announce("You have kernel CANbus available.")
else:

View File

@ -0,0 +1,14 @@
diff -urN gpsd-3.15-old/SConstruct gpsd-3.15-new/SConstruct
--- gpsd-3.15-old/SConstruct 2015-06-03 14:09:31.000000000 +0000
+++ gpsd-3.15-new/SConstruct 2015-09-17 18:17:49.140818485 +0000
@@ -539,8 +539,8 @@
# are like FreeBSD.
ncurseslibs= []
if env['ncurses']:
- if config.CheckPKG('ncurses'):
- ncurseslibs = pkg_config('ncurses')
+ if config.CheckPKG('ncursesw'):
+ ncurseslibs = pkg_config('ncursesw')
elif WhereIs('ncurses5-config'):
ncurseslibs = ['!ncurses5-config --libs --cflags']
elif WhereIs('ncursesw5-config'):

96
srcpkgs/gpsd/template Normal file
View File

@ -0,0 +1,96 @@
# Template file for 'gpsd'
pkgname=gpsd
version=3.15
revision=1
build_style=scons
patch_args=-p1
make_build_args="dbus_export=0 gpsd_user=gpsd gpsd_group=gpsd sbindir=/usr/bin udevdir=/usr/lib/udev CC=${CC}"
make_install_args="${make_build_args}"
make_install_target="udev-install"
short_desc="A GPS/AIS receiver monitoring daemon"
maintainer="uriahheep <uriahheep@gmail.com>"
license="BSD"
homepage="http://www.catb.org/gpsd/"
distfiles="http://download-mirror.savannah.gnu.org/releases/gpsd/gpsd-${version}.tar.gz"
checksum="81c89e271ae112313e68655ab30d227bc38fe7841ffbff0f1860b12a9d7696ea"
system_accounts="gpsd"
hostmakedepends="scons pkg-config bc python libxslt xmlto asciidoc"
makedepends="libudev-devel ntp libusb-devel ncurses-devel pps-tools-devel libcap-devel libbluetooth-devel"
subpackages="gpsd-devel"
if [ -z "$CROSS_BUILD" ]; then
subpackages+=" gpsd-python gpsd-xgps gpsd-qt gpsd-qt-devel"
makedepends+=" qt-devel python-devel"
else
make_build_args+=" python=0"
fi
pre_build() {
unset CPPFLAGS
}
pre_install() {
export DESTDIR=${DESTDIR}
}
post_install() {
vlicense COPYING
vlicense AUTHORS
}
gpsd-python_package() {
short_desc+=" - python tools/bindings"
depends="python gnuplot ${sourcepkg}>=${version}_${revision}"
pycompile_module="gpsd"
pkg_install() {
vmove usr/lib/python2.7
vmove usr/bin/gegps
vmove usr/bin/gpscat
vmove usr/bin/gpsfake
vmove usr/bin/gpsprof
vmove usr/share/man/man1/gegps.1
vmove usr/share/man/man1/gpscat.1
vmove usr/share/man/man1/gpsfake.1
vmove usr/share/man/man1/gpsprof.1
}
}
gpsd-xgps_package() {
short_desc+=" - PyGTK based clients"
depends="pygtk ${sourcepkg}-python>=${version}_${revision}"
pkg_install() {
vmove usr/bin/xgps
vmove usr/bin/xgpsspeed
vmove usr/share/man/man1/xgps*
}
}
gpsd-qt_package() {
short_desc+=" - Qt bindings"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/lib/libQgpsmm.so.*
}
}
gpsd-qt-devel_package() {
short_desc+=" - Qt development files"
depends="qt-devel ${sourcepkg}-devel>=${version}_${revision}"
pkg_install() {
vmove usr/lib/libQgpsmm.so
vmove usr/lib/pkgconfig/Qgpsmm.pc
vmove usr/lib/libQgpsmm.prl
vmove usr/share/man/man3/libQgpsmm.3
}
}
gpsd-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig/libgps*.pc
vmove usr/lib/libgps.so
}
}

1
srcpkgs/pps-tools-devel Symbolic link
View File

@ -0,0 +1 @@
pps-tools

View File

@ -0,0 +1,27 @@
# Template file for 'pps-tools'
_githash="0deb9c7e135e9380a6d09e9d2e938a146bb698c8"
pkgname="pps-tools"
version="20120407"
revision=1
build_style=gnu-makefile
short_desc="Tools for LinuxPPS (pulse-per-second)"
maintainer="uriahheep <uriahheep@gmail.com>"
license="GPL-2"
homepage="http://linuxpps.org/wiki/index.php/Main_Page"
distfiles="https://github.com/ago/pps-tools/archive/${_githash}.tar.gz"
checksum="28d4e5aa845f659a6ab4174bbf579e22e2d2c87dc72fd6d07306a6a249c27c76"
wrksrc=pps-tools-$_githash
do_install() {
mkdir -p ${DESTDIR}/usr/bin ${DESTDIR}/usr/include/sys
make DESTDIR=${DESTDIR} install
}
pps-tools-devel_package() {
short_desc+=" - development files"
pkg_install() {
vmove usr/include
}
}