diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2011-02-21 03:29:14 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2011-02-21 03:29:14 +0000 |
commit | 122f0fe7705b1a52668b29fb1d999a0df9862936 (patch) | |
tree | fd2f0c2a874411ecc2fec7e01d003d783adb859c /sci-geosciences/gpsd/gpsd-2.95-r1.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-122f0fe7705b1a52668b29fb1d999a0df9862936.tar.gz gentoo-2-122f0fe7705b1a52668b29fb1d999a0df9862936.tar.bz2 gentoo-2-122f0fe7705b1a52668b29fb1d999a0df9862936.zip |
Update for man pages, working tests, and missing header file.
(Portage version: 2.1.9.40/cvs/Linux x86_64)
Diffstat (limited to 'sci-geosciences/gpsd/gpsd-2.95-r1.ebuild')
-rw-r--r-- | sci-geosciences/gpsd/gpsd-2.95-r1.ebuild | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/sci-geosciences/gpsd/gpsd-2.95-r1.ebuild b/sci-geosciences/gpsd/gpsd-2.95-r1.ebuild new file mode 100644 index 000000000000..97c7d2640467 --- /dev/null +++ b/sci-geosciences/gpsd/gpsd-2.95-r1.ebuild @@ -0,0 +1,106 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.95-r1.ebuild,v 1.1 2011/02/21 03:29:14 nerdboy Exp $ + +EAPI=3 + +PYTHON_DEPEND="2:2.6" + +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/" +SRC_URI="mirror://berlios/gpsd/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~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} + app-text/xmlto" + +PATCHES=( + "${FILESDIR}/${PV}-disable-strip.patch" + "${FILESDIR}/${PV}-fix-ldflags.patch" +) + +pkg_setup() { + python_set_active_version 2 + + # Run the gpsd daemon as gpsd and group uucp + enewuser gpsd -1 -1 -1 "uucp" +} + +src_prepare() { + base_src_prepare + eautoreconf +} + +src_configure() { + local myopts + + # enable specified protocols + for protocol in ${GPSD_PROTOCOLS}; do + myopts+=" $(use_enable gpsd_protocols_${protocol} ${protocol})" + done + + if ! use qt4 ; then + myopts+=" --disable-libQgpsmm --disable-libgpsmm ${myopts}" + fi + + # --disable-bluetooth: considered experimental -> disable + # --enable-static is required for tests, see bug 355071 + # Hack to make it not generate docs on the fly; xmlto is + # needed for man pages (xsltproc is only needed for web pages) + econf WITH_XMLTO=yes WITH_XSLTPROC=no \ + --build=${CBUILD} \ + --disable-dependency-tracking \ + --disable-bluetooth \ + --enable-static \ + --enable-gpsd-user=gpsd \ + --enable-gpsd-group=uucp \ + $(use_enable dbus) \ + $(use_enable ipv6) \ + $(use_enable ntp ntpshm) \ + $(use_enable ntp pps) \ + ${myopts} +} + +src_install() { + # no it can't be done using emake cause it is non-compliant + make DESTDIR="${D}" install || die + + # needs this header for libQgpsmm + if use qt4 ; then + insinto /usr/include + doins libQgpsmm/libQgpsmm_global.h + fi + + # 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 +} |