diff options
author | Federico Ferri <mescalinum@gentoo.org> | 2008-11-13 06:18:49 +0000 |
---|---|---|
committer | Federico Ferri <mescalinum@gentoo.org> | 2008-11-13 06:18:49 +0000 |
commit | 459bfbc00e142a0d3d41e81ac2d5944fbf139feb (patch) | |
tree | d8ab85a284801164075142931bcb146092695266 /app-pda/synce-gnomevfs | |
parent | amd64 stable, bug 245178 (diff) | |
download | historical-459bfbc00e142a0d3d41e81ac2d5944fbf139feb.tar.gz historical-459bfbc00e142a0d3d41e81ac2d5944fbf139feb.tar.bz2 historical-459bfbc00e142a0d3d41e81ac2d5944fbf139feb.zip |
getting synce-0.12 into tree. ebuild coming from synce overlay, reviewed and tested.
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'app-pda/synce-gnomevfs')
-rw-r--r-- | app-pda/synce-gnomevfs/ChangeLog | 10 | ||||
-rw-r--r-- | app-pda/synce-gnomevfs/synce-gnomevfs-0.11.1.ebuild | 21 | ||||
-rw-r--r-- | app-pda/synce-gnomevfs/synce-gnomevfs-0.12.ebuild | 26 |
3 files changed, 56 insertions, 1 deletions
diff --git a/app-pda/synce-gnomevfs/ChangeLog b/app-pda/synce-gnomevfs/ChangeLog index 7f81cb345f79..3b609260300d 100644 --- a/app-pda/synce-gnomevfs/ChangeLog +++ b/app-pda/synce-gnomevfs/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-pda/synce-gnomevfs # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-gnomevfs/ChangeLog,v 1.14 2008/02/10 16:25:42 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-gnomevfs/ChangeLog,v 1.15 2008/11/13 06:13:12 mescalinum Exp $ + +*synce-gnomevfs-0.12 (13 Nov 2008) +*synce-gnomevfs-0.11.1 (13 Nov 2008) + + 13 Nov 2008; Federico Ferri <mescalinum@gentoo.org> + +synce-gnomevfs-0.11.1.ebuild, +synce-gnomevfs-0.12.ebuild: + getting synce-0.12 into tree. ebuild coming from synce overlay, reviewed + and tested. 10 Feb 2008; Wulf C. Krueger <philantrop@gentoo.org> synce-gnomevfs-0.9.0.ebuild: diff --git a/app-pda/synce-gnomevfs/synce-gnomevfs-0.11.1.ebuild b/app-pda/synce-gnomevfs/synce-gnomevfs-0.11.1.ebuild new file mode 100644 index 000000000000..c6c860323c5a --- /dev/null +++ b/app-pda/synce-gnomevfs/synce-gnomevfs-0.11.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-gnomevfs/synce-gnomevfs-0.11.1.ebuild,v 1.1 2008/11/13 06:13:12 mescalinum Exp $ + +DESCRIPTION="SynCE - Gnome VFS extensions" +HOMEPAGE="http://sourceforge.net/projects/synce/" +LICENSE="MIT" + +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" +DEPEND=">=gnome-base/gnome-vfs-2.0 + ~app-pda/synce-libsynce-0.11.1 + ~app-pda/synce-librapi2-0.11.1" + +SRC_URI="mirror://sourceforge/synce/${P}.tar.gz" + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README TODO +} diff --git a/app-pda/synce-gnomevfs/synce-gnomevfs-0.12.ebuild b/app-pda/synce-gnomevfs/synce-gnomevfs-0.12.ebuild new file mode 100644 index 000000000000..5ee2437b0b94 --- /dev/null +++ b/app-pda/synce-gnomevfs/synce-gnomevfs-0.12.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-gnomevfs/synce-gnomevfs-0.12.ebuild,v 1.1 2008/11/13 06:13:12 mescalinum Exp $ + +DESCRIPTION="SynCE - Gnome VFS extensions" +HOMEPAGE="http://sourceforge.net/projects/synce/" +LICENSE="MIT" + +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="debug" +DEPEND=">=gnome-base/gnome-vfs-2.0 + ~app-pda/synce-libsynce-0.12 + ~app-pda/synce-librapi2-0.12" + +SRC_URI="mirror://sourceforge/synce/${P}.tar.gz" + +src_compile() { + econf $(use_with debug verbose-debug) || die "Configure failed!" + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README TODO +} |