diff options
-rw-r--r-- | app-pda/synce-gvfs/ChangeLog | 8 | ||||
-rw-r--r-- | app-pda/synce-gvfs/synce-gvfs-0.2.1.ebuild | 17 |
2 files changed, 23 insertions, 2 deletions
diff --git a/app-pda/synce-gvfs/ChangeLog b/app-pda/synce-gvfs/ChangeLog index 59bd67464f98..75e5beb51db4 100644 --- a/app-pda/synce-gvfs/ChangeLog +++ b/app-pda/synce-gvfs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-pda/synce-gvfs # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-gvfs/ChangeLog,v 1.5 2009/01/24 12:43:03 mescalinum Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-gvfs/ChangeLog,v 1.6 2009/01/27 02:08:12 mescalinum Exp $ + + 27 Jan 2009; Federico Ferri <mescalinum@gentoo.org> + synce-gvfs-0.2.1.ebuild: + switch back to external gnome/gvfs tarball, which allows to build synce-gvfs + against a arbitrary gvfs version rather than the shipped one. (this has to + continue until gvfs becomes a public api) 24 Jan 2009; Federico Ferri <mescalinum@gentoo.org> synce-gvfs-0.1-r1.ebuild, synce-gvfs-0.2.1.ebuild: diff --git a/app-pda/synce-gvfs/synce-gvfs-0.2.1.ebuild b/app-pda/synce-gvfs/synce-gvfs-0.2.1.ebuild index d43b9eb92ad6..e621d3ea0777 100644 --- a/app-pda/synce-gvfs/synce-gvfs-0.2.1.ebuild +++ b/app-pda/synce-gvfs/synce-gvfs-0.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-gvfs/synce-gvfs-0.2.1.ebuild,v 1.4 2009/01/25 05:22:49 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-gvfs/synce-gvfs-0.2.1.ebuild,v 1.5 2009/01/27 02:08:12 mescalinum Exp $ inherit gnome2 @@ -29,6 +29,21 @@ DEPEND="dev-util/gtk-doc RESTRICT="test" +src_unpack() { + unpack ${A} + cd "${S}" + # option --with-gvfs-source wants a *relative* path + # see "help packaging synce-gvfs and gnome-gvfs" on + # synce-devel list + ln -s "$gvfs_S" ./gvfs-src-tree +} + +src_compile() { + econf --with-gvfs-source=./gvfs-src-tree || die "configure failed" + emake dist || die "emake dist failed" + emake || die "compile failed" +} + src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README |