moved everything into trunk/ subdirectory, as a preparation for the conversion to git

This commit is contained in:
Manuel Friedli 2014-01-21 13:08:47 +00:00
parent df41424518
commit 52d584b8fb
48 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,3 @@
AUX garmintools-0.10-add-xml-root.patch 419 SHA256 58802fbddf121cc9c2236fac5220895248854e438bee2e43a35b2129ffa7f7a2 SHA512 b61dd12999686905869ad3e32324b3f246fda685d79f4e867b4f10c125a89cca105d295b62f6181099b9f014b3c1f97b2a4a5753fb6688842553d83c129b984d WHIRLPOOL 94a6cdfed71066f580925bce4eccd7615364bc9ee836d286f2f7299ea51f9325de9141cd102f6f26d2be65a459c0d480e692509881bb1496278c6ff8a1bd8d53
DIST garmintools-0.10.tar.gz 396659 SHA256 ffd50b7f963fa9b8ded3223c4786b07906c887ed900de64581a24ff201444cee
EBUILD garmintools-0.10.ebuild 862 SHA256 784ca6e59aa7ea83b43f120e5e46fc95db0e87e93ce2c1b38fb3d1349edf52c6 SHA512 91e5613e7dd0384109bae17e460f3ead3ebfe2c60547a5ce56232b843160aadc65e28f1462bbbf8bda92110092ae87f20ac00d9ce02f30c8eefe17b3ee231a15 WHIRLPOOL 80ac5fb32ad78dd2a03ccfef2350f96941f8a5065d982f2f624d5faf4a940998bf62e7ca074cd8d39571efb97350ffd32e0b8325653557904722f710ca5df623

View file

@ -0,0 +1,17 @@
--- src/garmin_dump.c~ 2007-07-20 13:59:04.000000000 -0400
+++ src/garmin_dump.c 2007-08-27 21:02:04.000000000 -0400
@@ -9,12 +9,14 @@
garmin_data * data;
int i;
+ printf("<data>\n");
for ( i = 1; i < argc; i++ ) {
if ( (data = garmin_load(argv[i])) != NULL ) {
garmin_print_data(data,stdout,0);
garmin_free_data(data);
}
}
+ printf("</data>\n");
return 0;
}

View file

@ -0,0 +1,43 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsbabel/gpsbabel-1.3.3.ebuild,v 1.3 2007/07/18 02:02:04 cryos Exp $
inherit eutils
DESCRIPTION="A Linux interface to the Garmin Forerunner GPS units"
HOMEPAGE="http://code.google.com/p/garmintools/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 amd64"
IUSE="usb"
RDEPEND="usb? ( dev-libs/libusb )"
DEPEND="${RDEPEND}"
src_unpack(){
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PF}-add-xml-root.patch || die "Unable to apply ${PF}-add-xml-root.patch"
}
src_compile() {
local myconf="";
econf ${myconf}
emake || die "emake failed"
}
src_install() {
cd "${S}"
make DESTDIR="${D}" install || die "Install failed"
}
#pkg_postinst(){
#}