* [gentoo-commits] gentoo-x86 commit in sci-geosciences/gpsd: ChangeLog gpsd-2.95.ebuild
@ 2010-09-26 13:36 Tomas Chvatal (scarabeus)
0 siblings, 0 replies; 3+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2010-09-26 13:36 UTC (permalink / raw
To: gentoo-commits
scarabeus 10/09/26 13:36:50
Modified: ChangeLog
Added: gpsd-2.95.ebuild
Log:
Version bump to latest. This is only basic ebuild and generic tested. Might need enhancement/touchups.
(Portage version: 2.2_rc87/cvs/Linux x86_64)
Revision Changes Path
1.50 sci-geosciences/gpsd/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?r1=1.49&r2=1.50
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog 30 May 2010 20:48:39 -0000 1.49
+++ ChangeLog 26 Sep 2010 13:36:50 -0000 1.50
@@ -1,6 +1,13 @@
# ChangeLog for sci-geosciences/gpsd
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v 1.49 2010/05/30 20:48:39 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v 1.50 2010/09/26 13:36:50 scarabeus Exp $
+
+*gpsd-2.95 (26 Sep 2010)
+
+ 26 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org> +files/gpsd.conf-2,
+ +files/gpsd.init-2, +gpsd-2.95.ebuild:
+ Version bump to latest. This is only basic ebuild and generic tested.
+ Might need enhancement/touchups.
30 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
gpsd-2.32.ebuild, gpsd-2.38.ebuild, gpsd-2.39-r1.ebuild:
1.1 sci-geosciences/gpsd/gpsd-2.95.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild?rev=1.1&content-type=text/plain
Index: gpsd-2.95.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild,v 1.1 2010/09/26 13:36:50 scarabeus Exp $
EAPI=3
PYTHON_DEPEND="2:2.6"
inherit python base
DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients."
HOMEPAGE="http://gpsd.berlios.de/"
SRC_URI="mirror://berlios/gpsd/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
GPSD_PROTOCOLS="ashtech aivdm clientdebug earthmate evermore fv18 garmin
garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver
oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip
tripmate tnt ubx"
for protocol in ${GPSD_PROTOCOLS}; do
IUSE_GPSD_PROTOCOLS+=" gpsd_protocols_${protocol}"
done
IUSE="${IUSE_GPSD_PROTOCOLS} dbus ipv6 ntp qt4"
# those harddeps are de-facto automagicall
RDEPEND="
dev-python/pygtk
sys-libs/ncurses
virtual/libusb:1
dbus? (
sys-apps/dbus
dev-libs/dbus-glib
)
ntp? ( net-misc/ntp )
qt4? ( x11-libs/qt-gui )
"
DEPEND="${RDEPEND}"
pkg_setup() {
python_set_active_version 2
# Run the gpsd daemon as gpsd and group uucp
enewuser gpsd -1 -1 -1 "uucp"
}
src_configure() {
local myopts
# enable specified protocols
for protocol in ${GPSD_PROTOCOLS}; do
myopts+=" $(use_enable gpsd_protocols_${protocol} ${protocol})"
done
# --disable-bluetooth: considered experimental -> disable
# hack to make it not generate docs on the fly
WITH_XSLTPROC=no WITH_XMLTO=no \
econf \
--disable-dependency-tracking \
--disable-bluetooth \
--disable-static \
--enable-libgpsmm \
--enable-gpsd-user=gpsd \
--enable-gpsd-group=uucp \
$(use_enable dbus) \
$(use_enable ipv6) \
$(use_enable ntp ntpshm) \
$(use_enable ntp pps) \
$(use_enable qt4 libQgpsmm) \
${myopts}
}
src_install() {
base_src_install
newconfd "${FILESDIR}"/gpsd.conf-2 gpsd || die
newinitd "${FILESDIR}"/gpsd.init-2 gpsd || die
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-geosciences/gpsd: ChangeLog gpsd-2.95.ebuild
@ 2010-10-03 16:17 Tomas Chvatal (scarabeus)
0 siblings, 0 replies; 3+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2010-10-03 16:17 UTC (permalink / raw
To: gentoo-commits
scarabeus 10/10/03 16:17:01
Modified: ChangeLog gpsd-2.95.ebuild
Log:
Fix ldflags and strip issues. Bug #339114.
(Portage version: 2.2_rc88/cvs/Linux x86_64)
Revision Changes Path
1.52 sci-geosciences/gpsd/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 30 Sep 2010 23:07:55 -0000 1.51
+++ ChangeLog 3 Oct 2010 16:17:01 -0000 1.52
@@ -1,6 +1,11 @@
# ChangeLog for sci-geosciences/gpsd
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v 1.51 2010/09/30 23:07:55 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v 1.52 2010/10/03 16:17:01 scarabeus Exp $
+
+ 03 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org>
+ +files/2.95-disable-strip.patch, gpsd-2.95.ebuild,
+ +files/2.95-fix-ldflags.patch:
+ Fix ldflags and strip issues. Bug #339114.
30 Sep 2010; Sven Wegener <swegener@gentoo.org> files/gpsd.init-2:
Change NAME to SVCNAME in init script.
1.2 sci-geosciences/gpsd/gpsd-2.95.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild?r1=1.1&r2=1.2
Index: gpsd-2.95.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gpsd-2.95.ebuild 26 Sep 2010 13:36:50 -0000 1.1
+++ gpsd-2.95.ebuild 3 Oct 2010 16:17:01 -0000 1.2
@@ -1,12 +1,12 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild,v 1.1 2010/09/26 13:36:50 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild,v 1.2 2010/10/03 16:17:01 scarabeus Exp $
EAPI=3
PYTHON_DEPEND="2:2.6"
-inherit python base
+inherit python base autotools
DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients."
HOMEPAGE="http://gpsd.berlios.de/"
@@ -39,6 +39,11 @@
"
DEPEND="${RDEPEND}"
+PATCHES=(
+ "${FILESDIR}/${PV}-disable-strip.patch"
+ "${FILESDIR}/${PV}-fix-ldflags.patch"
+)
+
pkg_setup() {
python_set_active_version 2
@@ -46,6 +51,11 @@
enewuser gpsd -1 -1 -1 "uucp"
}
+src_prepare() {
+ base_src_prepare
+ eautoreconf
+}
+
src_configure() {
local myopts
@@ -73,7 +83,11 @@
}
src_install() {
- base_src_install
+ # no it cant be done using emake cause it is non-compilant
+ make DESTDIR="${D}" install || die
+
+ # no need for .la files here
+ find "${D}" -type f -name '*.la' -exec rm -f '{}' +
newconfd "${FILESDIR}"/gpsd.conf-2 gpsd || die
newinitd "${FILESDIR}"/gpsd.init-2 gpsd || die
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-geosciences/gpsd: ChangeLog gpsd-2.95.ebuild
@ 2010-10-18 9:03 Steve Arnold (nerdboy)
0 siblings, 0 replies; 3+ messages in thread
From: Steve Arnold (nerdboy) @ 2010-10-18 9:03 UTC (permalink / raw
To: gentoo-commits
nerdboy 10/10/18 09:03:11
Modified: ChangeLog gpsd-2.95.ebuild
Log:
Keyworded for ~ppc (tested on G4 ibook).
(Portage version: 2.2_rc97/cvs/Linux x86_64)
Revision Changes Path
1.55 sci-geosciences/gpsd/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/ChangeLog?r1=1.54&r2=1.55
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog 18 Oct 2010 04:20:43 -0000 1.54
+++ ChangeLog 18 Oct 2010 09:03:11 -0000 1.55
@@ -1,6 +1,9 @@
# ChangeLog for sci-geosciences/gpsd
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v 1.54 2010/10/18 04:20:43 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/ChangeLog,v 1.55 2010/10/18 09:03:11 nerdboy Exp $
+
+ 18 Oct 2010; Steve Arnold <nerdboy@gentoo.org> gpsd-2.95.ebuild:
+ Keyworded for ~ppc (tested on G4 ibook).
18 Oct 2010; Steve Arnold <nerdboy@gentoo.org> gpsd-2.39-r1.ebuild:
Updated for new python eclass.
1.4 sci-geosciences/gpsd/gpsd-2.95.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild?r1=1.3&r2=1.4
Index: gpsd-2.95.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gpsd-2.95.ebuild 3 Oct 2010 16:31:22 -0000 1.3
+++ gpsd-2.95.ebuild 18 Oct 2010 09:03:11 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild,v 1.3 2010/10/03 16:31:22 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95.ebuild,v 1.4 2010/10/18 09:03:11 nerdboy Exp $
EAPI=3
@@ -14,7 +14,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
GPSD_PROTOCOLS="ashtech aivdm clientdebug earthmate evermore fv18 garmin
garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-10-18 9:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-03 16:17 [gentoo-commits] gentoo-x86 commit in sci-geosciences/gpsd: ChangeLog gpsd-2.95.ebuild Tomas Chvatal (scarabeus)
-- strict thread matches above, loose matches on Subject: below --
2010-10-18 9:03 Steve Arnold (nerdboy)
2010-09-26 13:36 Tomas Chvatal (scarabeus)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox