diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2010-11-08 00:59:36 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2010-11-08 00:59:36 +0000 |
commit | e0c63c31bf38ce04337090788e1100c386333f7c (patch) | |
tree | c8c22930b51a5220527a79b013113bfdb45a33e5 /sci-geosciences | |
parent | version bump to fix 325073, some hints by Boris Faure <billiob AT gmail DOT c... (diff) | |
download | gentoo-2-e0c63c31bf38ce04337090788e1100c386333f7c.tar.gz gentoo-2-e0c63c31bf38ce04337090788e1100c386333f7c.tar.bz2 gentoo-2-e0c63c31bf38ce04337090788e1100c386333f7c.zip |
version bump and remove USE=doc for bug 271660
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'sci-geosciences')
-rw-r--r-- | sci-geosciences/gpsbabel/ChangeLog | 10 | ||||
-rw-r--r-- | sci-geosciences/gpsbabel/gpsbabel-1.4.2.ebuild | 31 |
2 files changed, 39 insertions, 2 deletions
diff --git a/sci-geosciences/gpsbabel/ChangeLog b/sci-geosciences/gpsbabel/ChangeLog index b4c7254324b2..0831def15420 100644 --- a/sci-geosciences/gpsbabel/ChangeLog +++ b/sci-geosciences/gpsbabel/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-geosciences/gpsbabel -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsbabel/ChangeLog,v 1.21 2009/07/10 13:54:10 ssuominen Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsbabel/ChangeLog,v 1.22 2010/11/08 00:59:36 fauli Exp $ + +*gpsbabel-1.4.2 (08 Nov 2010) + + 08 Nov 2010; Christian Faulhammer <fauli@gentoo.org> + +gpsbabel-1.4.2.ebuild: + version bump and remove USE=doc for bug 271660 10 Jul 2009; Samuli Suominen <ssuominen@gentoo.org> gpsbabel-1.3.6.ebuild: Remove dev-util/efence from deps since it's obsolete; doesn't work or diff --git a/sci-geosciences/gpsbabel/gpsbabel-1.4.2.ebuild b/sci-geosciences/gpsbabel/gpsbabel-1.4.2.ebuild new file mode 100644 index 000000000000..53d7c496682d --- /dev/null +++ b/sci-geosciences/gpsbabel/gpsbabel-1.4.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsbabel/gpsbabel-1.4.2.ebuild,v 1.1 2010/11/08 00:59:36 fauli Exp $ + +EAPI=2 + +DESCRIPTION="GPS waypoints, tracks and routes converter" +HOMEPAGE="http://www.gpsbabel.org/" +SRC_URI="mirror://gentoo/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="usb" + +RDEPEND="dev-libs/expat + usb? ( dev-libs/libusb )" +DEPEND="${RDEPEND}" + +src_configure() { + econf $(use_with usb libusb) \ + --with-zlib=system +} + +src_compile() { + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc README* || die +} |