summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-admin/conky/Manifest1
-rw-r--r--app-admin/conky/conky-9999.ebuild142
-rw-r--r--app-admin/ulogd/Manifest9
l---------app-admin/ulogd/files1
-rw-r--r--app-admin/ulogd/ulogd-2.0.0_beta3.ebuild76
-rw-r--r--app-admin/ulogd/ulogd-9999.ebuild88
-rw-r--r--app-arch/lrzip/lrzip-0.603.ebuild23
-rw-r--r--app-emulation/playonlinux/playonlinux-9999.ebuild108
-rw-r--r--app-emulation/spice-protocol/spice-protocol-9999.ebuild24
-rw-r--r--app-emulation/spice/spice-9999.ebuild91
10 files changed, 0 insertions, 563 deletions
diff --git a/app-admin/conky/Manifest b/app-admin/conky/Manifest
deleted file mode 100644
index 1ac7dae..0000000
--- a/app-admin/conky/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-EBUILD conky-9999.ebuild 3854 RMD160 c138e8cea44af746c055d0169d463df8dbd95225 SHA1 9ab3d37ea0f4434c343403074bed5c896c836fd0 SHA256 b67e77f38d91d74fcc7bfad7e6a0eb7c861f6af370144d5170cfe3cdb80c3df2
diff --git a/app-admin/conky/conky-9999.ebuild b/app-admin/conky/conky-9999.ebuild
deleted file mode 100644
index a3d35f3..0000000
--- a/app-admin/conky/conky-9999.ebuild
+++ /dev/null
@@ -1,142 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/conky/conky-1.6.2_pre1355.ebuild,v 1.1 2009/01/01 03:46:14 omp Exp $
-
-inherit eutils git
-# used for epause
-
-DESCRIPTION="An advanced, highly configurable system monitor for X"
-HOMEPAGE="http://conky.sourceforge.net/"
-SRC_URI=""
-
-EGIT_REPO_URI="git://git.omp.am/conky.git"
-EGIT_BOOTSTRAP="./autogen.sh"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="audacious bmpx debug hddtemp ipv6 moc mpd nano-syntax nvidia rss truetype vim-syntax smapi wifi X"
-
-DEPEND_COMMON="
- virtual/libc
- X? (
- x11-libs/libICE
- x11-libs/libXext
- x11-libs/libX11
- x11-libs/libSM
- x11-libs/libXrender
- x11-libs/libXdamage
- x11-libs/libXft
- truetype? ( >=media-libs/freetype-2 )
- audacious? ( >=media-sound/audacious-1.4.0 )
- bmpx? ( media-sound/bmpx
- >=sys-apps/dbus-0.35
- )
- )
- rss? ( dev-libs/libxml2
- net-misc/curl
- )
- wifi? ( net-wireless/wireless-tools )
- nvidia? ( media-video/nvidia-settings )
- !ipv6? ( >=dev-libs/glib-2.0 )"
-RDEPEND="${DEPEND_COMMON}
- hddtemp? ( app-admin/hddtemp )
- vim-syntax? ( || ( app-editors/vim
- app-editors/gvim ) )
- nano-syntax? ( app-editors/nano )"
-DEPEND="
- ${DEPEND_COMMON}
- dev-util/pkgconfig
- X? (
- x11-libs/libXt
- x11-proto/xextproto
- x11-proto/xproto
- )"
-
-pkg_setup() {
- if use audacious; then
- if has_version '<media-sound/audacious-1.5.0' && ! built_with_use media-sound/audacious dbus; then
- eerror "media-sound/audacious is not built with dbus USE flag."
- eerror "Please add 'dbus' to your USE flags, and re-emerge media-sound/audacious."
- die "media-sound/audacious needs USE=dbus"
- fi
- fi
-}
-
-src_unpack() {
- git_src_unpack
- cd "${S}"
-}
-
-src_compile() {
- local mymake
- if useq ipv6 ; then
- ewarn "You have the ipv6 USE flag enabled. Please note that using"
- ewarn "the ipv6 USE flag with Conky disables the port monitor."
- epause
- else
- mymake="MPD_NO_IPV6=noipv6"
- fi
- local myconf
- myconf="--enable-proc-uptime"
- if useq X; then
- myconf="${myconf} --enable-x11 --enable-double-buffer --enable-xdamage --enable-own-window"
- myconf="${myconf} $(use_enable truetype xft)"
- else
- myconf="${myconf} --disable-x11 --disable-double-buffer --disable-xdamage --disable-own-window"
- myconf="${myconf} --disable-xft"
- fi
- econf \
- ${myconf} \
- $(use_enable audacious) \
- $(use_enable bmpx) \
- $(use_enable debug) \
- $(use_enable hddtemp ) \
- $(use_enable moc) \
- $(use_enable mpd) \
- $(use_enable nvidia) \
- $(use_enable rss) \
- $(use_enable smapi) \
- $(use_enable wifi wlan) \
- $(use_enable !ipv6 portmon) || die "econf failed"
- emake ${mymake} || die "compile failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc ChangeLog AUTHORS README
- dohtml doc/docs.html doc/config_settings.html doc/variables.html
-
- if use vim-syntax; then
- insinto /usr/share/vim/vimfiles/ftdetect
- doins "${S}"/extras/vim/ftdetect/conkyrc.vim
-
- insinto /usr/share/vim/vimfiles/syntax
- doins "${S}"/extras/vim/syntax/conkyrc.vim
- fi
-
- if use nano-syntax; then
- insinto /usr/share/nano/
- doins "${S}"/extras/nano/conky.nanorc
- fi
-}
-
-pkg_postinst() {
- elog "You can find the sample configuration file at"
- elog "/etc/conky/conky.conf. To customize it, copy"
- elog "/etc/conky/conky.conf to ~/.conkyrc and edit"
- elog "it to your liking."
- elog
- elog "For more info on Conky's new features,"
- elog "please look at the README and ChangeLog:"
- elog "/usr/share/doc/${PF}/README.bz2"
- elog "/usr/share/doc/${PF}/ChangeLog.bz2"
- elog "There are also pretty html docs available"
- elog "on Conky's site or in /usr/share/doc/${PF}"
- elog
- elog "Also see http://www.gentoo.org/doc/en/conky-howto.xml"
- elog
- elog "Vim syntax highlighting for conkyrc now enabled with"
- elog "USE=vim-syntax, for Nano with USE=nano-syntax"
- elog
-}
diff --git a/app-admin/ulogd/Manifest b/app-admin/ulogd/Manifest
deleted file mode 100644
index c9c9363..0000000
--- a/app-admin/ulogd/Manifest
+++ /dev/null
@@ -1,9 +0,0 @@
-AUX configure-fixes.patch 1519 RMD160 b877e8e91d297f3a2c7ffe62ac12216d9febec16 SHA1 ddebd675545dd17ee2d4265cd2381313009cc3ed SHA256 e29b46964f815bf8b30f1dd9a84e32e3d11cb2e28878bea26315f42d9f0b6495
-AUX ulogd 744 RMD160 9ed4cb7f7b9defb34437fbd83ad417964b2b14e0 SHA1 38021198683944468f14c70228980314a1379151 SHA256 61185f9136ecf1a5a0fb5bafcaf156202c4581cda8ee1b9d1bde7dbd477988f8
-AUX ulogd-0.98 681 RMD160 fa4a7448519339d561a2ab958e8d52a460bca023 SHA1 21a1fdebc687d010a3d1a83248c3cf43b04a5dbc SHA256 ee598c0de45e4af05ec459902a9f13fa607c9df158ff52ef393c86e99ec9285b
-AUX ulogd-1.23-configure.in.patch 5492 RMD160 384bbb05caf442b548a4e3cbcdf8d519b9662b6d SHA1 a846210aefcbef62365b468b683c1b656c03b0ab SHA256 dad86f7824724acd4d240c2329a6632bb1f20f75f99ba6c8fcc408eb29af51ed
-AUX ulogd-1.23-gcc41.patch 848 RMD160 40c38db24ef5917794b4994f8b86db344c6f9eb9 SHA1 b031edf49d329cdaf9209dcd2b902b89789a5002 SHA256 9453360a7c1e189df892e87f0f553a156eaea462641ade3e5db328c5fd208819
-AUX ulogd-1.24-syslog-and-logrotate.patch 1230 RMD160 aa3b749901eade2cced5af8bd41176f40446b37a SHA1 30c9b17441ede48645f4093748a69c06e4ff1775 SHA256 315730b76ef2662620055bbb25de7865ca2242106a60222abee307710d3e50a2
-DIST ulogd-2.0.0beta3.tar.bz2 344509 RMD160 51554074ef7646e0e3f3ce0b0b9af360ec718738 SHA1 85593f8b1897dca6e8787f62d963bb28579fbc6b SHA256 ad5f6e48c44e237e311bdbea0e63a06da2a046725c8795e99e2257f50e911e55
-EBUILD ulogd-2.0.0_beta3.ebuild 1803 RMD160 a7a294100a92e3fc0aa990db9b4c5c9a86080262 SHA1 db9f2bd723903ae5e4efb0aed89c7f35e7508861 SHA256 50c0112b613b111c7ec5ea857d795b7e44998a3aa980946b12f9ff2260265690
-EBUILD ulogd-9999.ebuild 1947 RMD160 6c2f7b5b4c120c2adf1a082fe68e9e9e549d98f4 SHA1 ba7ae9b30b0353f03b6fb9195f0015a959314d98 SHA256 dc34f22217fc35a15c47514780169aefb2edb44a9b37a07dad6ed21067506329
diff --git a/app-admin/ulogd/files b/app-admin/ulogd/files
deleted file mode 120000
index 97c8fd0..0000000
--- a/app-admin/ulogd/files
+++ /dev/null
@@ -1 +0,0 @@
-/usr/portage/app-admin/ulogd/files \ No newline at end of file
diff --git a/app-admin/ulogd/ulogd-2.0.0_beta3.ebuild b/app-admin/ulogd/ulogd-2.0.0_beta3.ebuild
deleted file mode 100644
index fb60d25..0000000
--- a/app-admin/ulogd/ulogd-2.0.0_beta3.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ulogd-2.0.0_beta2.ebuild,v 1.2 2009/02/09 09:36:03 angelos Exp $
-
-EAPI="1"
-
-MY_P=${P/_/}
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="A userspace logging daemon for netfilter/iptables related logging"
-HOMEPAGE="http://netfilter.org/projects/ulogd/index.html"
-SRC_URI="http://ftp.netfilter.org/pub/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="mysql postgres sqlite3 pcap doc"
-
-RDEPEND="net-firewall/iptables
- net-libs/libnfnetlink
- net-libs/libnetfilter_log
- net-libs/libnetfilter_conntrack
- mysql? ( virtual/mysql )
- postgres? ( virtual/postgresql-server )
- sqlite3? ( dev-db/sqlite:3 )
- pcap? ( net-libs/libpcap )"
-
-DEPEND="${RDEPEND}
- sys-devel/autoconf:2.5
- doc? (
- app-text/linuxdoc-tools
- app-text/texlive-core
- )"
-
-src_compile() {
- econf \
- $(use_with mysql) \
- $(use_with postgres pgsql) \
- $(use_with sqlite3) \
- $(use_with pcap)
-
- emake || die "emake failed"
-
- if use doc ; then
- # build extra documentation files (.ps, .txt, .html, .dvi)
- emake -C doc || die "emake for docs failed"
- fi
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "emake install failed"
-
- doinitd "${FILESDIR}"/ulogd || die "doinitd failed"
-
- insinto /etc
- doins ulogd.conf || die "ulogd.conf installation failed"
-
- dodoc AUTHORS README
-
- if use doc ; then
- dohtml doc/ulogd.html
- dodoc doc/ulogd.dvi
- dodoc doc/ulogd.txt
- dodoc doc/ulogd.ps
- fi
-
- use mysql && dodoc doc/mysql-ulogd2.sql
- use postgres && dodoc doc/pgsql-ulogd2.sql
- use sqlite3 && dodoc doc/sqlite3.table
-
- # install logrotate config
- insinto /etc/logrotate.d
- newins ulogd.logrotate ulogd || die "logrotate config failed"
-
- doman ulogd.8 || die
-}
diff --git a/app-admin/ulogd/ulogd-9999.ebuild b/app-admin/ulogd/ulogd-9999.ebuild
deleted file mode 100644
index 197fc80..0000000
--- a/app-admin/ulogd/ulogd-9999.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ulogd-2.0.0_beta2.ebuild,v 1.2 2009/02/09 09:36:03 angelos Exp $
-
-inherit git
-
-EAPI="1"
-
-MY_P=${P/_/}
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="A userspace logging daemon for netfilter/iptables related logging"
-HOMEPAGE="http://netfilter.org/projects/ulogd/index.html"
-SRC_URI=""
-
-EGIT_REPO_URI="git://git.netfilter.org/ulogd2.git"
-EGIT_STORE_DIR="${DISTDIR}/git-src"
-EGIT_PROJECT="${PN/-GIT}"
-EGIT_BOOTSTRAP="./autogen.sh"
-
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="mysql postgres sqlite3 pcap doc"
-
-RDEPEND="net-firewall/iptables
- net-libs/libnfnetlink
- net-libs/libnetfilter_log
- net-libs/libnetfilter_conntrack
- mysql? ( virtual/mysql )
- postgres? ( virtual/postgresql-server )
- sqlite3? ( dev-db/sqlite:3 )
- pcap? ( net-libs/libpcap )"
-
-DEPEND="${RDEPEND}
- sys-devel/autoconf:2.5
- doc? (
- app-text/linuxdoc-tools
- app-text/texlive-core
- )"
-
-src_unpack(){
- git_src_unpack
-}
-
-src_compile() {
- econf \
- $(use_with mysql) \
- $(use_with postgres pgsql) \
- $(use_with sqlite3) \
- $(use_with pcap)
-
- emake || die "emake failed"
-
- if use doc ; then
- # build extra documentation files (.ps, .txt, .html, .dvi)
- emake -C doc || die "emake for docs failed"
- fi
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "emake install failed"
-
- doinitd "${FILESDIR}"/ulogd || die "doinitd failed"
-
- insinto /etc
- doins ulogd.conf || die "ulogd.conf installation failed"
-
- dodoc AUTHORS README
-
- if use doc ; then
- dohtml doc/ulogd.html
- dodoc doc/ulogd.dvi
- dodoc doc/ulogd.txt
- dodoc doc/ulogd.ps
- fi
-
- use mysql && dodoc doc/mysql-ulogd2.sql
- use postgres && dodoc doc/pgsql-ulogd2.sql
- use sqlite3 && dodoc doc/sqlite3.table
-
- # install logrotate config
- insinto /etc/logrotate.d
- newins ulogd.logrotate ulogd || die "logrotate config failed"
-
- doman ulogd.8 || die
-}
diff --git a/app-arch/lrzip/lrzip-0.603.ebuild b/app-arch/lrzip/lrzip-0.603.ebuild
deleted file mode 100644
index ebecc55..0000000
--- a/app-arch/lrzip/lrzip-0.603.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/lrzip/lrzip-0.46.ebuild,v 1.1 2010/06/02 23:33:39 spatz Exp $
-
-DESCRIPTION="Long Range ZIP or Lzma RZIP"
-HOMEPAGE="http://ck.kolivas.org/apps/lrzip/README"
-SRC_URI="http://ck.kolivas.org/apps/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/lzo
- app-arch/bzip2
- sys-libs/zlib"
-DEPEND="${RDEPEND}
- x86? ( dev-lang/nasm )
- virtual/perl-PodParser"
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
-}
diff --git a/app-emulation/playonlinux/playonlinux-9999.ebuild b/app-emulation/playonlinux/playonlinux-9999.ebuild
deleted file mode 100644
index 0697c80..0000000
--- a/app-emulation/playonlinux/playonlinux-9999.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/playonlinux/playonlinux-4.1.1-r1.ebuild,v 1.1 2012/07/14 18:22:55 hwoarang Exp $
-
-EAPI="4"
-PYTHON_DEPEND="2"
-
-inherit eutils python games git-2
-
-MY_PN="PlayOnLinux"
-
-DESCRIPTION="Set of scripts to easily install and use Windows games and software"
-HOMEPAGE="http://playonlinux.com/"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/PlayOnLinux/POL-POM-4"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="winbind"
-
-DEPEND=""
-RDEPEND="app-emulation/wine
- app-arch/cabextract
- app-arch/p7zip
- app-arch/unzip
- app-crypt/gnupg
- dev-python/wxpython:2.8
- || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )
- net-misc/wget
- x11-apps/mesa-progs
- x11-terms/xterm
- media-gfx/icoutils
- winbind? ( net-fs/samba[winbind] ) "
-
-S=${WORKDIR}/${PN}
-
-# TODO:
-# Having a real install script and let playonlinux use standard filesystem
-# architecture to prevent having everything installed into GAMES_DATADIR
-# It will let using LANGUAGES easily
-# How to deal with Microsoft Fonts installation asked every time ?
-# How to deal with wine version installed ? (have a better mgmt of system one)
-# Look at debian pkg: http://packages.debian.org/sid/playonlinux
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
- games_pkg_setup
-}
-
-src_prepare() {
- python_convert_shebangs -r 2 .
-}
-
-src_install() {
- # all things without exec permissions
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r resources lang lib etc plugins
-
- # bash/ install
- exeinto "${GAMES_DATADIR}/${PN}/bash"
- doexe bash/*
-# exeinto "${GAMES_DATADIR}/${PN}/bash/terminals"
-# doexe bash/terminals/*
- exeinto "${GAMES_DATADIR}/${PN}/bash/expert"
- doexe bash/expert/*
-
- # python/ install
- exeinto "${GAMES_DATADIR}/${PN}/python"
- doexe python/*
- # sub dir without exec permissions
- insinto "${GAMES_DATADIR}/${PN}/python"
- doins -r python/lib
-
- # main executable files
- exeinto "${GAMES_DATADIR}/${PN}"
- doexe ${PN}{,-pkg,-bash,-shell,-url_handler}
-
- # making a script to run playonlinux from ${GAMES_BINDIR}
- echo "#!/bin/bash" > ${PN}_launcher
- echo "cd \"${GAMES_DATADIR}/${PN}\" && ./${PN} \$*" >> ${PN}_launcher
- newgamesbin playonlinux_launcher playonlinux
-
- # making a script to run playonlinux-cmd from ${GAMES_BINDIR}
- echo "#!/bin/bash" > ${PN}_cmd_launcher
- echo "cd \"${GAMES_DATADIR}/${PN}\" && ./${PN}-cmd \$*" >> ${PN}_cmd_launcher
- newgamesbin playonlinux_cmd_launcher playonlinux-cmd
-
- dodoc CHANGELOG
-
- doicon etc/${PN}.png
- domenu etc/${MY_PN}.desktop
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
- python_mod_optimize "${GAMES_DATADIR}/${PN}"
-}
-
-pkg_postrm() {
- python_mod_cleanup "${GAMES_DATADIR}/${PN}"
-
- elog "Installed softwares and games with playonlinux have not been removed."
- elog "To remove them, you can re-install playonlinux and remove them using it"
- elog "or do it manually by removing .PlayOnLinux/ in your home directory."
-}
diff --git a/app-emulation/spice-protocol/spice-protocol-9999.ebuild b/app-emulation/spice-protocol/spice-protocol-9999.ebuild
deleted file mode 100644
index 824a918..0000000
--- a/app-emulation/spice-protocol/spice-protocol-9999.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice-protocol/spice-protocol-0.12.2.ebuild,v 1.2 2012/11/04 13:45:03 ago Exp $
-
-EAPI="4"
-
-inherit git-2
-
-DESCRIPTION="Headers defining the SPICE protocol."
-HOMEPAGE="http://spice-space.org/"
-#SRC_URI="http://spice-space.org/download/releases/${P}.tar.bz2"
-EGIT_REPO_URI="git://git.freedesktop.org/git/spice/spice-protocol"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
- ./autogen.sh
-} \ No newline at end of file
diff --git a/app-emulation/spice/spice-9999.ebuild b/app-emulation/spice/spice-9999.ebuild
deleted file mode 100644
index cf42a09..0000000
--- a/app-emulation/spice/spice-9999.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/spice/spice-0.12.0.ebuild,v 1.4 2012/10/05 13:56:45 cardoe Exp $
-
-EAPI=4
-
-PYTHON_DEPEND="2"
-
-inherit eutils python git-2
-
-DESCRIPTION="SPICE server and client."
-HOMEPAGE="http://spice-space.org/"
-#SRC_URI="http://spice-space.org/download/releases/${P}.tar.bz2"
-EGIT_REPO_URI="git://git.freedesktop.org/git/spice/spice"
-EGIT_HAS_SUBMODULES="1"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS=""
-IUSE="+client +gui sasl smartcard static-libs" # static
-
-RDEPEND=">=x11-libs/pixman-0.17.7
- media-libs/alsa-lib
- media-libs/celt:0.5.1
- dev-libs/openssl
- virtual/jpeg
- sys-libs/zlib
- sasl? ( dev-libs/cyrus-sasl )
- smartcard? ( >=app-emulation/libcacard-0.1.2 )
- client? (
- gui? ( =dev-games/cegui-0.6*[opengl] )
- >=x11-libs/libXrandr-1.2
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXinerama
- x11-libs/libXfixes
- x11-libs/libXrender
- )"
-
-# broken as we don't have static alsa-lib and building that one static requires more work
-# static? (
-# >=x11-libs/pixman-0.17.7[static-libs(+)]
-# media-libs/celt:0.5.1[static-libs(+)]
-# virtual/jpeg[static-libs(+)]
-# sys-libs/zlib[static-libs(+)]
-# media-libs/alsa-lib[static-libs(-)]
-# >=x11-libs/libXrandr-1.2[static-libs(+)]
-# x11-libs/libX11[static-libs(+)]
-# x11-libs/libXext[static-libs(+)]
-# x11-libs/libXinerama[static-libs(+)]
-# x11-libs/libXfixes[static-libs(+)]
-# x11-libs/libXrender[static-libs(+)]
-# )
-# )"
-DEPEND="virtual/pkgconfig
- dev-python/pyparsing
- ${RDEPEND}"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-# maintainer notes:
-# * opengl support is currently broken
-# * TODO: add slirp for tunnel-support
-
-src_prepare() {
-# epatch \
-# "${FILESDIR}/0.11.0-gold.patch"
- ./autogen.sh
-}
-
-src_configure() {
- python_convert_shebangs 2 spice-common/spice_codegen.py
-
- econf \
- $(use_enable static-libs static) \
- --disable-tunnel \
- $(use_enable client) \
- $(use_enable gui) \
- $(use_with sasl) \
- $(use_enable smartcard) \
- --disable-static-linkage
-# $(use_enable static static-linkage) \
-}
-
-src_install() {
- default
- use static-libs || rm "${D}"/usr/lib*/*.la
-}