# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86" DESCRIPTION="multisync: GUI and cmd tool for opensync" SRC_URI="mirror://sourceforge/opensync/${P}.tar.gz" HOMEPAGE="http://www.opensync.org/" IUSE="plugin-file plugin-python gui" DEPEND="${RDEPEND}" RDEPEND=">dev-libs/glib-2.0 app-pda/libopensync plugin-file? ( app-pda/libopensync-plugin-file ) plugin-python? ( app-pda/libopensync-plugin-python )" src_compile() { if use gui; then cd ${S}/gui econf emake fi cd ${S} econf emake } src_install() { if use gui; then cd ${S}/gui make install DESTDIR=${D} fi cd ${S} make install DESTDIR=${D} dodoc README AUTHORS }