diff options
author | Troy Dack <tad@gentoo.org> | 2003-09-08 14:24:06 +0000 |
---|---|---|
committer | Troy Dack <tad@gentoo.org> | 2003-09-08 14:24:06 +0000 |
commit | fa4bcbfd74119ac49fb7dd2e82791aa6669a629a (patch) | |
tree | b97e0036dcd2b44bd3b3a0d43e06eb8c12f3833e /app-pda/synce-multisync_plugin | |
parent | New ebuild. Sync your PDA/phone with a variety of clients (diff) | |
download | gentoo-2-fa4bcbfd74119ac49fb7dd2e82791aa6669a629a.tar.gz gentoo-2-fa4bcbfd74119ac49fb7dd2e82791aa6669a629a.tar.bz2 gentoo-2-fa4bcbfd74119ac49fb7dd2e82791aa6669a629a.zip |
New ebuild. Sync your PDA/phone with a variety of clients
Diffstat (limited to 'app-pda/synce-multisync_plugin')
5 files changed, 49 insertions, 2 deletions
diff --git a/app-pda/synce-multisync_plugin/ChangeLog b/app-pda/synce-multisync_plugin/ChangeLog new file mode 100644 index 000000000000..aec5ce8dc13b --- /dev/null +++ b/app-pda/synce-multisync_plugin/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-pde/synce-multisync_plugin +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-multisync_plugin/ChangeLog,v 1.1 2003/09/08 14:22:25 tad Exp $ + +*synce-multisync_plugin-0.8.2 (09 Sep 2003) + + 09 Sep 2003; Troy Dack <tad@gentoo.org> metadata.xml, + synce-multisync_plugin-0.8.2.ebuild: + New ebuild. Multisync plugin to enable sync'ing with WinCE devices. + diff --git a/app-pda/synce-multisync_plugin/Manifest b/app-pda/synce-multisync_plugin/Manifest index a3b346517e6b..7a2c58669cb6 100644 --- a/app-pda/synce-multisync_plugin/Manifest +++ b/app-pda/synce-multisync_plugin/Manifest @@ -1,4 +1,4 @@ -MD5 81ed52519d864b4a88eef32d3cc5be43 synce-multisync_plugin-0.8.2.ebuild 645 -MD5 fa1bc87d9b211f9b0570daaba1fd8c2f ChangeLog 350 +MD5 931fda900ab3832ce88755e277ff4a61 synce-multisync_plugin-0.8.2.ebuild 771 +MD5 685ace9e76d2cb7afaaca558cc653f73 ChangeLog 450 MD5 f535c81d12e32af4e46be4a1027fed85 metadata.xml 331 MD5 a5f2f9c533a14ab27aa9565e8860f7e8 files/digest-synce-multisync_plugin-0.8.2 80 diff --git a/app-pda/synce-multisync_plugin/files/digest-synce-multisync_plugin-0.8.2 b/app-pda/synce-multisync_plugin/files/digest-synce-multisync_plugin-0.8.2 new file mode 100644 index 000000000000..7c1a9b236a3f --- /dev/null +++ b/app-pda/synce-multisync_plugin/files/digest-synce-multisync_plugin-0.8.2 @@ -0,0 +1 @@ +MD5 4864e6a64d89d5c75df0c4d8d495fbe1 synce-multisync_plugin-0.8.2.tar.gz 269589 diff --git a/app-pda/synce-multisync_plugin/metadata.xml b/app-pda/synce-multisync_plugin/metadata.xml new file mode 100644 index 000000000000..9b75e48b9c93 --- /dev/null +++ b/app-pda/synce-multisync_plugin/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>tad@gentoo.org</email> + <name>Troy Dack</name> +</maintainer> +<longdescription>Multisync plugin to get data from a PDA using synce</longdescription> +</pkgmetadata> diff --git a/app-pda/synce-multisync_plugin/synce-multisync_plugin-0.8.2.ebuild b/app-pda/synce-multisync_plugin/synce-multisync_plugin-0.8.2.ebuild new file mode 100644 index 000000000000..6a2e3f1ba12e --- /dev/null +++ b/app-pda/synce-multisync_plugin/synce-multisync_plugin-0.8.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-multisync_plugin/synce-multisync_plugin-0.8.2.ebuild,v 1.1 2003/09/08 14:22:25 tad Exp $ + +DESCRIPTION="Multisync plugin to synchronize Windows CE devices with computers running GNU/Linux, like MS ActiveSync." +HOMEPAGE="http://sourceforge.net/projects/synce/" +SRC_URI="mirror://sourceforge/synce/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc + >=dev-libs/check-0.8.2 + >=app-pda/synce-libsynce-0.3 + >=app-pda/multisync-0.80" + +src_compile() { + econf -with-multisync-include=/usr/include/multisync + emake || die +} + +src_install() { + make DESTDIR="${D%/}" install || die +} |