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

@ -1,2 +0,0 @@
DIST garminplugin-0.3.20.tar.gz 162039 SHA256 6810d48cc2fc7ab6159f4abf63990ab09c6c2eebc5f5914459427639195111a7 SHA512 2158dce9b1e7bf846515930221dec27af67241d454fe4884ac4bea2cc104914b026716e1e5cc727ddf4b6a84e6ccf5047ebafafb6e35b659fd133b4b04f48cf8 WHIRLPOOL 915a7cffc77c51720811fa3f3d50e7192245cc16095999ac54958dcc176e7156fcca73d4685b09a0c0eeb1a53301aefb5eb6ccb0463bd9ce281169b5646ff560
EBUILD garminplugin-0.3.20.ebuild 949 SHA256 87c18419e428965924ddcdfbd69e258abc97ac853b6ccd52bf88f70934ad9c31 SHA512 c2c8ce3fb1259f32f9bd58f1d0952cb1f2ee34c33a64c15dc0011d1c2f404b4dd5168396c93cfefeca9a3ddd17487c9f215db12130a1fa4143a519a01a259ef0 WHIRLPOOL 218c4844df695a5f5edcf4f530991aca5c8e2767875e5a662d87439f50c1c0f84ad4be3e708e15c029b101ce0db73403265e2f3983b9c303185118d162a0b9f9

View file

@ -1,43 +0,0 @@
# Copyright 2011 Christian Wasserthal
# Distributed under the terms of the GNU General Public License v2
EAPI="2"
inherit eutils
DESCRIPTION="A free replacement for the Garmin browser plugin"
HOMEPAGE="http://www.andreas-diesner.de/garminplugin/"
SRC_URI="http://github.com/adiesner/GarminPlugin/tarball/V${PV} -> ${P}.tar.gz"
MY_S="adiesner-GarminPlugin-ee0849f"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86 amd64"
RDEPEND="sci-geosciences/garmintools
sci-geosciences/gpsbabel
dev-libs/tinyxml[stl]
dev-libs/libusb"
DEPEND="${RDEPEND}"
#src_unpack(){
# tar -zxf "${DISTDIR}/${A}" || die "unpack failed"
#}
src_configure() {
cd "${MY_S}/src" || die "barf"
econf || die "econf failed"
}
src_compile() {
cd "${MY_S}/src" || die "barf"
emake || die "emake failed"
}
src_install() {
mkdir -p "${D}/usr/lib/nsbrowser/plugins" || die "mkdir failed"
cp "${MY_S}/src/npGarminPlugin.so" "${D}/usr/lib/nsbrowser/plugins/" || die "cp failed"
}

View file

@ -1,3 +0,0 @@
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

@ -1,17 +0,0 @@
--- 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

@ -1,43 +0,0 @@
# 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(){
#}