diff options
Diffstat (limited to 'app-emulation/spice/spice-0.7.2.ebuild')
-rw-r--r-- | app-emulation/spice/spice-0.7.2.ebuild | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/app-emulation/spice/spice-0.7.2.ebuild b/app-emulation/spice/spice-0.7.2.ebuild new file mode 100644 index 000000000000..9a701fd9eeaa --- /dev/null +++ b/app-emulation/spice/spice-0.7.2.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice/spice-0.7.2.ebuild,v 1.1 2011/02/05 07:53:04 dev-zero Exp $ + +EAPI=3 + +inherit autotools eutils gnome2-utils + +DESCRIPTION="SPICE server and client." +HOMEPAGE="http://spice-space.org/" +SRC_URI="http://spice-space.org/download/releases/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gnome +gui kde static-libs uri" + +RDEPEND=">=app-emulation/spice-protocol-0.7.0 + >=x11-libs/pixman-0.17.7 + media-libs/alsa-lib + media-libs/celt:0.5.1 + dev-libs/openssl + >=x11-libs/libXrandr-1.2 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXrender + x11-libs/libXfixes + virtual/jpeg + sys-libs/zlib + gui? ( =dev-games/cegui-0.6* ) + uri? ( dev-libs/uriparser + gnome? ( gnome-base/gconf ) )" +DEPEND="dev-util/pkgconfig + ${RDEPEND}" + +# maintainer notes: +# * opengl support is currently broken + +src_prepare() { + if use uri ; then + epatch "${FILESDIR}/0001-Added-initial-connection-url-handling-using-the-urip.patch" + eautoreconf + fi +} + +src_configure() { + local myconf="" + use gui && myconf+="--enable-gui " + econf ${myconf} \ + $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc NEWS TODO + use static-libs || rm "${D}"/usr/lib*/*.la + + if use uri ; then + if use gnome ; then + insinto /etc/gconf/schemas + doins "${FILESDIR}/spice.schemas" + fi + if use kde ; then + insinto /usr/share/kde4/services + doins "${FILESDIR}/spice.protocol" + fi + fi +} + +pkg_preinst() { + use uri && use gnome && gnome2_gconf_savelist +} +pkg_postinst() { + use uri && use gnome && gnome2_gconf_install +} + +pkg_prerm() { + use uri && use gnome && gnome2_gconf_uninstall +} |