summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2004-10-16 17:55:05 +0000
committerAlastair Tse <liquidx@gentoo.org>2004-10-16 17:55:05 +0000
commit676b9bc2f42a05682d1162779d9bfcbd7fb74abe (patch)
tree546f500f0e2b3eb8fb2d4976cfe970b2b125aa0c /app-pda/multisync
parentremoving bluez-sdp dep (diff)
downloadhistorical-676b9bc2f42a05682d1162779d9bfcbd7fb74abe.tar.gz
historical-676b9bc2f42a05682d1162779d9bfcbd7fb74abe.tar.bz2
historical-676b9bc2f42a05682d1162779d9bfcbd7fb74abe.zip
actually, just clean up the old version
Diffstat (limited to 'app-pda/multisync')
-rw-r--r--app-pda/multisync/Manifest2
-rw-r--r--app-pda/multisync/files/digest-multisync-0.81-r11
-rw-r--r--app-pda/multisync/multisync-0.81-r1.ebuild85
3 files changed, 0 insertions, 88 deletions
diff --git a/app-pda/multisync/Manifest b/app-pda/multisync/Manifest
index d694551e815e..5cb1a8991079 100644
--- a/app-pda/multisync/Manifest
+++ b/app-pda/multisync/Manifest
@@ -1,8 +1,6 @@
MD5 8c4dea1443bb290644279848c1beb414 ChangeLog 2807
MD5 8bf6f02e04d1b0ccf382064a2d1ee056 metadata.xml 331
-MD5 144bbbe0ef1c343a7eb598a6ca943eef multisync-0.81-r1.ebuild 2128
MD5 9043b775d6ba194cb58e240c1afb08a9 multisync-0.82.ebuild 2252
-MD5 88fd786cd5f1c92e85f887a3d994639d files/digest-multisync-0.81-r1 68
MD5 94a424df4dc4575edbb2a91c5ff4eaa3 files/digest-multisync-0.82 68
MD5 dd3fe0167fa09a793b91a0115253480f files/multisync-0.80-r1-gentoo.patch 842
MD5 9caf6f63fb6ecf15986fb4752ffd5ffa files/multisync-0.81-gentoo.patch 902
diff --git a/app-pda/multisync/files/digest-multisync-0.81-r1 b/app-pda/multisync/files/digest-multisync-0.81-r1
deleted file mode 100644
index 54ef7c33326b..000000000000
--- a/app-pda/multisync/files/digest-multisync-0.81-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e9091a2a1a364f2afb71149928a26c78 multisync-0.81.tar.bz2 1727892
diff --git a/app-pda/multisync/multisync-0.81-r1.ebuild b/app-pda/multisync/multisync-0.81-r1.ebuild
deleted file mode 100644
index 5b5e7f2eb599..000000000000
--- a/app-pda/multisync/multisync-0.81-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/multisync/multisync-0.81-r1.ebuild,v 1.13 2004/10/16 17:53:14 liquidx Exp $
-
-inherit eutils
-
-DESCRIPTION="Client to sync apps with WinCE or mobile devices"
-HOMEPAGE="http://multisync.sourceforge.net/"
-SRC_URI="mirror://sourceforge/multisync/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ~amd64"
-IUSE="evo irmc opie ldap bluetooth"
-# evo - evolution plugin
-# irmc - bluetooth/irmc/irda plugin ( local )
-# opie - opie plugin ( local )
-# ldap - ldap plugin - experimental
-
-DEPEND="virtual/libc
- >=gnome-base/libbonobo-2.2
- >=gnome-base/libgnomeui-2.2
- >=gnome-base/libgnome-2.2
- >=dev-libs/glib-2
- >=gnome-base/gconf-2
- >=gnome-base/gnome-vfs-2.2
- >=gnome-base/orbit-2.8.2
- >=dev-libs/openssl-0.9.6j
- evo? ( =mail-client/evolution-1.4* )
- irmc? ( >=net-wireless/irda-utils-0.9.15
- >=dev-libs/openobex-1
- bluetooth? ( >=net-wireless/bluez-libs-2.7
- >=net-wireless/bluez-utils-2.7 )
- )
- opie? ( >=net-misc/curl-7.10.5 )
- ldap? ( >=net-nds/openldap-2.0.27
- >=dev-libs/cyrus-sasl-2.1.4 )"
-
-make_plugin_list() {
- export PLUGINS="backup_plugin syncml_plugin"
- use irmc && PLUGINS="${PLUGINS} irmc_sync"
- use evo && PLUGINS="${PLUGINS} evolution_sync"
- use opie && PLUGINS="${PLUGINS} opie_sync"
- use ldap && PLUGINS="${PLUGINS} ldap_plugin"
-}
-
-src_unpack() {
- unpack ${A}
-
- # Fix the opie Makefile
- cd ${S}
- epatch ${FILESDIR}/${P}-gentoo.patch
-}
-
-src_compile() {
- make_plugin_list
-
- einfo "Building Multisync with these plugins:"
- for plugin_dir in ${PLUGINS}
- do
- einfo " ${plugin_dir}"
- done
-
- cd ${S}
- econf || die
- make || die "Multisync make failed"
-
- cd ${S}/plugins
- for plugin_dir in ${PLUGINS}
- do
- cd ${S}/plugins/${plugin_dir}
- econf || die "${plugin_dir} config failed!"
- make || die "${plugin_dir} make failed!"
- done
-}
-
-src_install() {
- make_plugin_list
- einstall || die "Multisync install failed!"
- for plugin_dir in ${PLUGINS}
- do
- cd ${S}/plugins/${plugin_dir}
- einstall || die "${plugin_dir} make failed!"
- done
-}