diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-08-30 09:07:56 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-08-30 09:07:56 +0000 |
commit | 6cff37d33938a0469eb69a1a4d7b0b7d72409ffa (patch) | |
tree | 77a86caebf58c166129841e4ffa4a75de25648e3 /app-pda/coldsync | |
parent | Enable embed SAPI. (diff) | |
download | gentoo-2-6cff37d33938a0469eb69a1a4d7b0b7d72409ffa.tar.gz gentoo-2-6cff37d33938a0469eb69a1a4d7b0b7d72409ffa.tar.bz2 gentoo-2-6cff37d33938a0469eb69a1a4d7b0b7d72409ffa.zip |
moving dev-libs/coldsync to app-pda/coldsync
Diffstat (limited to 'app-pda/coldsync')
-rw-r--r-- | app-pda/coldsync/ChangeLog | 26 | ||||
-rw-r--r-- | app-pda/coldsync/Manifest | 6 | ||||
-rw-r--r-- | app-pda/coldsync/coldsync-2.2.5-r1.ebuild | 39 | ||||
-rw-r--r-- | app-pda/coldsync/coldsync-2.2.5.ebuild | 33 | ||||
-rw-r--r-- | app-pda/coldsync/files/coldsync-2.2.5-gcc3.diff | 10 | ||||
-rw-r--r-- | app-pda/coldsync/files/digest-coldsync-2.2.5 | 1 | ||||
-rw-r--r-- | app-pda/coldsync/files/digest-coldsync-2.2.5-r1 | 1 |
7 files changed, 116 insertions, 0 deletions
diff --git a/app-pda/coldsync/ChangeLog b/app-pda/coldsync/ChangeLog new file mode 100644 index 000000000000..2b193d6d3e28 --- /dev/null +++ b/app-pda/coldsync/ChangeLog @@ -0,0 +1,26 @@ +# ChangeLog for dev-libs/coldsync +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/coldsync/ChangeLog,v 1.1 2003/08/30 09:04:05 liquidx Exp $ + +*coldsync-2.2.5 (30 Aug 2003) + + 30 Aug 2003; Alastair Tse <liquidx@gentoo.org> coldsync-2.2.5-r1.ebuild, + coldsync-2.2.5.ebuild, files/coldsync-2.2.5-gcc3.diff: + moving from dev-libs/coldsync to app-pda/coldsync + + 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords + +*coldsync-2.2.5-r1 (15 Aug 2002) + + 11 Oct 2002; <mcummings@gentoo.org> : Added man path directives to make - + fixes bug 8536 + + 15 Aug 2002; Matthew Turk <satai@gentoo.org> ChangeLog : + + Bumped revision after fixing compile on GCC 3.1. Closing bug 5750. + +*coldsync-2.2.5 (27 May 2002) + + 27 May 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Initial checkin of this package. diff --git a/app-pda/coldsync/Manifest b/app-pda/coldsync/Manifest new file mode 100644 index 000000000000..ff689e41a5ff --- /dev/null +++ b/app-pda/coldsync/Manifest @@ -0,0 +1,6 @@ +MD5 922ff0d8a381a2f1e892172dbcabdcde ChangeLog 907 +MD5 d179146e4455faaf555772c19c286365 coldsync-2.2.5-r1.ebuild 1169 +MD5 5ed68369ba8f13a8344d8ff5b070e71a coldsync-2.2.5.ebuild 967 +MD5 cc3ae92d1eed6d972a772c1682c1a1c9 files/coldsync-2.2.5-gcc3.diff 308 +MD5 04ecb777d14c4aa748b305fa0d64adea files/digest-coldsync-2.2.5 66 +MD5 04ecb777d14c4aa748b305fa0d64adea files/digest-coldsync-2.2.5-r1 66 diff --git a/app-pda/coldsync/coldsync-2.2.5-r1.ebuild b/app-pda/coldsync/coldsync-2.2.5-r1.ebuild new file mode 100644 index 000000000000..fff23c040860 --- /dev/null +++ b/app-pda/coldsync/coldsync-2.2.5-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/coldsync/coldsync-2.2.5-r1.ebuild,v 1.1 2003/08/30 09:04:05 liquidx Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A command-line tool to synchronize PalmOS PDAs with Unix workstations" +SRC_URI="http://www.coldsync.org/download/${P}.tar.gz" +HOMEPAGE="http://www.coldsync.org/" + +SLOT="0" +LICENSE="Artistic" +KEYWORDS="x86 sparc " + +src_compile() { + cd ${S} + local myconf + use nls || myconf="${myconf} --without-i18n" + use perl || myconf="${myconf} --without-perl" + + patch -p1 < ${FILESDIR}/coldsync-2.2.5-gcc3.diff + + econf ${myconf} || die "configuring coldsync failed" + make || die "couldn't make coldsync" +} + +src_install() { + make \ + PREFIX=${D}/usr \ + MANDIR=${D}/usr/share/man \ + SYSCONFDIR=${D}/etc \ + DATADIR=${D}/usr/share \ + INFODIR=${D}/usr/share/info \ + INSTALLMAN3DIR=${D}/usr/share/man/man3 \ + INSTALLSITEMAN3DIR=${D}/usr/share/man/man3 \ + INSTALLVENDORMAN3DIR=${D}/usr/share/man/man3 \ + install || die "couldn't install coldsync" + + dodoc AUTHORS Artistic ChangeLog HACKING INSTALL NEWS README TODO +} diff --git a/app-pda/coldsync/coldsync-2.2.5.ebuild b/app-pda/coldsync/coldsync-2.2.5.ebuild new file mode 100644 index 000000000000..327152f003de --- /dev/null +++ b/app-pda/coldsync/coldsync-2.2.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/coldsync/coldsync-2.2.5.ebuild,v 1.1 2003/08/30 09:04:05 liquidx Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A command-line tool to synchronize PalmOS PDAs with Unix workstations" +SRC_URI="http://www.coldsync.org/download/${P}.tar.gz" +HOMEPAGE="http://www.coldsync.org/" + +SLOT="0" +LICENSE="Artistic" +KEYWORDS="x86 sparc " + +src_compile() { + local myconf + use nls || myconf="${myconf} --without-i18n" + use perl || myconf="${myconf} --without-perl" + + econf ${myconf} || die "configuring coldsync failed" + make || die "couldn't make coldsync" +} + +src_install() { + make \ + PREFIX=${D}/usr \ + MANDIR=${D}/usr/share/man \ + SYSCONFDIR=${D}/etc \ + DATADIR=${D}/usr/share \ + INFODIR=${D}/usr/share/info \ + install || die "couldn't install coldsync" + + dodoc AUTHORS Artistic ChangeLog HACKING INSTALL NEWS README TODO +} diff --git a/app-pda/coldsync/files/coldsync-2.2.5-gcc3.diff b/app-pda/coldsync/files/coldsync-2.2.5-gcc3.diff new file mode 100644 index 000000000000..1112c6c5caf9 --- /dev/null +++ b/app-pda/coldsync/files/coldsync-2.2.5-gcc3.diff @@ -0,0 +1,10 @@ +--- coldsync-2.2.5/src/symboltable.cc-orig Mon Aug 12 12:32:56 2002 ++++ coldsync-2.2.5/src/symboltable.cc Mon Aug 12 12:32:25 2002 +@@ -7,6 +7,7 @@ + * $Id: coldsync-2.2.5-gcc3.diff,v 1.1 2003/08/30 09:04:05 liquidx Exp $ + */ + ++using namespace std; + #include "config.h" + #include <string> + #include <map> diff --git a/app-pda/coldsync/files/digest-coldsync-2.2.5 b/app-pda/coldsync/files/digest-coldsync-2.2.5 new file mode 100644 index 000000000000..73055c37fa32 --- /dev/null +++ b/app-pda/coldsync/files/digest-coldsync-2.2.5 @@ -0,0 +1 @@ +MD5 cba1d751a51d50a1983a7e0245820099 coldsync-2.2.5.tar.gz 663307 diff --git a/app-pda/coldsync/files/digest-coldsync-2.2.5-r1 b/app-pda/coldsync/files/digest-coldsync-2.2.5-r1 new file mode 100644 index 000000000000..73055c37fa32 --- /dev/null +++ b/app-pda/coldsync/files/digest-coldsync-2.2.5-r1 @@ -0,0 +1 @@ +MD5 cba1d751a51d50a1983a7e0245820099 coldsync-2.2.5.tar.gz 663307 |