diff options
-rw-r--r-- | app-pda/synce-kio-rapip/ChangeLog | 11 | ||||
-rw-r--r-- | app-pda/synce-kio-rapip/Manifest | 4 | ||||
-rw-r--r-- | app-pda/synce-kio-rapip/metadata.xml | 8 | ||||
-rw-r--r-- | app-pda/synce-kio-rapip/synce-kio-rapip-0.10.ebuild | 40 |
4 files changed, 63 insertions, 0 deletions
diff --git a/app-pda/synce-kio-rapip/ChangeLog b/app-pda/synce-kio-rapip/ChangeLog new file mode 100644 index 000000000000..bfcb41d38b39 --- /dev/null +++ b/app-pda/synce-kio-rapip/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-pda/synce-kio-rapip +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-kio-rapip/ChangeLog,v 1.1 2008/11/13 00:07:29 mescalinum Exp $ + +*synce-kio-rapip-0.10 (13 Nov 2008) + + 13 Nov 2008; Federico Ferri <mescalinum@gentoo.org> +metadata.xml, + +synce-kio-rapip-0.10.ebuild: + getting synce-0.12 into tree. ebuild coming from synce overlay, reviewed + and tested. + diff --git a/app-pda/synce-kio-rapip/Manifest b/app-pda/synce-kio-rapip/Manifest new file mode 100644 index 000000000000..8423b1c1d057 --- /dev/null +++ b/app-pda/synce-kio-rapip/Manifest @@ -0,0 +1,4 @@ +DIST synce-kio-rapip-0.10.tar.gz 880248 RMD160 7dbb07d5499a303a56288642fbed4918bdd7e875 SHA1 d871feae51a136fe6ac9700ad8978c2390bfbc51 SHA256 b6db3ca3d3ee70b219ba49eebdd9fd514e9631e0e106db7a63a0ab00552c484b +EBUILD synce-kio-rapip-0.10.ebuild 987 RMD160 ea2cd4449326b2048f23362cfd75aaed8620425a SHA1 d27e06e7075b7af49c587672c15fb955007ed3bb SHA256 e1b6c27cc9ebfdd42f0291373148187aa8b0741387f5567263de5e1488fab1b7 +MISC ChangeLog 352 RMD160 aa429f1832ac978487cf09fa46f4c80ca58cf636 SHA1 56cee06e3276b82e0df8e5314bd5a0924ce4673c SHA256 5d06bcedec73c992772c7a62493a1db9bce4cbc9e39cbd968d1f7f82b9cdcebd +MISC metadata.xml 235 RMD160 91bf43961b0f4e443be03370544d605eff8d7789 SHA1 273b9ac5e1912f4f1c85bb749e9453cbf5c6f297 SHA256 d0221052de2a755b076a5cb24f235eab6323f8955498e54d87f437f8b2ad6b4f diff --git a/app-pda/synce-kio-rapip/metadata.xml b/app-pda/synce-kio-rapip/metadata.xml new file mode 100644 index 000000000000..ddf982f856a0 --- /dev/null +++ b/app-pda/synce-kio-rapip/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>pda</herd> +<longdescription> +KDE kioslave for the SynCE RAPIP protocol +</longdescription> +</pkgmetadata> diff --git a/app-pda/synce-kio-rapip/synce-kio-rapip-0.10.ebuild b/app-pda/synce-kio-rapip/synce-kio-rapip-0.10.ebuild new file mode 100644 index 000000000000..d17fffe2aaf4 --- /dev/null +++ b/app-pda/synce-kio-rapip/synce-kio-rapip-0.10.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-kio-rapip/synce-kio-rapip-0.10.ebuild,v 1.1 2008/11/13 00:07:29 mescalinum Exp $ + +inherit eutils distutils + +DESCRIPTION="SynCE - KDE kioslave for the SynCE RAPIP protocol" +HOMEPAGE="http://sourceforge.net/projects/synce/" +LICENSE="MIT" + +IUSE="arts" +SLOT="0" +KEYWORDS="~x86 ~amd64" +RDEPEND="~app-pda/synce-libsynce-0.12 + ~app-pda/synce-librapi2-0.12" +DEPEND="${RDEPEND} + arts? ( kde-base/arts )" + +#need-kde 3.2 + +SRC_URI="mirror://sourceforge/synce/${P}.tar.gz" + +S="${WORKDIR}/synce-kio-rapip-${PV}" + +src_compile() { + econf $(use_with arts) || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc README TODO ChangeLog +} + +pkg_postinst() { + einfo "To use, simply open Konqueror, Dolphin, or any other KIO-enabled file" + einfo "manager and type in rapip://DEVICENAME/ to the address bar. If you are" + einfo "not sure about the name of your device, simply go to rapip:/ which" + einfo "will show the first device it finds." +} |