Sync with portage [Mon Apr 23 16:45:35 MSK 2012].

mhiretskiy
root 12 years ago
parent 19a97c4f7f
commit 3844856daa

@ -1 +1,2 @@
DIST supervisor-3.0a10.tar.gz 438362 RMD160 7ab7d715442524d82abd2ac444b2c38bda6591e3 SHA1 b743e10221964c327ae7335c59ab70b43261f545 SHA256 63620d0431bafff6f346fb4df5d9a7745588b5dee1ca5fec2ddff2298107d69f
DIST supervisor-3.0a12.tar.gz 438901 RMD160 b0456bb81c6f733de0b4278bc2a30debff51cdb1 SHA1 268bb143895918bf1d2c3d49b227b923268f882a SHA256 de60eee3c460b379aa8493083b59d31b29f2c4267730db29b6f9dea22642b3b4

@ -0,0 +1,39 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.0_alpha12.ebuild,v 1.1 2012/04/23 05:25:58 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
PYTHON_USE_WITH="xml"
SUPPORT_PYTHON_ABIS="1"
# xml.etree.ElementTree module required.
RESTRICT_PYTHON_ABIS="2.4 3.*"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils eutils
MY_PV="${PV/_alpha/a}"
DESCRIPTION="A system for controlling process state under UNIX"
HOMEPAGE="http://supervisord.org/ http://pypi.python.org/pypi/supervisor"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"
LICENSE="repoze ZPL BSD as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="dev-python/meld3
dev-python/setuptools"
DEPEND="${RDEPEND}
test? ( dev-python/mock )"
S="${WORKDIR}/${PN}-${MY_PV}"
DOCS="CHANGES.txt TODO.txt"
src_install() {
distutils_src_install
newinitd "${FILESDIR}/init.d" supervisord || die "newinitd failed"
newconfd "${FILESDIR}/conf.d" supervisord || die "newconfd failed"
}

@ -0,0 +1,152 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/p7zip/p7zip-9.20.1-r1.ebuild,v 1.1 2012/04/23 10:50:24 jlec Exp $
EAPI=4
WX_GTK_VER="2.8"
inherit eutils toolchain-funcs multilib wxwidgets
DESCRIPTION="Port of 7-Zip archiver for Unix"
HOMEPAGE="http://p7zip.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_src_all.tar.bz2"
LICENSE="LGPL-2.1 rar? ( unRAR )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
IUSE="doc kde rar +pch static wxwidgets"
REQUIRED_USE="kde? ( wxwidgets )"
RDEPEND="
kde? ( x11-libs/wxGTK:2.8[X,-odbc] kde-base/kdelibs )
wxwidgets? ( x11-libs/wxGTK:2.8[X,-odbc] )"
DEPEND="${RDEPEND}
amd64? ( dev-lang/yasm )
x86? ( dev-lang/nasm )"
S=${WORKDIR}/${PN}_${PV}
pkg_setup() {
use wxwidgets && wxwidgets_pkg_setup
}
src_prepare() {
if ! use pch; then
sed "s:PRE_COMPILED_HEADER=StdAfx.h.gch:PRE_COMPILED_HEADER=:g" -i makefile.* || die
fi
sed \
-e 's:-m32 ::g' \
-e 's:-m64 ::g' \
-e "/^CC/s:\$(ALLFLAGS):${CFLAGS} \$(ALLFLAGS):g" \
-e "/^CXX/s:\$(ALLFLAGS):${CXXFLAGS} \$(ALLFLAGS):g" \
-i makefile* || die
# remove non-free RAR codec
if use rar; then
ewarn "Enabling nonfree RAR decompressor"
else
sed -e '/Rar/d' -i makefile* || die
rm -rf CPP/7zip/Compress/Rar || die
epatch "${FILESDIR}"/9.04-makefile.patch
fi
sed -i \
-e "/^CXX=/s:g++:$(tc-getCXX):" \
-e "/^CC=/s:gcc:$(tc-getCC):" \
-e '/ALLFLAGS/s:-s ::' \
makefile* || die "changing makefiles"
if use amd64; then
cp -f makefile.linux_amd64_asm makefile.machine || die
elif use x86; then
cp -f makefile.linux_x86_asm_gcc_4.X makefile.machine || die
elif [[ ${CHOST} == *-darwin* ]] ; then
# Mac OS X needs this special makefile, because it has a non-GNU linker
[[ ${CHOST} == *64-* ]] \
&& cp -f makefile.macosx_64bits makefile.machine \
|| cp -f makefile.macosx_32bits makefile.machine
# bundles have extension .bundle but don't die because USE=-rar
# removes the Rar directory
sed -i -e '/strcpy(name/s/\.so/.bundle/' \
CPP/Windows/DLL.cpp || die
sed -i -e '/^PROG=/s/\.so/.bundle/' \
CPP/7zip/Bundles/Format7zFree/makefile \
$(use rar && echo CPP/7zip/Compress/Rar/makefile) || die
elif use x86-fbsd; then
# FreeBSD needs this special makefile, because it hasn't -ldl
sed -e 's/-lc_r/-pthread/' makefile.freebsd > makefile.machine
fi
use static && sed -i -e '/^LOCAL_LIBS=/s/LOCAL_LIBS=/&-static /' makefile.machine
if use kde || use wxwidgets; then
einfo "Preparing dependency list"
emake depend
fi
}
src_compile() {
emake all3
if use kde || use wxwidgets; then
emake 7zG
emake 7zFM
fi
}
src_test() {
emake test test_7z test_7zr
}
src_install() {
# this wrappers can not be symlinks, p7zip should be called with full path
make_wrapper 7zr "/usr/$(get_libdir)/${PN}/7zr"
make_wrapper 7za "/usr/$(get_libdir)/${PN}/7za"
make_wrapper 7z "/usr/$(get_libdir)/${PN}/7z"
if use kde || use wxwidgets; then
make_wrapper 7zG "/usr/$(get_libdir)/${PN}/7zG"
make_wrapper 7zFM "/usr/$(get_libdir)/${PN}/7zFM"
make_desktop_entry 7zFM ${PN} "GTK;Utility;Archiving;Compression"
make_desktop_entry 7zG ${PN} "GTK;Utility;Archiving;Compression"
dobin GUI/p7zipForFilemanager
exeinto /usr/$(get_libdir)/${PN}
doexe bin/7z{G,FM}
insinto /usr/$(get_libdir)/${PN}
doins -r GUI/{Lang,help}
insinto /usr/share/icons/hicolor/16x16/apps/
newins GUI/p7zip_16_ok.png p7zip.png
if use kde; then
rm GUI/kde4/p7zip_compress.desktop
insinto /usr/share/kde4/services/ServiceMenus
doins GUI/kde4/*.desktop
fi
fi
dobin contrib/gzip-like_CLI_wrapper_for_7z/p7zip
doman contrib/gzip-like_CLI_wrapper_for_7z/man1/p7zip.1
exeinto /usr/$(get_libdir)/${PN}
doexe bin/7z bin/7za bin/7zr bin/7zCon.sfx
doexe bin/*$(get_modname)
if use rar; then
exeinto /usr/$(get_libdir)/${PN}/Codecs/
doexe bin/Codecs/*$(get_modname)
fi
doman man1/7z.1 man1/7za.1 man1/7zr.1
dodoc ChangeLog README TODO
if use doc; then
dodoc DOCS/*.txt
dohtml -r DOCS/MANUAL/*
fi
}

@ -1,3 +1,4 @@
DIST deja-dup-18.1.1.tar.bz2 1183341 RMD160 5ca57d46e434342fa4f125719d4d1ba83114e626 SHA1 d04a13606f406a6489156d89c5dff848fcb8189d SHA256 0b0f2201ca8f10fe528872510c7d0d2f614330db841aeac241fac1107eaf4582
DIST deja-dup-21.2.tar.xz 914396 RMD160 d3e011b5ed836ab603e1d4ae1ec4770b9e314a30 SHA1 a04234e7ffcbb6251b296d1cc92bf5f789bb105f SHA256 1385f45bd2680ab7380a7fd2a8a05000049baba00b8e85500b723ad17063c00b
DIST deja-dup-22.0.tar.xz 772832 RMD160 4913e9e3b40708fdb2a0ccbe82cf1a436ea39e4e SHA1 f11adb6054ff91e7fc9981fbb46a46f355db5ff0 SHA256 28eb77a6006d21df56d9ee1f73e422d0974f9c75da201b6a5b9ef38e37836420
DIST deja-dup-22.1.tar.xz 777248 RMD160 d85ac85436851f3843a472265323fc8f6476c66a SHA1 be6b9bb94c78461c3a32424825850a0b2bc401dd SHA256 44cb8fcd45799a369c8da2717792a87e3e183eeca1b07fa8f2aac8664f00ca5e

@ -0,0 +1,63 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/deja-dup/deja-dup-22.1.ebuild,v 1.1 2012/04/23 11:17:09 jlec Exp $
EAPI=4
GNOME2_LA_PUNT="yes"
inherit autotools eutils gnome2
DESCRIPTION="Simple backup tool using duplicity back-end"
HOMEPAGE="https://launchpad.net/deja-dup/"
SRC_URI="http://launchpad.net/${PN}/22/${PV}/+download/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nautilus"
RESTRICT="test"
COMMON_DEPEND="
dev-libs/glib:2
x11-libs/gtk+:3
x11-libs/libnotify
app-backup/duplicity
dev-libs/dbus-glib
gnome-base/gnome-keyring
nautilus? ( gnome-base/nautilus )"
RDEPEND="${COMMON_DEPEND}
gnome-base/gvfs[fuse]"
DEPEND="${COMMON_DEPEND}
app-text/yelp-tools
dev-lang/vala:0.14
dev-perl/Locale-gettext
dev-util/pkgconfig
dev-util/intltool
sys-devel/gettext"
pkg_setup() {
DOCS="NEWS AUTHORS"
G2CONF="${G2CONF}
$(use_with nautilus)
--without-ccpanel
--without-unity
--disable-schemas-compile
--disable-static"
export VALAC=$(type -p valac-0.14)
}
#src_prepare() {
# epatch \
# "${FILESDIR}"/${PN}-21.2-linguas.patch
# eautoreconf
# gnome2_src_prepare
#}
src_install() {
gnome2_src_install
domenu data/deja-dup.desktop
}

@ -1,2 +1,3 @@
DIST qemu-kvm-0.15.1.tar.gz 5915998 RMD160 dba914ca40d6c63e9f3abce409d7daee1d33323b SHA1 2716ddfc49d98fee67a1ff0de9b199d211e72bec SHA256 aed6a3faa76c1e9601b4b5b8adbe5867a70c64567175f44944d88e16bd49733e
DIST qemu-kvm-1.0.1.tar.gz 6214796 RMD160 b6ad256b94f9c79ab4406019c90b776f30cfa1bf SHA1 4163eeb73f473dd272db6189f0da26ce2e78416a SHA256 57bcd26342af2303663028db9e9956a8b487babfcf2a432ac3351c88b8e2bf4f
DIST qemu-kvm-1.0.tar.gz 6210473 RMD160 6503b6ec9c8d89b785d644f5c4b47b4716e2fab7 SHA1 c16be4924c30747d93d609b7909e9e9239150c9a SHA256 b711ead5a0a28bf43e7e51ce2082e37120a3527ab012c609bc30fb94d37e116e

@ -0,0 +1,363 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu-kvm/qemu-kvm-1.0.1.ebuild,v 1.1 2012/04/23 05:14:39 cardoe Exp $
#BACKPORTS=1
EAPI="4"
if [[ ${PV} = *9999* ]]; then
EGIT_REPO_URI="git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git"
GIT_ECLASS="git-2"
fi
inherit eutils flag-o-matic ${GIT_ECLASS} linux-info toolchain-funcs multilib python
if [[ ${PV} = *9999* ]]; then
SRC_URI=""
KEYWORDS=""
else
SRC_URI="mirror://sourceforge/kvm/${PN}/${P}.tar.gz
${BACKPORTS:+
http://dev.gentoo.org/~flameeyes/${PN}/${P}-backports-${BACKPORTS}.tar.bz2
http://dev.gentoo.org/~cardoe/distfiles/${P}-backports-${BACKPORTS}.tar.bz2}"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
fi
DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"
HOMEPAGE="http://www.linux-kvm.org"
LICENSE="GPL-2"
SLOT="0"
# xen is disabled until the deps are fixed
IUSE="+aio alsa bluetooth brltty +curl debug fdt ncurses \
opengl pulseaudio qemu-ifup rbd sasl sdl smartcard spice static test
+threads tls usbredir vde +vhost-net xattr xen"
COMMON_TARGETS="i386 x86_64 arm cris m68k microblaze mips mipsel ppc ppc64 sh4 sh4eb sparc sparc64"
IUSE_SOFTMMU_TARGETS="${COMMON_TARGETS} mips64 mips64el ppcemb"
IUSE_USER_TARGETS="${COMMON_TARGETS} alpha armeb ppc64abi32 sparc32plus"
# Setup the default SoftMMU targets, while using the loops
# below to setup the other targets. x86_64 should be the only
# defaults on for qemu-kvm
IUSE="${IUSE} +qemu_softmmu_targets_x86_64"
for target in ${IUSE_SOFTMMU_TARGETS}; do
if [ "x${target}" = "xx86_64" ]; then
continue
fi
IUSE="${IUSE} qemu_softmmu_targets_${target}"
done
for target in ${IUSE_USER_TARGETS}; do
IUSE="${IUSE} qemu_user_targets_${target}"
done
RDEPEND="
!app-emulation/kqemu
!app-emulation/qemu
!app-emulation/qemu-user
>=dev-libs/glib-2.0
media-libs/libpng
sys-apps/pciutils
>=sys-apps/util-linux-2.16.0
virtual/jpeg
amd64? ( sys-apps/seabios
sys-apps/vgabios )
x86? ( sys-apps/seabios
sys-apps/vgabios )
aio? ( dev-libs/libaio )
alsa? ( >=media-libs/alsa-lib-1.0.13 )
bluetooth? ( net-wireless/bluez )
brltty? ( app-accessibility/brltty )
curl? ( >=net-misc/curl-7.15.4 )
fdt? ( >=sys-apps/dtc-1.2.0 )
ncurses? ( sys-libs/ncurses )
opengl? ( virtual/opengl )
pulseaudio? ( media-sound/pulseaudio )
qemu-ifup? ( sys-apps/iproute2 net-misc/bridge-utils )
rbd? ( sys-cluster/ceph )
sasl? ( dev-libs/cyrus-sasl )
sdl? ( static? ( >=media-libs/libsdl-1.2.11[static-libs,X] )
!static? ( >=media-libs/libsdl-1.2.11[X] ) )
static? ( sys-libs/zlib[static-libs(+)] )
!static? ( sys-libs/zlib )
smartcard? ( dev-libs/nss )
spice? ( >=app-emulation/spice-0.9.0
>=app-emulation/spice-protocol-0.8.1 )
tls? ( net-libs/gnutls )
usbredir? ( sys-apps/usbredir )
vde? ( net-misc/vde )
xattr? ( sys-apps/attr )
xen? ( app-emulation/xen-tools )
"
DEPEND="${RDEPEND}
app-text/texi2html
dev-util/pkgconfig
>=sys-kernel/linux-headers-2.6.35
test? ( dev-libs/check )"
STRIP_MASK="/usr/share/qemu/palcode-clipper"
QA_PRESTRIPPED="
usr/share/qemu/openbios-ppc
usr/share/qemu/openbios-sparc64
usr/share/qemu/openbios-sparc32
usr/share/qemu/palcode-clipper"
QA_WX_LOAD="${QA_PRESTRIPPED}
usr/bin/qemu-i386
usr/bin/qemu-x86_64
usr/bin/qemu-alpha
usr/bin/qemu-arm
usr/bin/qemu-cris
usr/bin/qemu-m68k
usr/bin/qemu-microblaze
usr/bin/qemu-mips
usr/bin/qemu-mipsel
usr/bin/qemu-ppc
usr/bin/qemu-ppc64
usr/bin/qemu-ppc64abi32
usr/bin/qemu-sh4
usr/bin/qemu-sh4eb
usr/bin/qemu-sparc
usr/bin/qemu-sparc64
usr/bin/qemu-armeb
usr/bin/qemu-sparc32plus"
pkg_pretend() {
if ! use qemu_softmmu_targets_x86_64 && use amd64 ; then
eerror "You disabled default target QEMU_SOFTMMU_TARGETS=x86_64"
fi
if ! use qemu_softmmu_targets_x86_64 && use x86 ; then
eerror "You disabled default target QEMU_SOFTMMU_TARGETS=x86_64"
fi
if kernel_is lt 2 6 25; then
eerror "This version of KVM requres a host kernel of 2.6.25 or higher."
eerror "Either upgrade your kernel"
else
if ! linux_config_exists; then
eerror "Unable to check your kernel for KVM support"
else
CONFIG_CHECK="~KVM ~TUN ~BRIDGE"
ERROR_KVM="You must enable KVM in your kernel to continue"
ERROR_KVM_AMD="If you have an AMD CPU, you must enable KVM_AMD in"
ERROR_KVM_AMD+=" your kernel configuration."
ERROR_KVM_INTEL="If you have an Intel CPU, you must enable"
ERROR_KVM_INTEL+=" KVM_INTEL in your kernel configuration."
ERROR_TUN="You will need the Universal TUN/TAP driver compiled"
ERROR_TUN+=" into your kernel or loaded as a module to use the"
ERROR_TUN+=" virtual network device if using -net tap."
ERROR_BRIDGE="You will also need support for 802.1d"
ERROR_BRIDGE+=" Ethernet Bridging for some network configurations."
use vhost-net && CHECK_CHECK+=" ~VHOST_NET"
ERROR_VHOST_NET="You must enable VHOST_NET to have vhost-net"
ERROR_VHOST_NET+=" support"
if use amd64 || use x86 || use amd64-linux || use x86-linux; then
CONFIG_CHECK+=" ~KVM_AMD ~KVM_INTEL"
fi
# Now do the actual checks setup above
check_extra_config
fi
fi
}
pkg_setup() {
python_set_active_version 2
enewgroup kvm
}
src_prepare() {
# prevent docs to get automatically installed
sed -i '/$(DESTDIR)$(docdir)/d' Makefile || die
# Alter target makefiles to accept CFLAGS set via flag-o
sed -i 's/^\(C\|OP_C\|HELPER_C\)FLAGS=/\1FLAGS+=/' \
Makefile Makefile.target || die
# append CFLAGS while linking
sed -i 's/$(LDFLAGS)/$(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS)/' rules.mak || die
# remove part to make udev happy
sed -e 's~NAME="%k", ~~' -i kvm/scripts/65-kvm.rules || die
# ${PN}-guest-hang-on-usb-add.patch was sent by Timothy Jones
# to the qemu-devel ml - bug 337988
epatch "${FILESDIR}/qemu-0.11.0-mips64-user-fix.patch"
# drop '-g' by default as it tends to eat
# A LOT (~2GB) of ram for each job #355861
sed -e 's/CFLAGS="-g $CFLAGS"/CFLAGS="$CFLAGS"/g' \
-i configure || die
[[ -n ${BACKPORTS} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
}
src_configure() {
local conf_opts audio_opts user_targets
for target in ${IUSE_SOFTMMU_TARGETS} ; do
use "qemu_softmmu_targets_${target}" && \
softmmu_targets="${softmmu_targets} ${target}-softmmu"
done
for target in ${IUSE_USER_TARGETS} ; do
use "qemu_user_targets_${target}" && \
user_targets="${user_targets} ${target}-linux-user"
done
if [[ -z ${softmmu_targets} ]]; then
eerror "All SoftMMU targets are disabled. This is invalid for qemu-kvm"
die "At least 1 SoftMMU target must be enabled"
else
einfo "Building the following softmmu targets: ${softmmu_targets}"
fi
if [[ -n ${user_targets} ]]; then
einfo "Building the following user targets: ${user_targets}"
conf_opts="${conf_opts} --enable-linux-user"
else
conf_opts="${conf_opts} --disable-linux-user"
fi
# Fix QA issues. QEMU needs executable heaps and we need to mark it as such
conf_opts="${conf_opts} --extra-ldflags=-Wl,-z,execheap"
# Add support for static builds
use static && conf_opts="${conf_opts} --static"
# Support debug USE flag
use debug && conf_opts="${conf_opts} --enable-debug"
# audio options
audio_opts="oss"
use alsa && audio_opts="alsa ${audio_opts}"
use pulseaudio && audio_opts="pa ${audio_opts}"
use sdl && audio_opts="sdl ${audio_opts}"
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-darwin-user \
--disable-bsd-user \
--disable-libiscsi \
--disable-strip \
--disable-werror \
--enable-kvm \
--enable-kvm-device-assignment \
--enable-kvm-pit \
--enable-pie \
--enable-nptl \
--enable-tcg-interpreter \
--enable-uuid \
--enable-vnc-jpeg \
--enable-vnc-png \
--python=python2 \
$(use_enable aio linux-aio) \
$(use_enable bluetooth bluez) \
$(use_enable brltty brlapi) \
$(use_enable curl) \
$(use_enable fdt) \
$(use_enable ncurses curses) \
$(use_enable opengl) \
$(use_enable rbd) \
$(use_enable sasl vnc-sasl) \
$(use_enable sdl) \
$(use_enable smartcard smartcard) \
$(use_enable smartcard smartcard-nss) \
$(use_enable spice) \
$(use_enable test check-utests) \
$(use_enable tls vnc-tls) \
$(use_enable threads vnc-thread) \
$(use_enable usbredir usb-redir) \
$(use_enable vde) \
$(use_enable vhost-net) \
$(use_enable xen) \
$(use_enable xattr attr) \
--audio-drv-list="${audio_opts}" \
--target-list="${softmmu_targets} ${user_targets}" \
--cc="$(tc-getCC)" \
--host-cc="$(tc-getBUILD_CC)" \
|| die "configure failed"
# this is for qemu upstream's threaded support which is
# in development and broken
# the kvm project has its own support for threaded IO
# which is always on and works
# --enable-io-thread \
}
src_install() {
emake DESTDIR="${ED}" install || die "make install failed"
if [[ -n ${softmmu_targets} ]]; then
insinto /lib/udev/rules.d/
doins kvm/scripts/65-kvm.rules || die
if use qemu-ifup; then
insinto /etc/qemu/
insopts -m0755
doins kvm/scripts/qemu-ifup || die
fi
if use qemu_softmmu_targets_x86_64 ; then
dobin "${FILESDIR}"/qemu-kvm
ewarn "The depreciated '/usr/bin/kvm' symlink is no longer installed"
ewarn "You should use '/usr/bin/qemu-kvm', you may need to edit"
ewarn "your libvirt configs or other wrappers for ${PN}"
else
elog "You disabled QEMU_SOFTMMU_TARGETS=x86_64, this disables install"
elog "of /usr/bin/qemu-kvm and /usr/bin/kvm"
fi
fi
dodoc Changelog MAINTAINERS TODO pci-ids.txt || die
newdoc pc-bios/README README.pc-bios || die
dohtml qemu-doc.html qemu-tech.html || die
# FIXME: Need to come up with a solution for non-x86 based systems
if use x86 || use amd64; then
# Remove SeaBIOS since we're using the SeaBIOS packaged one
rm "${ED}/usr/share/qemu/bios.bin"
dosym ../seabios/bios.bin /usr/share/qemu/bios.bin
# Remove vgabios since we're using the vgabios packaged one
rm "${ED}/usr/share/qemu/vgabios.bin"
rm "${ED}/usr/share/qemu/vgabios-cirrus.bin"
rm "${ED}/usr/share/qemu/vgabios-qxl.bin"
rm "${ED}/usr/share/qemu/vgabios-stdvga.bin"
rm "${ED}/usr/share/qemu/vgabios-vmware.bin"
dosym ../vgabios/vgabios.bin /usr/share/qemu/vgabios.bin
dosym ../vgabios/vgabios-cirrus.bin /usr/share/qemu/vgabios-cirrus.bin
dosym ../vgabios/vgabios-qxl.bin /usr/share/qemu/vgabios-qxl.bin
dosym ../vgabios/vgabios-stdvga.bin /usr/share/qemu/vgabios-stdvga.bin
dosym ../vgabios/vgabios-vmware.bin /usr/share/qemu/vgabios-vmware.bin
fi
}
pkg_postinst() {
if [[ -n ${softmmu_targets} ]]; then
elog "If you don't have kvm compiled into the kernel, make sure you have"
elog "the kernel module loaded before running kvm. The easiest way to"
elog "ensure that the kernel module is loaded is to load it on boot."
elog "For AMD CPUs the module is called 'kvm-amd'"
elog "For Intel CPUs the module is called 'kvm-intel'"
elog "Please review /etc/conf.d/modules for how to load these"
elog
elog "Make sure your user is in the 'kvm' group"
elog "Just run 'gpasswd -a <USER> kvm', then have <USER> re-login."
elog
elog "The ssl USE flag was renamed to tls, so adjust your USE flags."
elog "The nss USE flag was renamed to smartcard, so adjust your USE flags."
fi
use qemu-ifup && \
ewarn "qemu-ifup is deprecated, be prepared for it to disappear next release"
}

@ -0,0 +1,42 @@
This patch is expecting result of `pkg-config --cflags npapi-sdk nspr` passed to the compiler.
http://bugs.gentoo.org/383145
--- plugin/npshell.c
+++ plugin/npshell.c
@@ -83,8 +83,9 @@
#include <string.h>
#include <strings.h>
+#include <nspr.h>
#include <npapi.h>
-#include <npupp.h>
+#include <npfunctions.h>
#include "virt-viewer-plugin.h"
--- plugin/npunix.c
+++ plugin/npunix.c
@@ -56,8 +56,9 @@
#define XP_UNIX 1
#include <stdio.h>
+#include <nspr.h>
#include <npapi.h>
-#include <npupp.h>
+#include <npfunctions.h>
#include <glib.h> /* just for G_GNUC_UNUSED */
--- plugin/virt-viewer-plugin.h
+++ plugin/virt-viewer-plugin.h
@@ -36,7 +36,9 @@
#ifndef VIRT_VIEWER_PLUGIN_H
#define VIRT_VIEWER_PLUGIN_H
+#include <nspr.h>
#include <npapi.h>
+#include <npfunctions.h>
#include <gtk/gtk.h>
#include <X11/Xlib.h>
#include "virt-viewer-app.h"

@ -1,37 +1,35 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-viewer/virt-viewer-0.4.2.ebuild,v 1.4 2012/03/11 00:50:09 cardoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-viewer/virt-viewer-0.4.2.ebuild,v 1.5 2012/04/23 09:41:20 ssuominen Exp $
EAPI=4
inherit eutils gnome2
inherit gnome2
DESCRIPTION="Graphical console client for connecting to virtual machines"
HOMEPAGE="http://virt-manager.org/"
SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk3 nsplugin sasl spice +vnc"
RDEPEND=">=app-emulation/libvirt-0.6.0
>=dev-libs/libxml2-2.6.0:2
IUSE="gtk3 sasl spice +vnc"
RDEPEND=">=app-emulation/libvirt-0.6
>=dev-libs/libxml2-2.6
gtk3? ( x11-libs/gtk+:3 )
!gtk3? ( >=x11-libs/gtk+-2.10.0:2
>=gnome-base/libglade-2.6.0:2.0 )
nsplugin? ( >=dev-libs/nspr-4.0.0
>=net-libs/xulrunner-1.9.1:1.9
>=x11-libs/gtk+-2.10.0:2
>=gnome-base/libglade-2.6.0:2.0 )
!gtk3? (
>=x11-libs/gtk+-2.10:2
>=gnome-base/libglade-2.6
)
spice? ( >=net-misc/spice-gtk-0.6[sasl?,gtk3?] )
vnc? ( >=net-libs/gtk-vnc-0.4.3 )"
DEPEND="${RDEPEND}"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
REQUIRED_USE="|| ( spice vnc )
nsplugin? ( !gtk3 )
gtk3? ( !nsplugin )"
REQUIRED_USE="|| ( spice vnc )"
pkg_setup() {
G2CONF="$(use_enable nsplugin plugin) $(use_with spice spice-gtk)"
G2CONF="--disable-plugin $(use_with spice spice-gtk)"
G2CONF="${G2CONF} $(use_with vnc gtk-vnc)"
use gtk3 && G2CONF="${G2CONF} --with-gtk=3.0"
use gtk3 || G2CONF="${G2CONF} --with-gtk=2.0"

@ -1,30 +1,36 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-viewer/virt-viewer-0.5.2.ebuild,v 1.1 2012/03/11 00:50:09 cardoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-viewer/virt-viewer-0.5.2.ebuild,v 1.2 2012/04/23 09:41:20 ssuominen Exp $
EAPI=4
inherit eutils gnome2
inherit eutils gnome2 toolchain-funcs
DESCRIPTION="Graphical console client for connecting to virtual machines"
HOMEPAGE="http://virt-manager.org/"
SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk3 nsplugin sasl +spice +vnc"
RDEPEND=">=app-emulation/libvirt-0.9.7
>=dev-libs/libxml2-2.6.0:2
>=dev-libs/libxml2-2.6
gtk3? ( x11-libs/gtk+:3 )
!gtk3? ( >=x11-libs/gtk+-2.18.0:2
>=gnome-base/libglade-2.6.0:2.0 )
nsplugin? ( >=dev-libs/nspr-4.0.0
>=net-libs/xulrunner-1.9.1:1.9
>=x11-libs/gtk+-2.18.0:2
>=gnome-base/libglade-2.6.0:2.0 )
!gtk3? (
>=x11-libs/gtk+-2.18:2
>=gnome-base/libglade-2.6
)
nsplugin? (
>=dev-libs/nspr-4
>=x11-libs/gtk+-2.18:2
>=gnome-base/libglade-2.6
)
spice? ( >=net-misc/spice-gtk-0.11[sasl?,gtk3?] )
vnc? ( >=net-libs/gtk-vnc-0.4.3 )"
DEPEND="${RDEPEND}"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nsplugin? ( >=net-misc/npapi-sdk-0.27 )"
REQUIRED_USE="|| ( spice vnc )
nsplugin? ( !gtk3 )
@ -36,3 +42,16 @@ pkg_setup() {
use gtk3 && G2CONF="${G2CONF} --with-gtk=3.0"
use gtk3 || G2CONF="${G2CONF} --with-gtk=2.0"
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.5.x-npapi-sdk.patch
}
src_configure() {
if use nsplugin; then
export MOZILLA_PLUGIN_CFLAGS="$($(tc-getPKG_CONFIG) --cflags npapi-sdk nspr)"
export MOZILLA_PLUGIN_LIBS="$($(tc-getPKG_CONFIG) --libs npapi-sdk nspr)"
fi
gnome2_src_configure
}

@ -1,4 +1,4 @@
DIST fcitx-configtool-0.1.4.tar.gz 234329 RMD160 3baa5dd74f5d331f2183f9444ac050d97f72f63f SHA1 01de43eb9fb8b7869e273205977d501b924b7c98 SHA256 9b69fa0a3fae57573729a3dde666baf03144fa3582c620f56f4bb0074bc717c3
DIST fcitx-configtool-0.2.0.tar.gz 37435 RMD160 e40e9563160f9b8c9accc0da3b1b48411a58a184 SHA1 b670a171f49ed149098589f10db3bbf7dd546af5 SHA256 2c309f2df500cf7c1b0d13b446a69e3513a11588025a2f648b18b684cc2320fe
DIST fcitx-configtool-0.4.0.tar.bz2 32124 RMD160 1d9b2983870e0b5314757a8c289027b2ad4259c9 SHA1 18636ad077e71533b0436a42db1dab4dcde4db9a SHA256 580a531838c27a1446d1b8ad33d84e44fa729c1b178deff4b9736d316d754640
DIST fcitx-configtool-0.4.1.tar.xz 33608 RMD160 d67837b2b6a81fbbd71e053b82f31d3dce65a52d SHA1 1c11a350536afe66233b8bc6f1c16acb82292b42 SHA256 7135d8ec94589f7c55741908a3292c8cf89c097479061b3a47ce4154d3a305c9
DIST fcitx-configtool-0.4.2.tar.xz 33724 RMD160 7522fa0f6024c1c7449d94b3e62b801c38a1ed1b SHA1 0fa6fe445fa21acfbd1b8e5408319724b35182c9 SHA256 98e1c14c3737e13a6340eb093f7f5391e4cd973e147aec8c9e49f41b3a1904b7

@ -1,26 +1,34 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx-configtool/fcitx-configtool-0.4.0.ebuild,v 1.3 2012/03/16 01:25:15 qiaomuf Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx-configtool/fcitx-configtool-0.4.2.ebuild,v 1.1 2012/04/23 10:25:47 qiaomuf Exp $
EAPI="2"
EAPI="3"
inherit cmake-utils
DESCRIPTION="A gtk GUI to edit fcitx settings"
HOMEPAGE="http://fcitx.googlecode.com"
SRC_URI="${HOMEPAGE}/files/${P}.tar.bz2"
SRC_URI="${HOMEPAGE}/files/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
IUSE="gtk gtk3"
RDEPEND="dev-libs/glib:2
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
~app-i18n/fcitx-4.2.0
app-arch/xz-utils
~app-i18n/fcitx-4.2.2
app-text/iso-codes
dev-libs/libunique:1
dev-util/intltool
dev-util/pkgconfig
sys-devel/gettext"
src_configure() {
local mycmakeargs="
$(cmake-utils_use_enable gtk GTK2)
$(cmake-utils_use_enable gtk3 GTK3)"
cmake-utils_src_configure
}

@ -2,5 +2,7 @@ DIST fcitx-3.6.3.tar.bz2 6385159 RMD160 f4fc3033da09a9fb1ca6d1c4ee06dcc9d169d5ad
DIST fcitx-3.6.4.tar.gz 5957000 RMD160 737606d4550bfd96ac8adcdd3fbb658fa1e62a62 SHA1 136e44bcd05d7753377a2809ae28fd78969228dc SHA256 850a13a3d81ba218d02ec9ce508a6378bd874fb8f10f660eb587b2104f34919b
DIST fcitx-4.0.0_all.tar.gz 7127889 RMD160 4e8640703db0ebd94e55270fcce1e21f60cda81a SHA1 33bab6528fb0cfd6b94ddf96bffed66b4f1a3355 SHA256 28740bafbb76a904a4edb491a8b81bb5a8f2281bbbaff21fdfbc4c44c34ea441
DIST fcitx-4.0.1_all.tar.gz 6917877 RMD160 1f27f7037aa7df02bbdb63a0cc7cabf8a37b6326 SHA1 455a46c0ab04efe5a487134c2c863ce31ab1b1a8 SHA256 5a5ab150b0074988053c11daeb0291ab8fb344c5133c1d8d2a0a7de16a7cdb41
DIST fcitx-4.2.0.tar.bz2 785160 RMD160 1530b3f8515ca517a9ba89c028422f462c031f59 SHA1 b3c09f1eda7fb71208d348c34389dc824d6b2a80 SHA256 1410141f91321ec0c2514b8a9b3ff13ce3af82841036264f5a8b7ad005b139e5
DIST fcitx-4.2.1.tar.xz 569824 RMD160 a9f698bb2a1055e1e0a0230f8a38222607a19570 SHA1 74ad009cde48fb1efd48f8d2490fa36ddf36d215 SHA256 5f8b1972ae179ca6fb1febe5becd27adb71696fa9ee056839991378e6ed18372
DIST fcitx-4.2.2.tar.xz 585936 RMD160 3badb53484497385da7adcebd4cfcddf15bb3956 SHA1 09d2e7110f652027ea7c285c5845070f8a353f38 SHA256 1d18096232a700ddcf059e737b6acb2b292e5a4ae5d4bc2714e4f599e4e6daa6
DIST pinyin.tar.gz 1608886 RMD160 7d3be5535cb111cc5d8a64ce50150c9767608ec3 SHA1 af6f6fceed89a2b533b39a73e277675361298745 SHA256 583829b24a758c087c08de4a69480d0bf5946354fe77db360d6d7f467c2bd8e1
DIST table.tar.gz 4144686 RMD160 b678c943b232b8aba2c462c7b81b2f99f27ecd07 SHA1 b7e89f95ce2da991821acd270a1220a4cd4cb65a SHA256 6196053c724125e3ae3d8bd6b2f9172d0c83b65b0d410d3cde63b7a8d6ab87b7

@ -1,32 +1,50 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-4.2.0-r2.ebuild,v 1.2 2012/03/21 01:54:50 qiaomuf Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-4.2.2.ebuild,v 1.1 2012/04/23 10:21:28 qiaomuf Exp $
EAPI="3"
inherit cmake-utils eutils
inherit multilib cmake-utils eutils
DESCRIPTION="Free Chinese Input Toy for X. Another Chinese XIM Input Method"
HOMEPAGE="http://www.fcitx.org/"
SRC_URI="http://fcitx.googlecode.com/files/${P}.tar.bz2"
SRC_URI="http://fcitx.googlecode.com/files/${P}.tar.xz
http://fcitx.googlecode.com/files/pinyin.tar.gz
table? ( http://fcitx.googlecode.com/files/table.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cairo dbus debug gtk gtk3 opencc pango qt table"
IUSE="+cairo debug gtk gtk3 opencc +pango qt static-libs +table test"
RDEPEND="x11-libs/libX11
x11-libs/libXrender
media-libs/fontconfig
pango? ( x11-libs/pango )
RDEPEND="
cairo? (
x11-libs/cairo[X]
pango? ( x11-libs/pango[X] )
!pango? ( media-libs/fontconfig )
)
gtk? (
x11-libs/gtk+:2
dev-libs/glib:2
dev-libs/dbus-glib
)
gtk3? (
x11-libs/gtk+:3
dev-libs/glib:2
dev-libs/dbus-glib
)
opencc? ( app-i18n/opencc )
gtk? ( x11-libs/gtk+:2 )
gtk3? ( x11-libs/gtk+:3 )
cairo? ( x11-libs/cairo[X] )
dbus? ( sys-apps/dbus )"
qt? (
x11-libs/qt-gui:4
x11-libs/qt-dbus:4
)
sys-apps/dbus
x11-libs/libX11"
DEPEND="${RDEPEND}
x11-proto/xproto
dev-util/pkgconfig"
app-arch/xz-utils
dev-util/intltool
dev-util/pkgconfig
x11-proto/xproto"
update_gtk_immodules() {
local GTK2_CONFDIR="/etc/gtk-2.0"
@ -48,21 +66,25 @@ update_gtk3_immodules() {
}
src_prepare() {
# fix a bug when compiling without pango
epatch "${FILESDIR}/${P}-fix-pango.patch"
cp "${DISTDIR}/pinyin.tar.gz" "${S}/data" || die "pinyin.tar.gz is not found"
if use table ; then
cp "${DISTDIR}/table.tar.gz" "${S}/data/table" || die "table.tar.gz is not found"
fi
}
src_configure() {
local mycmakeargs="
$(cmake-utils_use_enable cairo)
$(cmake-utils_use_enable dbus)
$(cmake-utils_use_enable debug)
-DLIB_INSTALL_DIR=/usr/$(get_libdir)
$(cmake-utils_use_enable cairo CARIO)
$(cmake-utils_use_enable debug DEBUG)
$(cmake-utils_use_enable gtk GTK2_IM_MODULE)
$(cmake-utils_use_enable gtk3 GTK3_IM_MODULE)
$(cmake-utils_use_enable opencc OPENCC)
$(cmake-utils_use_enable pango PANGO)
$(cmake-utils_use_enable qt QT_IM_MODULE)
$(cmake-utils_use_enable opencc)
$(cmake-utils_use_enable pango)
$(cmake-utils_use_enable table)"
$(cmake-utils_use_enable static-libs STATIC)
$(cmake-utils_use_enable table TABLE)
$(cmake-utils_use_enable test TEST)"
cmake-utils_src_configure
}

@ -1,2 +1,3 @@
DIST pybliographer-1.2.12.tar.gz 883969 RMD160 ffdbde0f9fd1ac4be749267fe6ed2589b95cd1ce SHA1 0315a7ef5a6a600abe8e22ca2dcdf96d66911c98 SHA256 9c330ef5e8cc019dff74a61dc32117140033fd99ac45d2061bf546400902bd02
DIST pybliographer-1.2.14.tar.gz 955153 RMD160 796c70e625319d3ab2f506599440fef4a560bb98 SHA1 24a464b2aed6bb223618b2e32e196af4e400881f SHA256 1b1bf6e15fd197100394f232640689187859513e1c1c44a2b0e3af4061ddf245
DIST pybliographer-1.2.15.tar.gz 1859977 RMD160 fa8339773d95c46a610be4046f8d519986877c47 SHA1 990c037d4a70a8cdcff9dc26319ceb09ad1cd00c SHA256 dde66734e3839de92fe068c7804c1e580a049dfe91316df47ec0552236de6ce4

@ -0,0 +1,74 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/pybliographer/pybliographer-1.2.15.ebuild,v 1.1 2012/04/23 08:49:19 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2:2.6"
inherit autotools gnome2 python
DESCRIPTION="Pybliographer is a tool for working with bibliographic databases"
HOMEPAGE="http://pybliographer.org/"
SRC_URI="mirror://sourceforge/pybliographer/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DOCS="AUTHORS ChangeLog* NEWS TODO README"
DEPEND=">=app-text/recode-3.6-r1
app-text/scrollkeeper
dev-libs/glib:2
dev-python/gconf-python:2
dev-python/gnome-vfs-python:2
dev-python/libgnome-python:2
dev-python/pygobject:2
dev-python/pygtk:2
>=dev-python/python-bibtex-1.2.5"
RDEPEND="${DEPEND}"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
gnome2_src_prepare
# Disable byte-compilation of Python modules.
sed -i \
-e "/import compileall/d" \
Makefile.am || die "sed failed"
# Install Python modules into site-packages directories.
find -name Makefile.am | xargs sed -i \
-e "/^pybdir[[:space:]]*=[[:space:]]*/s:\$(datadir):$(python_get_sitedir):" || die "sed failed"
sed -i \
-e "s:\${datadir}/@PACKAGE@:$(python_get_sitedir)/@PACKAGE@:" \
etc/installer.in || die "sed failed"
sed -i \
-e "s:gladedir = \$(datadir):gladedir = $(python_get_sitedir):" \
Pyblio/GnomeUI/glade/Makefile.am || die "sed failed"
eautoreconf
}
src_configure() {
gnome2_src_configure --disable-depchecks
}
src_install() {
gnome2_src_install
python_convert_shebangs -r 2 "${ED}usr/bin"
}
pkg_postinst() {
gnome2_pkg_postinst
python_mod_optimize pybliographer
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup pybliographer
}

@ -0,0 +1,201 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.2_p24-r1.ebuild,v 1.1 2012/04/23 04:24:53 vapier Exp $
EAPI="1"
inherit eutils flag-o-matic toolchain-funcs multilib
# Official patchlevel
# See ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/
PLEVEL=${PV##*_p}
MY_PV=${PV/_p*}
MY_PV=${MY_PV/_/-}
MY_P=${PN}-${MY_PV}
[[ ${PV} != *_p* ]] && PLEVEL=0
patches() {
local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
[[ ${plevel} -eq 0 ]] && return 1
eval set -- {1..${plevel}}
set -- $(printf "${pn}${pv/\.}-%03d " "$@")
if [[ ${opt} == -s ]] ; then
echo "${@/#/${DISTDIR}/}"
else
local u
for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
printf "${u}/${pn}-${pv}-patches/%s " "$@"
done
fi
}
DESCRIPTION="The standard GNU Bourne again shell"
HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html"
SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
DEPEND=">=sys-libs/ncurses-5.2-r2
readline? ( >=sys-libs/readline-6.2 )
nls? ( virtual/libintl )"
RDEPEND="${DEPEND}
!<sys-apps/portage-2.1.7.16
!<sys-apps/paludis-0.26.0_alpha5"
# we only need yacc when the .y files get patched (bash42-005)
DEPEND+=" virtual/yacc"
S=${WORKDIR}/${MY_P}
pkg_setup() {
if is-flag -malign-double ; then #7332
eerror "Detected bad CFLAGS '-malign-double'. Do not use this"
eerror "as it breaks LFS (struct stat64) on x86."
die "remove -malign-double from your CFLAGS mr ricer"
fi
if use bashlogger ; then
ewarn "The logging patch should ONLY be used in restricted (i.e. honeypot) envs."
ewarn "This will log ALL output you enter into the shell, you have been warned."
fi
}
src_unpack() {
unpack ${MY_P}.tar.gz
cd "${S}"
# Include official patches
[[ ${PLEVEL} -gt 0 ]] && epatch $(patches -s)
# Clean out local libs so we know we use system ones
rm -rf lib/{readline,termcap}/*
touch lib/{readline,termcap}/Makefile.in # for config.status
sed -ri -e 's:\$[(](RL|HIST)_LIBSRC[)]/[[:alpha:]]*.h::g' Makefile.in || die
# Avoid regenerating docs after patches #407985
sed -i -r '/^(HS|RL)USER/s:=.*:=:' doc/Makefile.in || die
touch -r . doc/*
epatch "${FILESDIR}"/${PN}-4.2-execute-job-control.patch #383237
epatch "${FILESDIR}"/${PN}-4.2-parallel-build.patch
epatch "${FILESDIR}"/${PN}-4.2-no-readline.patch
epatch "${FILESDIR}"/${PN}-4.2-extglob-multibyte.patch #412867
}
src_compile() {
local myconf=
# For descriptions of these, see config-top.h
# bashrc/#26952 bash_logout/#90488 ssh/#24762
append-cppflags \
-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\"\' \
-DSTANDARD_UTILS_PATH=\'\"/bin:/usr/bin:/sbin:/usr/sbin\"\' \
-DSYS_BASHRC=\'\"/etc/bash/bashrc\"\' \
-DSYS_BASH_LOGOUT=\'\"/etc/bash/bash_logout\"\' \
-DNON_INTERACTIVE_LOGIN_SHELLS \
-DSSH_SOURCE_BASHRC \
$(use bashlogger && echo -DSYSLOG_HISTORY)
# Don't even think about building this statically without
# reading Bug 7714 first. If you still build it statically,
# don't come crying to us with bugs ;).
#use static && export LDFLAGS="${LDFLAGS} -static"
use nls || myconf="${myconf} --disable-nls"
# Historically, we always used the builtin readline, but since
# our handling of SONAME upgrades has gotten much more stable
# in the PM (and the readline ebuild itself preserves the old
# libs during upgrades), linking against the system copy should
# be safe.
# Exact cached version here doesn't really matter as long as it
# is at least what's in the DEPEND up above.
export ac_cv_rl_version=6.2
# Force linking with system curses ... the bundled termcap lib
# sucks bad compared to ncurses. For the most part, ncurses
# is here because readline needs it. But bash itself calls
# ncurses in one or two small places :(.
use plugins && append-ldflags -Wl,-rpath,/usr/$(get_libdir)/bash
econf \
--with-installed-readline=. \
--with-curses \
$(use_with afs) \
$(use_enable net net-redirections) \
--disable-profiling \
$(use_enable mem-scramble) \
$(use_with mem-scramble bash-malloc) \
$(use_enable readline) \
$(use_enable readline history) \
$(use_enable readline bang-history) \
${myconf}
emake || die
if use plugins ; then
emake -C examples/loadables all others || die
fi
}
src_install() {
emake install DESTDIR="${D}" || die
dodir /bin
mv "${D}"/usr/bin/bash "${D}"/bin/ || die
dosym bash /bin/rbash
insinto /etc/bash
doins "${FILESDIR}"/{bashrc,bash_logout}
insinto /etc/skel
for f in bash{_logout,_profile,rc} ; do
newins "${FILESDIR}"/dot-${f} .${f}
done
sed -i -e "s:#${USERLAND}#@::" "${D}"/etc/skel/.bashrc "${D}"/etc/bash/bashrc
sed -i -e '/#@/d' "${D}"/etc/skel/.bashrc "${D}"/etc/bash/bashrc
if use plugins ; then
exeinto /usr/$(get_libdir)/bash
doexe $(echo examples/loadables/*.o | sed 's:\.o::g') || die
fi
if use examples ; then
for d in examples/{functions,misc,scripts,scripts.noah,scripts.v2} ; do
exeinto /usr/share/doc/${PF}/${d}
insinto /usr/share/doc/${PF}/${d}
for f in ${d}/* ; do
if [[ ${f##*/} != PERMISSION ]] && [[ ${f##*/} != *README ]] ; then
doexe ${f}
else
doins ${f}
fi
done
done
fi
doman doc/*.1
dodoc README NEWS AUTHORS CHANGES COMPAT Y2K doc/FAQ doc/INTRO
dosym bash.info /usr/share/info/bashref.info
}
pkg_preinst() {
if [[ -e ${ROOT}/etc/bashrc ]] && [[ ! -d ${ROOT}/etc/bash ]] ; then
mkdir -p "${ROOT}"/etc/bash
mv -f "${ROOT}"/etc/bashrc "${ROOT}"/etc/bash/
fi
if [[ -L ${ROOT}/bin/sh ]]; then
# rewrite the symlink to ensure that its mtime changes. having /bin/sh
# missing even temporarily causes a fatal error with paludis.
local target=$(readlink "${ROOT}"/bin/sh)
local tmp=$(emktemp "${ROOT}"/bin)
ln -sf "${target}" "${tmp}"
mv -f "${tmp}" "${ROOT}"/bin/sh
fi
}
pkg_postinst() {
# If /bin/sh does not exist, provide it
if [[ ! -e ${ROOT}/bin/sh ]]; then
ln -sf bash "${ROOT}"/bin/sh
fi
}

@ -0,0 +1,21 @@
https://bugs.gentoo.org/412867
http://lists.gnu.org/archive/html/bug-bash/2012-04/msg00134.html
From: Andreas Schwab <schwab@linux-m68k.org>
To: Mike Frysinger <vapier@gentoo.org>
Cc: bug-bash@gnu.org
Subject: Re: string replace with multibyte chars and extglob fails with bash-4.2
diff --git a/subst.c b/subst.c
index 9feaa9c..ebd5138 100644
--- a/subst.c
+++ b/subst.c
@@ -4161,7 +4161,7 @@ match_wpattern (wstring, indices, wstrlen, wpat, mtype, sp, ep)
simple = (wpat[0] != L'\\' && wpat[0] != L'*' && wpat[0] != L'?' && wpat[0] != L'[');
#if defined (EXTENDED_GLOB)
if (extended_glob)
- simple |= (wpat[1] != L'(' || (wpat[0] != L'*' && wpat[0] != L'?' && wpat[0] != L'+' && wpat[0] != L'!' && wpat[0] != L'@')); /*)*/
+ simple &= (wpat[1] != L'(' || (wpat[0] != L'*' && wpat[0] != L'?' && wpat[0] != L'+' && wpat[0] != L'!' && wpat[0] != L'@')); /*)*/
#endif
/* If the pattern doesn't match anywhere in the string, go ahead and

@ -1 +1,2 @@
DIST libwps-0.2.4.tar.xz 271784 RMD160 693969eeb90b29bc5d34fa31f038e7e142d80f42 SHA1 bc32ac4c566191ffa51161cceacdffc931692f25 SHA256 40e7ec96e7715b2063b7fe87ff679956558e46bb3f1ca9f86b3bab6e3f2596d6
DIST libwps-0.2.5.tar.xz 75520 RMD160 6b56a537cc84a2c5db8e511179acc04ffa90232a SHA1 b265a28e28047c680fe354c047bafb815f604f0d SHA256 80e2ecbed617a87236c1519a59fa05725bced727192d060dea22f47774b76218

@ -0,0 +1,34 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.5.ebuild,v 1.1 2012/04/23 10:50:33 scarabeus Exp $
EAPI=4
DESCRIPTION="Microsoft Works file word processor format import filter library"
HOMEPAGE="http://libwps.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc debug static-libs"
RDEPEND="app-text/libwpd:0.9"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-doc/doxygen )
"
src_configure() {
econf \
--disable-werror \
$(use_enable static-libs static) \
--docdir=/usr/share/doc/${PF} \
$(use_with doc docs) \
$(use_enable debug)
}
src_install() {
default
find "${ED}" -name '*.la' -delete
}

@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.98.ebuild,v 1.8 2012/04/12 18:21:44 darkside Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.98.ebuild,v 1.9 2012/04/23 07:37:46 ssuominen Exp $
EAPI=4
inherit bash-completion-r1
inherit bash-completion-r1 eutils
DESCRIPTION="D-Bus bindings for glib"
HOMEPAGE="http://dbus.freedesktop.org/"
@ -14,22 +14,26 @@ SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc static-libs test"
RDEPEND=">=sys-apps/dbus-1.4.1
RDEPEND=">=sys-apps/dbus-1.4.16
>=dev-libs/glib-2.26
>=dev-libs/expat-1.95.8"
>=dev-libs/expat-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( >=dev-util/gtk-doc-1.4 )"
doc? ( dev-util/gtk-doc )"
# out of sources build directory
BD=${WORKDIR}/${P}-build
# out of sources build dir for make check
TBD=${WORKDIR}/${P}-tests-build
src_prepare() {
epatch "${FILESDIR}"/${P}-glib-2.31.patch
}
src_configure() {
local my_conf
local myconf
my_conf="--localstatedir=${EPREFIX}/var
myconf="--localstatedir=${EPREFIX}/var
--enable-bash-completion
$(use_enable debug verbose-mode)
$(use_enable debug asserts)
@ -40,14 +44,14 @@ src_configure() {
mkdir "${BD}"
cd "${BD}"
einfo "Running configure in ${BD}"
ECONF_SOURCE="${S}" econf ${my_conf}
ECONF_SOURCE="${S}" econf ${myconf}
if use test; then
mkdir "${TBD}"
cd "${TBD}"
einfo "Running configure in ${TBD}"
ECONF_SOURCE="${S}" econf \
${my_conf} \
${myconf} \
$(use_enable test checks) \
$(use_enable test tests) \
$(use_enable test asserts) \

@ -0,0 +1,21 @@
From 51222609f1af2eda0c223881dda3985435c3ad3f Mon Sep 17 00:00:00 2001
From: Colin Walters <walters@verbum.org>
Date: Sun, 08 Jan 2012 16:29:33 +0000
Subject: test-service-glib: Fix build with GLib 2.30
Only <glib.h> can be included directly.
---
diff --git a/test/core/test-service-glib.c b/test/core/test-service-glib.c
index 3355890..0568e40 100644
--- a/test/core/test-service-glib.c
+++ b/test/core/test-service-glib.c
@@ -11,7 +11,6 @@
#include <string.h>
#include <glib/gi18n.h>
#include <glib-object.h>
-#include <glib/gquark.h>
#include "my-object.h"
#include "my-object-subclass.h"
--
cgit v0.9.0.2-2-gbebe

@ -1,9 +1,7 @@
DIST gmime-2.2.27.tar.bz2 790878 RMD160 43a7c2cac36e97ad1391a33fce9ca4bc53ff1704 SHA1 3dbde8bc3e8c1380b7d94de193aa407dfa46e887 SHA256 73b0ffb5c6cfb8614a5fb0d3a9fd75856d65905be39133baf1dd12efe51f24eb
DIST gmime-2.4.26.tar.xz 729020 RMD160 5bc32a1afd87e41134ed2381e1044aab3703fddc SHA1 e91ecae390e11b062fea8354e097195368ce11a5 SHA256 bad2c9ceb36a685a8f31eccf047be9d761da781c777c7657b093f9ff0bba401f
DIST gmime-2.4.28.tar.xz 730112 RMD160 15d2dc3ee365fe60c13ffde8466f38c5cebb1677 SHA1 0006053f3eedae80fed0d62dae8abcd331f55754 SHA256 8487faf949ca60c7fb814338e6457d4b4260fcba361158667e1f3fe3e7cce13e
DIST gmime-2.4.32.tar.xz 685512 RMD160 fd22a66ddf0005f209f58d1df7beaa8881921147 SHA1 a0792ebee02050517dd7622dab9e12aa2818a3c1 SHA256 a0e8f3a1949e7281e92edc5dd6309a7ca34b6838c6acf7b7f1563a41b5ddd74b
DIST gmime-2.6.0.tar.xz 775012 RMD160 ac0b9a6e59c3abdf1b4ece55b3cc9a2ba7a1c0e3 SHA1 a78b4afab2664586145e49c4673d1351a7fbf813 SHA256 bc71b1860ea85efd3e17d9d8edef6ef7ba9880bc34d73dc683d36d8a48dcad17
DIST gmime-2.6.1.tar.xz 775204 RMD160 6d8cfc8cd0ea1a1b03efe3282cffcd976d1f8bc6 SHA1 fe977dfbeb05a44028f60204022f9cb895da9eac SHA256 89864f8dd7e9c8d1e8abb762401ef54123d2a1f456d41dcd63364a42ac0cc80e
DIST gmime-2.6.6.tar.xz 721152 RMD160 7f34364a4cdf01311ac5cd29271fbec810193f71 SHA1 89ef01346174b89616a02e348642c63800f64a68 SHA256 efdff4cebaaa9b8dfe99832eb16f54ce60a7e02c5d1f3964f15d4ae0ddf6b3ee
DIST gmime-2.6.7.tar.xz 721256 RMD160 b369a02a2ff0aaf65e09dd590f4470b9c7d0efd9 SHA1 cd8f0b9b1c7a30678f3fd58c652029c6ec4dbcaf SHA256 f382c2c5bba4e6a384905d536a58661d09783c389c5610e2e447f3c9853ffa1b
DIST gmime-2.6.9.tar.xz 721612 RMD160 6a58cb94f529c271238ab9a4e6ca96e011934fd4 SHA1 0caeae02d2f809ae81ae21a01a656a08060bff99 SHA256 5ebb60a35fa5c0789fe10f6e4af5040cb7bc4a707a8a962fbd57b4fc5595c0b9
DIST gmime-sharp.snk 596 RMD160 62a475a0a29bc8823ddcd25211e417bd0ee26221 SHA1 106d8812445a6fcd52526b2bc1184249dda6f4b8 SHA256 f71eb61399bb038acc847298b74eee6c03a8773309dc5c10929ee4aa0aeb3948

@ -1,84 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/gmime-2.4.26.ebuild,v 1.7 2011/10/30 15:00:03 armin76 Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit gnome2 eutils mono libtool
DESCRIPTION="Utilities for creating and parsing messages using MIME"
HOMEPAGE="http://spruce.sourceforge.net/gmime/"
SLOT="2.4"
LICENSE="LGPL-2.1"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="doc mono static-libs"
RDEPEND=">=dev-libs/glib-2.12:2
sys-libs/zlib
mono? (
dev-lang/mono
>=dev-dotnet/glib-sharp-2.4.0:2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? (
>=dev-util/gtk-doc-1.8
app-text/docbook-sgml-utils )
mono? ( dev-dotnet/gtk-sharp-gapi:2 )"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS PORTING README TODO"
G2CONF="${G2CONF}
--enable-cryptography
$(use_enable mono)
$(use_enable static-libs static)"
}
src_prepare() {
gnome2_src_prepare
if use doc ; then
# db2html should be docbook2html
sed -i -e 's:db2html:docbook2html:' \
configure.in configure || die "sed failed (1)"
sed -i -e 's:db2html:docbook2html -o gmime-tut:g' \
docs/tutorial/Makefile.am docs/tutorial/Makefile.in \
|| die "sed failed (2)"
# Fix doc targets (bug #97154)
sed -i -e 's!\<\(tmpl-build.stamp\): !\1 $(srcdir)/tmpl/*.sgml: !' \
gtk-doc.make docs/reference/Makefile.in || die "sed failed (3)"
fi
# Use correct libdir for mono assembly
sed -i -e 's:^libdir.*:libdir=@libdir@:' \
-e 's:^prefix=:exec_prefix=:' \
-e 's:prefix)/lib:libdir):' \
mono/gmime-sharp-2.4.pc.in mono/Makefile.{am,in} || die "sed failed (4)"
elibtoolize
}
src_compile() {
MONO_PATH="${S}" gnome2_src_compile
if use doc; then
emake -C docs/tutorial html
fi
}
src_install() {
GACUTIL_FLAGS="/root '${ED}/usr/$(get_libdir)' /gacdir '${EPREFIX}/usr/$(get_libdir)' /package ${PN}" \
gnome2_src_install
if use doc ; then
# we don't use docinto/dodoc, because we don't want html doc gzipped
insinto /usr/share/doc/${PF}/tutorial
doins docs/tutorial/html/*
fi
# rename these two, so they don't conflict with app-arch/sharutils
# (bug #70392) Ticho, 2004-11-10
mv "${ED}/usr/bin/uuencode" "${ED}/usr/bin/gmime-uuencode-${SLOT}" || die
mv "${ED}/usr/bin/uudecode" "${ED}/usr/bin/gmime-uudecode-${SLOT}" || die
}

@ -1,86 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/gmime-2.6.0.ebuild,v 1.7 2011/10/30 15:01:48 armin76 Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit gnome2 eutils mono libtool
DESCRIPTION="Utilities for creating and parsing messages using MIME"
HOMEPAGE="http://spruce.sourceforge.net/gmime/"
SLOT="2.6"
LICENSE="LGPL-2.1"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="doc mono static-libs"
RDEPEND=">=dev-libs/glib-2.18.0:2
sys-libs/zlib
>=app-crypt/gpgme-1.1.6
mono? (
dev-lang/mono
>=dev-dotnet/glib-sharp-2.4.0:2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? (
>=dev-util/gtk-doc-1.8
app-text/docbook-sgml-utils )
mono? ( dev-dotnet/gtk-sharp-gapi:2 )"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS PORTING README TODO"
G2CONF="${G2CONF}
--enable-cryptography
--disable-strict-parser
$(use_enable mono)
$(use_enable static-libs static)"
}
src_prepare() {
gnome2_src_prepare
if use doc ; then
# db2html should be docbook2html
sed -i -e 's:db2html:docbook2html:' \
configure.ac configure || die "sed failed (1)"
sed -i -e 's:db2html:docbook2html -o gmime-tut:g' \
docs/tutorial/Makefile.am docs/tutorial/Makefile.in \
|| die "sed failed (2)"
# Fix doc targets (bug #97154)
sed -i -e 's!\<\(tmpl-build.stamp\): !\1 $(srcdir)/tmpl/*.sgml: !' \
gtk-doc.make docs/reference/Makefile.in || die "sed failed (3)"
fi
# Use correct libdir for mono assembly
sed -i -e 's:^libdir.*:libdir=@libdir@:' \
-e 's:^prefix=:exec_prefix=:' \
-e 's:prefix)/lib:libdir):' \
mono/gmime-sharp.pc.in mono/Makefile.{am,in} || die "sed failed (4)"
elibtoolize
}
src_compile() {
MONO_PATH="${S}" gnome2_src_compile
if use doc; then
emake -C docs/tutorial html
fi
}
src_install() {
GACUTIL_FLAGS="/root '${ED}/usr/$(get_libdir)' /gacdir '${EPREFIX}/usr/$(get_libdir)' /package ${PN}" \
gnome2_src_install
if use doc ; then
# we don't use docinto/dodoc, because we don't want html doc gzipped
insinto /usr/share/doc/${PF}/tutorial
doins docs/tutorial/html/*
fi
# rename these two, so they don't conflict with app-arch/sharutils
# (bug #70392) Ticho, 2004-11-10
mv "${ED}/usr/bin/uuencode" "${ED}/usr/bin/gmime-uuencode-${SLOT}" || die
mv "${ED}/usr/bin/uudecode" "${ED}/usr/bin/gmime-uudecode-${SLOT}" || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/gmime-2.6.6.ebuild,v 1.1 2012/02/25 13:07:16 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/gmime-2.6.9.ebuild,v 1.1 2012/04/23 10:37:36 pacho Exp $
EAPI="4"
GCONF_DEBUG="no"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgit2/libgit2-0.16.0.ebuild,v 1.2 2012/02/26 07:58:58 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgit2/libgit2-0.16.0.ebuild,v 1.3 2012/04/23 07:25:00 heroxbd Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="mirror://github/${PN}/${PN}/${P}.tar.gz"
LICENSE="GPL-2-with-linking-exception"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~x86 ~ppc-macos"
IUSE="examples test"
RDEPEND="sys-libs/zlib"
@ -22,7 +22,7 @@ DOCS=( README.md )
src_configure() {
local mycmakeargs=(
-DINSTALL_LIB=/usr/$(get_libdir)
-DINSTALL_LIB="${EPREFIX}/usr/$(get_libdir)"
$(cmake-utils_use_build test TESTS)
)
cmake-utils_src_configure

@ -1,6 +1 @@
DIST Chameleon-2.2.tar.gz 114538 RMD160 44c7ca5fdb02d261f3d04119c6ebb992d23a8b96 SHA1 01f42c10fa988a43f5613bf22dee911c0f8f3042 SHA256 776f58e7c81af269ab46d979fe44936b102329eaa10b56a2bdf953890512c88b
DIST Chameleon-2.4.3.tar.gz 127377 RMD160 b9670fbcee6dd5f6c8b46ac9b766c0ff20d8e73b SHA1 a2aeba3e77959a8e4fee96e262e3e703221c1ca3 SHA256 fbd611e37f970740b9350b0d3e584b2e6cad2d70832618422502b2772e85f66f
DIST Chameleon-2.6.1.tar.gz 139570 RMD160 75f027c201ec416cb9f66d4accb6c4fde5708493 SHA1 d6210056c423c50b082f86741e2b8b1ac6b31179 SHA256 c4e8fde4f49e698ad6421043379109c582d5638e0ccefed2302632d3304c3758
DIST Chameleon-2.7.0.tar.gz 142232 RMD160 78b4a9b60545b353dea9671b9d7d22ee5495019c SHA1 d690eeb4083755ffd7be564d57a4cd48479e8f31 SHA256 a1575dba39b8cee0e30b520971acc1e5db54574c0a0824cc756ea5a2fcea0301
DIST Chameleon-2.7.3.tar.gz 145191 RMD160 a88573d8d7f05dac1d60d40cc263528dc562afea SHA1 c59e9c8a92e814276a1dfde342d7940e9014d020 SHA256 8487c02e488bf36d3ef1eabdec17a866d32c081f56fb775dbc77fb0089a7bd1f
DIST Chameleon-2.8.2.tar.gz 148458 RMD160 b115769caf5dfc4ff1de24534dee1d390bce7c81 SHA1 f575fb7bdea24d743a2f416d9531c6ddbd8c626c SHA256 702457a9f63b6ed1f963ffc5a8f546e9303402190b560e829ded219eaef6fea4

@ -1,46 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/chameleon-2.2-r1.ebuild,v 1.4 2011/09/14 08:23:19 djc Exp $
EAPI=3
SUPPORT_PYTHON_ABIS=1
PYTHON_DEPEND="2:2.7 3"
RESTRICT_PYTHON_ABIS="2.[456]"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils
MY_PN="Chameleon"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Fast HTML/XML template compiler for Python"
HOMEPAGE="http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="repoze"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
DEPEND="dev-python/setuptools
doc? ( dev-python/sphinx )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_compile() {
distutils_src_compile
if use doc ; then
emake html || die "make html failed"
fi
}
src_install() {
distutils_src_install
if use doc ; then
dohtml -r _build/html/* || die "dohtml failed"
fi
}

@ -1,46 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/chameleon-2.4.3.ebuild,v 1.1 2011/09/14 08:26:17 djc Exp $
EAPI=3
SUPPORT_PYTHON_ABIS=1
PYTHON_DEPEND="2:2.7 3"
RESTRICT_PYTHON_ABIS="2.[456]"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils
MY_PN="Chameleon"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Fast HTML/XML template compiler for Python"
HOMEPAGE="http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="repoze"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
DEPEND="dev-python/setuptools
doc? ( dev-python/sphinx )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_compile() {
distutils_src_compile
if use doc ; then
emake html || die "make html failed"
fi
}
src_install() {
distutils_src_install
if use doc ; then
dohtml -r _build/html/* || die "dohtml failed"
fi
}

@ -1,58 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/chameleon-2.6.1.ebuild,v 1.1 2011/12/30 04:26:33 patrick Exp $
EAPI=3
SUPPORT_PYTHON_ABIS=1
PYTHON_DEPEND="2:2.7 3"
RESTRICT_PYTHON_ABIS="2.[456]"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils
MY_PN="Chameleon"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Fast HTML/XML template compiler for Python"
HOMEPAGE="http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="repoze"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
DEPEND="dev-python/setuptools
doc? ( dev-python/sphinx )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_compile() {
distutils_src_compile
if use doc ; then
emake html || die "make html failed"
fi
}
src_install() {
distutils_src_install
delete_tests_and_incompatible_modules() {
rm -fr "${ED}$(python_get_sitedir)/chameleon/tests"
if [[ "$(python_get_version -l --major)" == "3" ]]; then
rm -f "${ED}$(python_get_sitedir)/chameleon/"{benchmark.py,py25.py}
fi
}
python_execute_function -q delete_tests_and_incompatible_modules
if use doc; then
pushd _build/html > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static
popd > /dev/null
fi
}

@ -1,58 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/chameleon-2.7.0.ebuild,v 1.1 2012/02/07 08:11:14 patrick Exp $
EAPI=3
SUPPORT_PYTHON_ABIS=1
PYTHON_DEPEND="2:2.7 3"
RESTRICT_PYTHON_ABIS="2.[456]"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils
MY_PN="Chameleon"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Fast HTML/XML template compiler for Python"
HOMEPAGE="http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="repoze"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
DEPEND="dev-python/setuptools
doc? ( dev-python/sphinx )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_compile() {
distutils_src_compile
if use doc ; then
emake html || die "make html failed"
fi
}
src_install() {
distutils_src_install
delete_tests_and_incompatible_modules() {
rm -fr "${ED}$(python_get_sitedir)/chameleon/tests"
if [[ "$(python_get_version -l --major)" == "3" ]]; then
rm -f "${ED}$(python_get_sitedir)/chameleon/"{benchmark.py,py25.py}
fi
}
python_execute_function -q delete_tests_and_incompatible_modules
if use doc; then
pushd _build/html > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static
popd > /dev/null
fi
}

@ -1,58 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/chameleon-2.7.3.ebuild,v 1.1 2012/03/09 08:25:52 patrick Exp $
EAPI=3
SUPPORT_PYTHON_ABIS=1
PYTHON_DEPEND="2:2.7 3"
RESTRICT_PYTHON_ABIS="2.[456]"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils
MY_PN="Chameleon"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Fast HTML/XML template compiler for Python"
HOMEPAGE="http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="repoze"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
DEPEND="dev-python/setuptools
doc? ( dev-python/sphinx )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_compile() {
distutils_src_compile
if use doc ; then
emake html || die "make html failed"
fi
}
src_install() {
distutils_src_install
delete_tests_and_incompatible_modules() {
rm -fr "${ED}$(python_get_sitedir)/chameleon/tests"
if [[ "$(python_get_version -l --major)" == "3" ]]; then
rm -f "${ED}$(python_get_sitedir)/chameleon/"{benchmark.py,py25.py}
fi
}
python_execute_function -q delete_tests_and_incompatible_modules
if use doc; then
pushd _build/html > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static
popd > /dev/null
fi
}

@ -1,15 +1,15 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/egenix-mx-base-3.2.3.ebuild,v 1.2 2012/04/20 00:24:45 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/egenix-mx-base-3.2.3.ebuild,v 1.3 2012/04/23 11:12:49 xarthisius Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython *-pypy-*"
inherit distutils
inherit distutils eutils
DESCRIPTION="eGenix mx Base Distribution for Python - mxDateTime, mxTextTools, mxProxy, mxTools, mxBeeBase, mxStack, mxQueue, mxURL, mxUID"
DESCRIPTION="eGenix utils for Python"
HOMEPAGE="http://www.egenix.com/products/python/mxBase http://pypi.python.org/pypi/egenix-mx-base"
SRC_URI="http://downloads.egenix.com/python/${P}.tar.gz"
@ -32,8 +32,7 @@ src_prepare() {
# Avoid unnecessary overriding of settings. Distutils in Gentoo is patched in better way.
sed -e 's/if compiler.compiler_type == "unix":/if False:/' -i mxSetup.py || die "sed failed"
# http://hg.python.org/cpython/rev/6240ff5dfebe
sed -e "s/from distutils.ccompiler import customize_compiler/from distutils.sysconfig import customize_compiler/" -i mxSetup.py || die "sed failed"
epatch "${FILESDIR}"/${P}-distutils.patch
}
src_compile() {

@ -0,0 +1,37 @@
Upstream move customize_compiler yet again...
http://lists.egenix.com/mailman-archives/egenix-users/2012-April/114841.html
http://hg.python.org/cpython/rev/6240ff5dfebe
https://bugs.gentoo.org/show_bug.cgi?id=412739
Patch written by Kacper Kowalik <xarthisius@gentoo.org>
--- a/mxSetup.py
+++ b/mxSetup.py
@@ -298,10 +298,15 @@
from distutils.command.clean import clean
import distutils.archive_util
+try:
+ from distutils.sysconfig import customize_compiler
+except ImportError:
+ from distutils.ccompiler import customize_compiler
+
if (python_version < '2.7' or
(python_version > '3.0' and python_version < '3.2')):
from distutils.sysconfig import \
- get_config_h_filename, parse_config_h, customize_compiler, \
+ get_config_h_filename, parse_config_h, \
get_config_vars, get_python_version
from distutils.util import get_platform
@@ -313,10 +318,6 @@
get_config_h_filename, parse_config_h, get_path, \
get_config_vars, get_python_version, get_platform
- # This API was moved from distutils.sysconfig to distutils.ccompiler
- # in Python 2.7
- from distutils.ccompiler import customize_compiler
-
def get_python_include_dir():
""" Return the path to the Python include dir.

@ -2,5 +2,4 @@ DIST selenium-webdriver-2.16.0.gem 3949568 RMD160 696e0d987f12573e208b067a08d334
DIST selenium-webdriver-2.18.0.gem 3961344 RMD160 5afc449014ef39056f2021be430ff159d1efccb1 SHA1 86671a60b23db47e9924aa3fe58b85cccc66b0cd SHA256 e92dd7a0903b2271290dbd1df8efd5c796cfd383d5ad6005d0c26cb9cc12559d
DIST selenium-webdriver-2.19.0.gem 3972096 RMD160 6881c62c296b69ed0002ca93e20149c1f27aa261 SHA1 313277c6df9fba5cb7159a921bfe98782f7e0fe2 SHA256 9482ffa8a0fd813a272f4cbf1e2415a0576cdab49d5ba131c90388bd235a10de
DIST selenium-webdriver-2.20.0.gem 4201472 RMD160 0c7b8d0d5dea6b5911c815a90ec7acb4d29ad3f1 SHA1 598ef21c435ccbe1bb493512a13aa1131010979c SHA256 e3b02d0f4824490f136d3e97325b884b01d1adc0d3dedae212c8e77756dd67b4
DIST selenium-webdriver-2.21.1.gem 2546688 RMD160 b411c1c02506ffd9aac4954852b7c48f1728c8e5 SHA1 254e79943c6760e346792e7c21d68efd5a473480 SHA256 09250dc527736137579c766e18a8dc7b0363ca5239342e37e9b28833b37921b6
DIST selenium-webdriver-2.21.2.gem 2546688 RMD160 55f6aac400a2c7047f5b9956e02db7e04fb6795f SHA1 8d982be40ec7db4a4e82083d28a6e946e69db344 SHA256 07f291d7c1828ba22b2e50947199d766a53fff9ad0016e479b47b35bc5cc1161

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/selenium-webdriver/selenium-webdriver-2.21.1.ebuild,v 1.1 2012/04/19 06:00:31 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/selenium-webdriver/selenium-webdriver-2.21.2-r1.ebuild,v 1.1 2012/04/23 09:47:31 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18"
@ -32,3 +32,9 @@ ruby_add_rdepend ">=dev-ruby/childprocess-0.2.5
>=dev-ruby/ffi-1.0.9
>=dev-ruby/multi_json-1.0.4
dev-ruby/rubyzip"
all_ruby_prepare() {
# Make websocket a development dependency since it is only needed
# for the safari driver which we don't support on Gentoo.
sed -i -e '/libwebsocket/,/version_requirements/ s/runtime/development/' ../metadata || die
}

@ -1,34 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/selenium-webdriver/selenium-webdriver-2.21.2.ebuild,v 1.1 2012/04/21 07:03:48 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18"
# NOTE: this package contains precompiled code. It appears that all
# source code can be found at http://code.google.com/p/selenium/ but the
# repository is not organized in a way so that we can easily rebuild the
# suited shared object. We'll just try our luck with the precompiled
# objects for now.
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGES README"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_QA_ALLOWED_LIBS="x_ignore_nofocus.so"
inherit ruby-fakegem
DESCRIPTION="This gem provides Ruby bindings for WebDriver."
HOMEPAGE="http://gemcutter.org/gems/selenium-webdriver"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
ruby_add_rdepend ">=dev-ruby/childprocess-0.2.5
>=dev-ruby/ffi-1.0.9
>=dev-ruby/multi_json-1.0.4
dev-ruby/rubyzip"

@ -1,3 +1,4 @@
DIST buildbot-slave-0.8.3.tar.gz 86438 RMD160 d556acd364e98d8677c484729211947c3087870f SHA1 f42d29ac0d3d630f277f13e39296578abb1d16ac SHA256 e0d83c5894495b82c0b702480653ea712e5288f644a0f0661099e66ba64ed56c
DIST buildbot-slave-0.8.5.tar.gz 98133 RMD160 f3247de750772c6e0c1137063388dd96efa1542e SHA1 b30189a5a9e773f430c2794dd73bdc74388a1627 SHA256 637c23fcdedbc282b596c2ce652b74be96aa9788c39d9b69f903bdb8c2ede217
DIST buildbot-slave-0.8.6.tar.gz 101246 RMD160 0930d6907ecb0e8a506c48bca6669751d44dd7d7 SHA1 a09ecc95b1a3906f761d1667611b3dd187fe4fef SHA256 d3d4646e846e3d74dd01c079913c613cdb9442dd88d2d32895201342806232fb
DIST buildbot-slave-0.8.6p1.tar.gz 101660 RMD160 e1a73bab81662bf8e3c96ec0f8d27b4dd6126c88 SHA1 4d23ed641199f956cd2b71b8b93a5d16216cfc33 SHA256 43e6f94a7c37e103af755bc4f9b2ede945cf3c4247b22f595c5ab1c21ccf092f

@ -0,0 +1,61 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.6_p1.ebuild,v 1.1 2012/04/23 05:47:50 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
DISTUTILS_SRC_TEST="trial buildslave"
DISTUTILS_DISABLE_TEST_DEPENDENCY="1"
inherit distutils eutils
DESCRIPTION="BuildBot Slave Daemon"
HOMEPAGE="http://trac.buildbot.net/ http://code.google.com/p/buildbot/ http://pypi.python.org/pypi/buildbot-slave"
MY_PV="${PV/_p/p}"
MY_P="${PN}-${MY_PV}"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
IUSE="test"
RDEPEND="dev-python/setuptools
>=dev-python/twisted-2
!!<dev-util/buildbot-0.8.1
!<dev-util/buildbot-0.8.3"
DEPEND="${RDEPEND}
test? ( dev-python/mock )"
PYTHON_MODNAME="buildslave"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
python_pkg_setup
enewuser buildbot
}
src_install() {
distutils_src_install
doman docs/buildslave.1 || die "doman failed"
newconfd "${FILESDIR}/buildslave.confd" buildslave || die "newconfd failed"
newinitd "${FILESDIR}/buildslave.initd" buildslave || die "newinitd failed"
}
pkg_postinst() {
distutils_pkg_postinst
elog "The \"buildbot\" user and the \"buildslave\" init script has been added"
elog "to support starting buildslave through Gentoo's init system. To use this,"
elog "set up your build slave following the documentation, make sure the"
elog "resulting directories are owned by the \"buildbot\" user and point"
elog "\"${ROOT}etc/conf.d/buildslave\" at the right location. The scripts can"
elog "run as a different user if desired. If you need to run more than one"
elog "build slave, just copy the scripts."
}

@ -1,3 +1,4 @@
DIST buildbot-0.8.3p1.tar.gz 4068355 RMD160 737e4863c371d3e9d30063564ae62e35eb70a856 SHA1 7b0c2d3a7c2acc66c3c95fc7a92acb2bc2627409 SHA256 0a49d35a75524a54dbbb875730fdf7abd8b96cae160af0457b4f5239b1fefa37
DIST buildbot-0.8.5.tar.gz 4389306 RMD160 595f3ed45f0e5a4500a102027ef71dc376a82894 SHA1 88329d295f46f9b60a3d346c4a04a58b56fa2083 SHA256 9b2f761447db13e4068870567b36732d419d8f72f452b450c61089db98558a9c
DIST buildbot-0.8.6.tar.gz 4455394 RMD160 c25917ccfc875db022daf6b66106d7412667134e SHA1 e5f8849e13612d66e4d8271ecb6c778af3d8538e SHA256 9e7673bd79e57ff105e0916b9751aafda59cc2a8765c929710ef8e75e1162893
DIST buildbot-0.8.6p1.tar.gz 4454055 RMD160 37dee66c33de2e3e8e0e480e474ef5dfe9ef8631 SHA1 43e323f3abaf956b43d59812b1e1173d86fdada7 SHA256 4d10a27809bf82b367cf6230e4e3628f4df8940787d6affed7d787dc52016c2c

@ -0,0 +1,106 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot/buildbot-0.8.6_p1.ebuild,v 1.1 2012/04/23 05:47:05 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
DISTUTILS_SRC_TEST="trial"
DISTUTILS_DISABLE_TEST_DEPENDENCY="1"
inherit distutils eutils
MY_PV="${PV/_p/p}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="BuildBot build automation system"
HOMEPAGE="http://trac.buildbot.net/ http://code.google.com/p/buildbot/ http://pypi.python.org/pypi/buildbot"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86"
IUSE="doc examples irc mail manhole test"
# sqlite3 module of Python 2.5 is not supported.
RDEPEND=">=dev-python/jinja-2.1
|| ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson )
|| ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite] dev-python/pysqlite:2 )
>=dev-python/twisted-8.0.0
dev-python/twisted-web
dev-python/sqlalchemy
dev-python/sqlalchemy-migrate
irc? ( dev-python/twisted-words )
mail? ( dev-python/twisted-mail )
manhole? ( dev-python/twisted-conch )"
DEPEND="${DEPEND}
dev-python/setuptools
doc? ( sys-apps/texinfo )
test? (
dev-python/mock
dev-python/twisted-mail
dev-python/twisted-web
dev-python/twisted-words
)"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
python_pkg_setup
enewuser buildbot
}
src_prepare() {
distutils_src_prepare
# https://github.com/buildbot/buildbot/commit/a3abed70546b3742964994517bb27556e06f6e20
sed -e "s/sqlalchemy-migrate == 0.6/sqlalchemy-migrate ==0.6, ==0.7/" -i setup.py || die "sed failed"
}
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
pushd docs > /dev/null
emake buildbot.html buildbot.info
popd > /dev/null
fi
}
src_install() {
distutils_src_install
doman docs/buildbot.1
if use doc; then
dohtml -r docs/buildbot.html docs/images
doinfo docs/buildbot.info
fi
if use examples; then
insinto /usr/share/doc/${PF}
doins -r contrib docs/examples
fi
newconfd "${FILESDIR}/buildmaster.confd" buildmaster
newinitd "${FILESDIR}/buildmaster.initd" buildmaster
}
pkg_postinst() {
distutils_pkg_postinst
elog "The \"buildbot\" user and the \"buildmaster\" init script has been added"
elog "to support starting buildbot through Gentoo's init system. To use this,"
elog "set up your build master following the documentation, make sure the"
elog "resulting directories are owned by the \"buildbot\" user and point"
elog "\"${ROOT}etc/conf.d/buildmaster\" at the right location. The scripts can"
elog "run as a different user if desired. If you need to run more than one"
elog "build master, just copy the scripts."
elog
elog "Upstream recommends the following when upgrading:"
elog "Each time you install a new version of Buildbot, you should run the"
elog "\"buildbot upgrade-master\" command on each of your pre-existing build masters."
elog "This will add files and fix (or at least detect) incompatibilities between"
elog "your old config and the new code."
}

@ -1,2 +1 @@
DIST nemiver-0.9.1.tar.xz 2280680 RMD160 77546ec22e0b1faf26c2c0f98b2302dee539759c SHA1 1c9f158a273bee87398eefb77e86dc25d007772e SHA256 a0e72b0437646190403be1fb53a60405f50bda048e13f982b42f14be41d51c99
DIST nemiver-0.9.2.tar.xz 2294260 RMD160 041b1e6a42b76f0829762fb96417c84c93c408f9 SHA1 368cf73bc04645ec4980e3d30c4e05d4ce5f0b69 SHA256 770392965a45d728b798da3c6111c4e7cb55d51f109a78aedead99083f8e2520

@ -0,0 +1,51 @@
From 306cf3ae850af238dc8ef79e9cb8cf8f84e2418f Mon Sep 17 00:00:00 2001
From: Dustin Polke <DuPol@gmx.de>
Date: Thu, 19 Apr 2012 15:58:25 +0000
Subject: Fix XML validation.
This fixes the following validation failures:
./de/nemiver.xml:82: element releaseinfo: validity error : Element
application is not declared in releaseinfo list of possible children
./fr/nemiver.xml:38: element publishername: validity error : Element
application is not declared in publishername list of possible children
./fr/nemiver.xml:82: element releaseinfo: validity error : Element
application is not declared in releaseinfo list of possible children
---
diff --git a/help/de/de.po b/help/de/de.po
index a8b3794..6e4c0e9 100644
--- a/help/de/de.po
+++ b/help/de/de.po
@@ -274,8 +274,7 @@ msgstr "Aktualisierung für die Version 0.5.0"
#: C/nemiver.xml:82(releaseinfo)
msgid "This manual describes version 0.5.0 of Nemiver."
msgstr ""
-"Dieses Handbuch beschreibt Version 0.5.0 von <application>Nemiver</"
-"application>."
+"Dieses Handbuch beschreibt Version 0.5.0 von Nemiver."
#: C/nemiver.xml:85(title)
msgid "Feedback"
diff --git a/help/fr/fr.po b/help/fr/fr.po
index eadcfdb..a28e12d 100644
--- a/help/fr/fr.po
+++ b/help/fr/fr.po
@@ -258,7 +258,7 @@ msgstr "Jonathon Jongsma"
#: C/nemiver.xml:38(publishername)
msgid "Nemiver Project"
-msgstr "Projet <application>Nemiver</application>"
+msgstr "Projet Nemiver"
#: C/nemiver.xml:43(firstname)
msgid "Jonathon"
@@ -296,7 +296,7 @@ msgstr "Mise à jour pour la version 0.5.0"
msgid "This manual describes version 0.5.0 of Nemiver."
msgstr ""
"Le présent manuel décrit le fonctionnement de la version 0.5.0 de "
-"<application>Nemiver</application>."
+"Nemiver."
#: C/nemiver.xml:85(title)
msgid "Feedback"
--
cgit v0.9.0.2

@ -1,48 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nemiver/nemiver-0.9.1.ebuild,v 1.1 2012/02/12 16:20:52 eva Exp $
EAPI="4"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="A gtkmm front end to the GNU Debugger (gdb)"
HOMEPAGE="http://projects.gnome.org/nemiver/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="memoryview"
RDEPEND=">=dev-libs/glib-2.16:2
>=dev-cpp/glibmm-2.30:2
>=dev-cpp/gtkmm-3:3.0
>=dev-cpp/gtksourceviewmm-3:3.0
>=gnome-base/gsettings-desktop-schemas-0.0.1
>=gnome-base/libgtop-2.19
>=x11-libs/vte-0.28:2.90
>=dev-db/sqlite-3:3
sys-devel/gdb
dev-libs/boost
memoryview? ( >=app-editors/ghex-2.90:2 )"
# FIXME: dynamiclayout needs unreleased stable gdlmm:3
# dynamiclayout? ( >=dev-cpp/gdlmm-3.0:3 )
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
>=sys-devel/gettext-0.17
>=dev-util/intltool-0.40
>=app-text/scrollkeeper-0.3.11
>=app-text/gnome-doc-utils-0.3.2
app-text/docbook-xml-dtd:4.1.2"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS README TODO"
G2CONF="${G2CONF}
--disable-symsvis
--disable-dynamiclayout
--enable-gsettings
$(use_enable memoryview)
--disable-static"
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nemiver/nemiver-0.9.2.ebuild,v 1.2 2012/04/18 20:34:16 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/nemiver/nemiver-0.9.2.ebuild,v 1.3 2012/04/23 09:42:20 pacho Exp $
EAPI="4"
GCONF_DEBUG="yes"
@ -46,3 +46,9 @@ pkg_setup() {
$(use_enable memoryview)
--disable-static"
}
src_prepare() {
# Fix XML validation, bug #413143
epatch "${FILESDIR}/${P}-xml-validation.patch"
gnome2_src_prepare
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/games-ggz.eclass,v 1.7 2011/08/04 19:31:38 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/games-ggz.eclass,v 1.8 2012/04/23 07:16:34 mr_bones_ Exp $
inherit base
@ -20,9 +20,11 @@ SRC_URI="mirror://ggz/${PV}/${P}.tar.gz"
GGZ_MODDIR="/usr/share/ggz/modules"
games-ggz_src_configure() {
local reg="--enable-noregistry=\"${GGZ_MODDIR}\""
[[ ${PN} == ggz-client-libs ]] && reg=''
econf \
--disable-dependency-tracking \
--enable-noregistry="${GGZ_MODDIR}" \
$reg \
$(has debug ${IUSE} && ! use debug && echo --disable-debug) \
"$@"
}

@ -1,3 +1,4 @@
DIST gnome-mplayer-0.9.6-gconf-2.m4.tgz 763 RMD160 cdf17b11dea5da26cc9a17fff953480ee1c39a0f SHA1 e0403cd21c59e305ae26e2d511740a9b1ea17be1 SHA256 d392f4cdb99f398ffb67674a2f0e64debcc4574f5ea203c1c25e91532fce894f
DIST libgsf-1.14.21.tar.bz2 597463 RMD160 168c0200fde9792bd8c7937d1c83f3af9c8c0193 SHA1 17981f238f1f8dddb7af01c161bd6a1c4d5e85d2 SHA256 eef0a9d6eca4e6af6c16b208947e3c958c428b94d22792bdd0b80c08a4b301db
DIST libgsf-1.14.22.tar.xz 506188 RMD160 a47fa284ace94ead51f2130cba31d8962d554f3b SHA1 ca1c5aa92a840e322d7cafd9f2dede3d38a69660 SHA256 a5f23be3cab72abd91bb443a32f41d6adc73250285b53787460750b6d60b783f
DIST libgsf-1.14.23.tar.xz 515136 RMD160 443d250b2f498c771c972851824cc717b7b29c62 SHA1 4f19933342b2d42246200e3522b0797a032fdf19 SHA256 bfc1c6178f5319d5e6d854c380ce26542f9a103a5ff31c9d25a834e0be52fb17

@ -0,0 +1,121 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.23.ebuild,v 1.1 2012/04/23 10:47:41 pacho Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
PYTHON_DEPEND="python? 2:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.[45] 3.* *-jython"
inherit autotools eutils gnome2 python multilib
DESCRIPTION="The GNOME Structured File Library"
HOMEPAGE="http://projects.gnome.org/libgsf/"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="bzip2 doc gtk +introspection python"
RDEPEND=">=dev-libs/glib-2.26:2
>=dev-libs/libxml2-2.4.16:2
sys-libs/zlib
bzip2? ( app-arch/bzip2 )
gtk? ( x11-libs/gtk+:2 )
introspection? ( >=dev-libs/gobject-introspection-0.6.4 )
python? (
>=dev-python/pygobject-2.10:2
>=dev-python/pygtk-2.10:2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=dev-util/intltool-0.35.0
dev-util/gtk-doc-am
dev-libs/gobject-introspection-common
doc? ( >=dev-util/gtk-doc-1 )"
pkg_setup() {
DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO"
G2CONF="${G2CONF}
--with-gio
--disable-static
$(use_with bzip2 bz2)
$(use_with python)
$(use_with gtk gdk-pixbuf)"
use python && python_pkg_setup
}
src_prepare() {
# Drop DEPRECATED flags
sed -i -e "s/ -DG_DISABLE_DEPRECATED//" configure.in configure || die
# Python bindings are built/installed manually.
sed -e "/SUBDIRS += python/d" -i Makefile.am || die
use python && python_clean_py-compile_files
intltoolize --force --copy --automake || die "intltoolize failed"
eautoreconf
gnome2_src_prepare
}
src_compile() {
gnome2_src_compile
if use python; then
python_copy_sources python
building() {
emake \
PYTHON_INCLUDES="-I$(python_get_includedir)" \
pyexecdir="$(python_get_sitedir)" \
pythondir="$(python_get_sitedir)"
}
python_execute_function -s --source-dir python building
fi
}
src_install() {
gnome2_src_install
if use python; then
installation() {
emake \
DESTDIR="${D}" \
pyexecdir="$(python_get_sitedir)" \
pythondir="$(python_get_sitedir)" \
install
}
python_execute_function -s --source-dir python installation
python_clean_installation_image
fi
}
pkg_preinst() {
gnome2_pkg_preinst
preserve_old_lib /usr/$(get_libdir)/libgsf-1.so.1
preserve_old_lib /usr/$(get_libdir)/libgsf-gnome-1.so.1
}
pkg_postinst() {
gnome2_pkg_postinst
if use python; then
python_mod_optimize gsf
fi
preserve_old_lib_notify /usr/$(get_libdir)/libgsf-1.so.1
preserve_old_lib_notify /usr/$(get_libdir)/libgsf-gnome-1.so.1
}
pkg_postrm() {
gnome2_pkg_postrm
if use python; then
python_mod_cleanup gsf
fi
}

@ -4,6 +4,7 @@
<herd>gnome</herd>
<use>
<flag name="gtk">Enable use of gdk in thumbnailer</flag>
<flag name='introspection'>Use <pkg>dev-libs/gobject-introspection</pkg> for introspection</flag>
<flag name="thumbnail">Enable libgsf supported formats thumbnailer</flag>
</use>
</pkgmetadata>

@ -1,2 +1,3 @@
DIST graphite2-1.0.3.tgz 4352127 RMD160 73d2e2bf2f6b0039b9d9ef05b204c1027b284e44 SHA1 2d3325198436e2e89cf0b30deefde78d34db9ddd SHA256 643c5307a3fdc31754a18c8c1398d4036a107e4bdc03d9a265fcadfc85d4a07a
DIST graphite2-1.1.1.tgz 4468216 RMD160 c500f833d4620b3ddf875e0817e6e1a5f8c5ed91 SHA1 bebf2e5837ffa838c01ed165a0c3984eb114e7c1 SHA256 7140a1eb22e41138e01e76ae4088bb07e3293ca981cafedfeebc8439ed7d3149
DIST graphite2-1.1.2.tgz 3677920 RMD160 389819c589a448d68626356566768dee39a451fe SHA1 afc07f4afd9aa4a2f8ac37bb7178635fd20dc9a7 SHA256 3e96d503bd8014b5ea06741487f5db2aab2d5785d43aa046c7d6de74e1b24f87

@ -0,0 +1,95 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphite2/graphite2-1.1.2.ebuild,v 1.1 2012/04/23 10:53:44 scarabeus Exp $
EAPI=4
inherit base cmake-utils perl-module
DESCRIPTION="Library providing rendering capabilities for complex non-Roman writing systems"
HOMEPAGE="http://graphite.sil.org/"
SRC_URI="mirror://sourceforge/silgraphite/${PN}/${P}.tgz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="perl test"
RDEPEND="
perl? ( dev-lang/perl )
"
DEPEND="${RDEPEND}
perl? ( virtual/perl-Module-Build )
test? (
dev-libs/glib:2
media-libs/fontconfig
media-libs/silgraphite
)
"
PATCHES=(
"${FILESDIR}/${PN}-1.1.0-includes-libs-perl.patch"
"${FILESDIR}/${PN}-fix_wrong_linker_opts.patch"
"${FILESDIR}/${PN}-1.0.2-no_harfbuzz_tests.patch"
"${FILESDIR}/${PN}-1.0.3-no-test-binaries.patch"
)
pkg_setup() {
use perl && perl-module_pkg_setup
}
src_prepare() {
base_src_prepare
# fix perl linking
if use perl; then
_check_build_dir init
sed -i \
-e "s:@BUILD_DIR@:\"${CMAKE_BUILD_DIR}/src\":" \
contrib/perl/Build.PL || die
fi
# make tests optional
if ! use test; then
sed -i \
-e '/tests/d' \
CMakeLists.txt || die
fi
}
src_configure() {
local mycmakeargs=(
"-DVM_MACHINE_TYPE=direct"
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
if use perl; then
cd contrib/perl
perl-module_src_prep
perl-module_src_compile
fi
}
src_test() {
cmake-utils_src_test
if use perl; then
cd contrib/perl
perl-module_src_test
fi
}
src_install() {
cmake-utils_src_install
if use perl; then
cd contrib/perl
perl-module_src_install
fixlocalpod
fi
find "${ED}" -name '*.la' -exec rm -f {} +
}

@ -2,3 +2,4 @@ DIST libmusicbrainz-2.1.5.tar.gz 524243 RMD160 6b5da46c8d5e7c6359f847241705d8552
DIST libmusicbrainz-3.0.2.tar.gz 98537 RMD160 61e183373adb2df796be20f6087cbc217893641b SHA1 6bba392816717eeeb5e74b8d491ff19001566e7a SHA256 b9a35e56826239add731cf083108cbc313d4a2d1770e6f5006966daa66a21eda
DIST libmusicbrainz-3.0.3.tar.gz 105837 RMD160 5eba6458a5b3ac28747b743787948ec781d2a998 SHA1 630778a6b34daea73a1780096fde971c7e7964c1 SHA256 7fd459a9fd05be9faec60a9a21caa9a1e9fda03147d58d8c7c95f33582a738c5
DIST libmusicbrainz-4.0.0.tar.gz 126597 RMD160 8f0fa99d69f063763ad0587580270f817f91af6c SHA1 3f567f5d4b0d13789f13d9d87535d8d9f244924b SHA256 30b139f51ee8c5bbe8803bdd6b24747276825f3cff7648ac72fba3c9d8f2e94a
DIST libmusicbrainz-4.0.1.tar.gz 104969 RMD160 d8817cbe5e99aab524b4f9992c53424fb5a3782a SHA1 fbc71eaa994b62bdf9c3de7367d3fc595f2e4ba3 SHA256 5ae0513009aadebfed75bf1738a42a897c9d1376d0f4f4f36c5228adf2197d1b

@ -0,0 +1,28 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/musicbrainz/musicbrainz-4.0.1.ebuild,v 1.1 2012/04/23 11:06:04 ssuominen Exp $
EAPI=4
CMAKE_IN_SOURCE_BUILD=1
inherit cmake-utils
DESCRIPTION="The MusicBrainz Client Library (for accessing the latest XML based web service)"
HOMEPAGE="http://musicbrainz.org/doc/libmusicbrainz"
SRC_URI="mirror://github/${PN}/lib${PN}/lib${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="4"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="net-libs/neon"
DEPEND="${RDEPEND}
test? ( dev-util/cppunit )"
S=${WORKDIR}/lib${P}
DOCS="AUTHORS.txt NEWS.txt README.md"
src_prepare() {
sed -i -e 's:-Werror::' {examples,src,tests}/CMakeLists.txt || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/webrtc-audio-processing/webrtc-audio-processing-0.1.ebuild,v 1.1 2012/03/28 18:30:38 ford_prefect Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/webrtc-audio-processing/webrtc-audio-processing-0.1.ebuild,v 1.2 2012/04/23 07:41:13 heroxbd Exp $
EAPI=4
@ -10,7 +10,7 @@ SRC_URI="http://freedesktop.org/software/pulseaudio/${PN}/${P}.tar.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
IUSE=""
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.8 2012/04/01 15:15:57 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.9 2012/04/23 07:36:43 heroxbd Exp $
EAPI=3
@ -14,7 +14,7 @@ SRC_URI="mirror://alsaproject/plugins/${MY_P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 sh sparc x86"
KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 sh sparc x86 ~amd64-linux"
IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
RDEPEND=">=media-libs/alsa-lib-${PV}

@ -1 +1,2 @@
DIST gaupol-0.17.1.tar.gz 589709 RMD160 aaa9564f005ef53291464347c02ca3dbdf05f74d SHA1 f0873f62bc6cd491883a9ce8b163d364d0be488d SHA256 61b9707172cfefa545737a59dbe0fc950eac9379a5975d592808e201f969ab30
DIST gaupol-0.19.2.tar.gz 651580 RMD160 b791f526d8ea2e7a72b931cda4616c2cac914e31 SHA1 cf11f5c4fddba3e1848bfacdabe99b9a963f9f7c SHA256 4e30fb7f4ff328561243450367be0c1ec80878f7107cac8eda6db9877a90aff4

@ -0,0 +1,64 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/gaupol/gaupol-0.19.2.ebuild,v 1.1 2012/04/23 04:31:10 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 2.5 3.* *-jython"
inherit distutils fdo-mime gnome2-utils versionator
MAJOR_MINOR_VERSION="$(get_version_component_range 1-2)"
DESCRIPTION="Gaupol is a subtitle editor for text-based subtitles"
HOMEPAGE="http://home.gna.org/gaupol"
SRC_URI="http://download.gna.org/${PN}/${MAJOR_MINOR_VERSION}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="spell"
RDEPEND="dev-python/chardet
>=dev-python/pygtk-2.16
spell? (
app-text/iso-codes
>=dev-python/pyenchant-1.4
)"
DEPEND="${RDEPEND}
dev-util/intltool
sys-devel/gettext"
DOCS="AUTHORS ChangeLog CREDITS NEWS TODO README"
PYTHON_MODNAME="aeidon gaupol"
src_compile() {
addpredict /root/.gconf
addpredict /root/.gconfd
distutils_src_compile
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
distutils_pkg_postinst
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
elog "Previewing support needs MPlayer or VLC."
if use spell; then
elog "Additionally, spell-checking requires a dictionary, any of"
elog "Aspell/Pspell, Ispell, MySpell, Uspell, Hspell or AppleSpell."
fi
}
pkg_postrm() {
distutils_pkg_postrm
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}

@ -1 +1,2 @@
DIST mjpg-streamer-0_pre20110522.tar.bz2 473378 RMD160 78e1d3f526f2037e7ac543e3f2511bde86b509f6 SHA1 7e2b5d2b66ae9afcb8fcd85c6e3c84743bc13639 SHA256 6a3aedb57f4779a53e80a7ac617924ebadd52a2098e088ef4b91dc91ba5a24d6
DIST mjpg-streamer-0_pre20120421.tar.bz2 471104 RMD160 1f785d9076acc305baaec2fe69575a21e35a6a88 SHA1 c2aa63e9b70c18b69708df3697a4e17f84ce1d88 SHA256 cba3027eece48735e104522adf4682169431e0879555c1d22395b4669189aab8

@ -0,0 +1,118 @@
Index: Makefile
===================================================================
--- Makefile (revision 150)
+++ Makefile (working copy)
@@ -63,64 +63,64 @@
chmod 755 $(APP_BINARY)
output_autofocus.so: mjpg_streamer.h utils.h
- make -C plugins/output_autofocus all
+ $(MAKE) -C plugins/output_autofocus all
cp plugins/output_autofocus/output_autofocus.so .
input_testpicture.so: mjpg_streamer.h utils.h
- make -C plugins/input_testpicture all
+ $(MAKE) -C plugins/input_testpicture all
cp plugins/input_testpicture/input_testpicture.so .
ifeq ($(USE_LIBV4L2),true)
input_uvc.so: mjpg_streamer.h utils.h
- make -C plugins/input_uvc USE_LIBV4L2=true all
+ $(MAKE) -C plugins/input_uvc USE_LIBV4L2=true all
cp plugins/input_uvc/input_uvc.so .
else
input_uvc.so: mjpg_streamer.h utils.h
- make -C plugins/input_uvc all
+ $(MAKE) -C plugins/input_uvc all
cp plugins/input_uvc/input_uvc.so .
endif
input_control.so: mjpg_streamer.h utils.h
- make -C plugins/input_control all
+ $(MAKE) -C plugins/input_control all
cp plugins/input_control/input_control.so .
output_file.so: mjpg_streamer.h utils.h
- make -C plugins/output_file all
+ $(MAKE) -C plugins/output_file all
cp plugins/output_file/output_file.so .
ifeq ($(WXP_COMPAT),true)
output_http.so: mjpg_streamer.h utils.h
- make -C plugins/output_http -DWXP_COMPAT all
+ $(MAKE) -C plugins/output_http -DWXP_COMPAT all
cp plugins/output_http/output_http.so .
else
output_http.so: mjpg_streamer.h utils.h
- make -C plugins/output_http all
+ $(MAKE) -C plugins/output_http all
cp plugins/output_http/output_http.so .
endif
output_udp.so: mjpg_streamer.h utils.h
- make -C plugins/output_udp all
+ $(MAKE) -C plugins/output_udp all
cp plugins/output_udp/output_udp.so .
input_gspcav1.so: mjpg_streamer.h utils.h
- make -C plugins/input_gspcav1 all
+ $(MAKE) -C plugins/input_gspcav1 all
cp plugins/input_gspcav1/input_gspcav1.so .
input_file.so: mjpg_streamer.h utils.h
- make -C plugins/input_file all
+ $(MAKE) -C plugins/input_file all
cp plugins/input_file/input_file.so .
output_rtsp.so: mjpg_streamer.h utils.h
- make -C plugins/output_rtsp all
+ $(MAKE) -C plugins/output_rtsp all
cp plugins/output_rtsp/output_rtsp.so .
output_ptp2.so: mjpg_streamer.h utils.h
- make -C plugins/input_ptp2 all
+ $(MAKE) -C plugins/input_ptp2 all
cp plugins/input_ptp2/input_ptp2.so .
#input_http.so: mjpg_streamer.h utils.h
-# make -C plugins/input_http all
+# $(MAKE) -C plugins/input_http all
# cp plugins/input_http/input_http.so .
# The viewer plugin requires the SDL library for compilation
@@ -129,22 +129,22 @@
# execute the following command:
# make output_viewer.so
output_viewer.so: mjpg_streamer.h utils.h
- make -C plugins/output_viewer all
+ $(MAKE) -C plugins/output_viewer all
cp plugins/output_viewer/output_viewer.so .
# cleanup
clean:
- make -C plugins/input_uvc $@
- make -C plugins/input_testpicture $@
- make -C plugins/output_file $@
- make -C plugins/output_http $@
- make -C plugins/output_udp $@
- make -C plugins/output_autofocus $@
- make -C plugins/input_gspcav1 $@
- make -C plugins/output_viewer $@
- make -C plugins/input_control $@
- make -C plugins/output_rtsp $@
-# make -C plugins/input_http $@
+ $(MAKE) -C plugins/input_uvc $@
+ $(MAKE) -C plugins/input_testpicture $@
+ $(MAKE) -C plugins/output_file $@
+ $(MAKE) -C plugins/output_http $@
+ $(MAKE) -C plugins/output_udp $@
+ $(MAKE) -C plugins/output_autofocus $@
+ $(MAKE) -C plugins/input_gspcav1 $@
+ $(MAKE) -C plugins/output_viewer $@
+ $(MAKE) -C plugins/input_control $@
+ $(MAKE) -C plugins/output_rtsp $@
+# $(MAKE) -C plugins/input_http $@
rm -f *.a *.o $(APP_BINARY) core *~ *.so *.lo
# useful to make a backup "make tgz"

@ -0,0 +1,72 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mjpg-streamer/mjpg-streamer-0_pre20120421.ebuild,v 1.1 2012/04/23 10:00:59 aidecoe Exp $
EAPI=4
inherit eutils
DESCRIPTION="MJPG-streamer takes JPGs from Linux-UVC compatible webcams"
HOMEPAGE="http://sourceforge.net/projects/mjpg-streamer"
SRC_URI="http://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
INPUT_PLUGINS="input_testpicture input_control input_file input_uvc "
OUTPUT_PLUGINS="output_file output_udp output_http output_autofocus output_rtsp"
IUSE_PLUGINS="${INPUT_PLUGINS} ${OUTPUT_PLUGINS}"
IUSE="${IUSE_PLUGINS} www v4l"
REQUIRED_USE="|| ( ${INPUT_PLUGINS} )
|| ( ${OUTPUT_PLUGINS} )
v4l? ( input_uvc )"
RDEPEND="virtual/jpeg
v4l? ( input_uvc? ( media-libs/libv4l ) )"
DEPEND="${RDEPEND}
input_testpicture? ( media-gfx/imagemagick )"
src_prepare() {
epatch "${FILESDIR}/${PV}-make-var-instead-of-cmd.patch"
local flag switch
for flag in ${IUSE_PLUGINS}; do
use ${flag} && switch='' || switch='#'
sed -i \
-e "s|^#*PLUGINS +\?= ${flag}.so|${switch}PLUGINS += ${flag}.so|" \
Makefile
done
}
src_compile() {
local v4l=$(use v4l && use input_uvc && echo 'USE_LIBV4L2=true')
emake ${v4l}
}
src_install() {
into /usr
dobin ${PN//-/_}
dolib.so *.so
if use www ; then
insinto /usr/share/${PN}
doins -r www
fi
dodoc README TODO
newinitd "${FILESDIR}"/${PN}.initd ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
}
pkg_postinst() {
elog "Remember to set an input and output plugin for mjpg-streamer."
if use www ; then
echo
elog "An example webinterface has been installed into"
elog "/usr/share/mjpg-streamer/www for your usage."
fi
}

@ -0,0 +1,22 @@
dev-python/meld3 dev-python/setuptools test? ( dev-python/mock ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] )
dev-python/meld3 dev-python/setuptools || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] )
0
mirror://pypi/s/supervisor/supervisor-3.0a12.tar.gz
http://supervisord.org/ http://pypi.python.org/pypi/supervisor
repoze ZPL BSD as-is
A system for controlling process state under UNIX
~amd64 ~x86
distutils eutils multilib python toolchain-funcs user
test
3
compile install postinst postrm prepare setup test

@ -0,0 +1,22 @@
kde? ( x11-libs/wxGTK:2.8[X,-odbc] kde-base/kdelibs ) wxwidgets? ( x11-libs/wxGTK:2.8[X,-odbc] ) amd64? ( dev-lang/yasm ) x86? ( dev-lang/nasm )
kde? ( x11-libs/wxGTK:2.8[X,-odbc] kde-base/kdelibs ) wxwidgets? ( x11-libs/wxGTK:2.8[X,-odbc] )
0
mirror://sourceforge/p7zip/p7zip_9.20.1_src_all.tar.bz2
http://p7zip.sourceforge.net/
LGPL-2.1 rar? ( unRAR )
Port of 7-Zip archiver for Unix
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris
eutils multilib toolchain-funcs user wxwidgets
doc kde rar +pch static wxwidgets
kde? ( wxwidgets )
4
compile install prepare setup test

@ -0,0 +1,22 @@
dev-libs/glib:2 x11-libs/gtk+:3 x11-libs/libnotify app-backup/duplicity dev-libs/dbus-glib gnome-base/gnome-keyring nautilus? ( gnome-base/nautilus ) app-text/yelp-tools dev-lang/vala:0.14 dev-perl/Locale-gettext dev-util/pkgconfig dev-util/intltool sys-devel/gettext || ( >=sys-devel/automake-1.11.1:1.11 ) >=sys-devel/autoconf-2.68 sys-devel/libtool app-arch/xz-utils >=sys-apps/sed-4
dev-libs/glib:2 x11-libs/gtk+:3 x11-libs/libnotify app-backup/duplicity dev-libs/dbus-glib gnome-base/gnome-keyring nautilus? ( gnome-base/nautilus ) gnome-base/gvfs[fuse]
0
http://launchpad.net/deja-dup/22/22.1/+download/deja-dup-22.1.tar.xz
test
https://launchpad.net/deja-dup/
GPL-3
Simple backup tool using duplicity back-end
~amd64 ~x86
autotools eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib toolchain-funcs user versionator
nautilus debug
4
compile configure install postinst postrm preinst prepare setup unpack

@ -0,0 +1,22 @@
!app-emulation/kqemu !app-emulation/qemu !app-emulation/qemu-user >=dev-libs/glib-2.0 media-libs/libpng sys-apps/pciutils >=sys-apps/util-linux-2.16.0 virtual/jpeg amd64? ( sys-apps/seabios sys-apps/vgabios ) x86? ( sys-apps/seabios sys-apps/vgabios ) aio? ( dev-libs/libaio ) alsa? ( >=media-libs/alsa-lib-1.0.13 ) bluetooth? ( net-wireless/bluez ) brltty? ( app-accessibility/brltty ) curl? ( >=net-misc/curl-7.15.4 ) fdt? ( >=sys-apps/dtc-1.2.0 ) ncurses? ( sys-libs/ncurses ) opengl? ( virtual/opengl ) pulseaudio? ( media-sound/pulseaudio ) qemu-ifup? ( sys-apps/iproute2 net-misc/bridge-utils ) rbd? ( sys-cluster/ceph ) sasl? ( dev-libs/cyrus-sasl ) sdl? ( static? ( >=media-libs/libsdl-1.2.11[static-libs,X] ) !static? ( >=media-libs/libsdl-1.2.11[X] ) ) static? ( sys-libs/zlib[static-libs(+)] ) !static? ( sys-libs/zlib ) smartcard? ( dev-libs/nss ) spice? ( >=app-emulation/spice-0.9.0 >=app-emulation/spice-protocol-0.8.1 ) tls? ( net-libs/gnutls ) usbredir? ( sys-apps/usbredir ) vde? ( net-misc/vde ) xattr? ( sys-apps/attr ) xen? ( app-emulation/xen-tools ) app-text/texi2html dev-util/pkgconfig >=sys-kernel/linux-headers-2.6.35 test? ( dev-libs/check )
!app-emulation/kqemu !app-emulation/qemu !app-emulation/qemu-user >=dev-libs/glib-2.0 media-libs/libpng sys-apps/pciutils >=sys-apps/util-linux-2.16.0 virtual/jpeg amd64? ( sys-apps/seabios sys-apps/vgabios ) x86? ( sys-apps/seabios sys-apps/vgabios ) aio? ( dev-libs/libaio ) alsa? ( >=media-libs/alsa-lib-1.0.13 ) bluetooth? ( net-wireless/bluez ) brltty? ( app-accessibility/brltty ) curl? ( >=net-misc/curl-7.15.4 ) fdt? ( >=sys-apps/dtc-1.2.0 ) ncurses? ( sys-libs/ncurses ) opengl? ( virtual/opengl ) pulseaudio? ( media-sound/pulseaudio ) qemu-ifup? ( sys-apps/iproute2 net-misc/bridge-utils ) rbd? ( sys-cluster/ceph ) sasl? ( dev-libs/cyrus-sasl ) sdl? ( static? ( >=media-libs/libsdl-1.2.11[static-libs,X] ) !static? ( >=media-libs/libsdl-1.2.11[X] ) ) static? ( sys-libs/zlib[static-libs(+)] ) !static? ( sys-libs/zlib ) smartcard? ( dev-libs/nss ) spice? ( >=app-emulation/spice-0.9.0 >=app-emulation/spice-protocol-0.8.1 ) tls? ( net-libs/gnutls ) usbredir? ( sys-apps/usbredir ) vde? ( net-misc/vde ) xattr? ( sys-apps/attr ) xen? ( app-emulation/xen-tools )
0
mirror://sourceforge/kvm/qemu-kvm/qemu-kvm-1.0.1.tar.gz
http://www.linux-kvm.org
GPL-2
QEMU + Kernel-based Virtual Machine userland tools
~amd64 ~ppc ~ppc64 ~x86
eutils flag-o-matic linux-info multilib python toolchain-funcs user versionator
+aio alsa bluetooth brltty +curl debug fdt ncurses opengl pulseaudio qemu-ifup rbd sasl sdl smartcard spice static test +threads tls usbredir vde +vhost-net xattr xen +qemu_softmmu_targets_x86_64 qemu_softmmu_targets_i386 qemu_softmmu_targets_arm qemu_softmmu_targets_cris qemu_softmmu_targets_m68k qemu_softmmu_targets_microblaze qemu_softmmu_targets_mips qemu_softmmu_targets_mipsel qemu_softmmu_targets_ppc qemu_softmmu_targets_ppc64 qemu_softmmu_targets_sh4 qemu_softmmu_targets_sh4eb qemu_softmmu_targets_sparc qemu_softmmu_targets_sparc64 qemu_softmmu_targets_mips64 qemu_softmmu_targets_mips64el qemu_softmmu_targets_ppcemb qemu_user_targets_i386 qemu_user_targets_x86_64 qemu_user_targets_arm qemu_user_targets_cris qemu_user_targets_m68k qemu_user_targets_microblaze qemu_user_targets_mips qemu_user_targets_mipsel qemu_user_targets_ppc qemu_user_targets_ppc64 qemu_user_targets_sh4 qemu_user_targets_sh4eb qemu_user_targets_sparc qemu_user_targets_sparc64 qemu_user_targets_alpha qemu_user_targets_armeb qemu_user_targets_ppc64abi32 qemu_user_targets_sparc32plus
4
configure install postinst prepare pretend setup

@ -1,5 +1,5 @@
>=app-emulation/libvirt-0.6.0 >=dev-libs/libxml2-2.6.0:2 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.10.0:2 >=gnome-base/libglade-2.6.0:2.0 ) nsplugin? ( >=dev-libs/nspr-4.0.0 >=net-libs/xulrunner-1.9.1:1.9 >=x11-libs/gtk+-2.10.0:2 >=gnome-base/libglade-2.6.0:2.0 ) spice? ( >=net-misc/spice-gtk-0.6[sasl?,gtk3?] ) vnc? ( >=net-libs/gtk-vnc-0.4.3 ) app-arch/xz-utils >=sys-apps/sed-4
>=app-emulation/libvirt-0.6.0 >=dev-libs/libxml2-2.6.0:2 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.10.0:2 >=gnome-base/libglade-2.6.0:2.0 ) nsplugin? ( >=dev-libs/nspr-4.0.0 >=net-libs/xulrunner-1.9.1:1.9 >=x11-libs/gtk+-2.10.0:2 >=gnome-base/libglade-2.6.0:2.0 ) spice? ( >=net-misc/spice-gtk-0.6[sasl?,gtk3?] ) vnc? ( >=net-libs/gtk-vnc-0.4.3 )
>=app-emulation/libvirt-0.6 >=dev-libs/libxml2-2.6 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.10:2 >=gnome-base/libglade-2.6 ) spice? ( >=net-misc/spice-gtk-0.6[sasl?,gtk3?] ) vnc? ( >=net-libs/gtk-vnc-0.4.3 ) dev-util/pkgconfig app-arch/xz-utils >=sys-apps/sed-4
>=app-emulation/libvirt-0.6 >=dev-libs/libxml2-2.6 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.10:2 >=gnome-base/libglade-2.6 ) spice? ( >=net-misc/spice-gtk-0.6[sasl?,gtk3?] ) vnc? ( >=net-libs/gtk-vnc-0.4.3 )
0
http://virt-manager.org/download/sources/virt-viewer/virt-viewer-0.4.2.tar.gz
@ -8,8 +8,8 @@ GPL-2
Graphical console client for connecting to virtual machines
~amd64 ~x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib toolchain-funcs user versionator
gtk3 nsplugin sasl spice +vnc debug
|| ( spice vnc ) nsplugin? ( !gtk3 ) gtk3? ( !nsplugin )
gtk3 sasl spice +vnc debug
|| ( spice vnc )
4

@ -1,5 +1,5 @@
>=app-emulation/libvirt-0.9.7 >=dev-libs/libxml2-2.6.0:2 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.18.0:2 >=gnome-base/libglade-2.6.0:2.0 ) nsplugin? ( >=dev-libs/nspr-4.0.0 >=net-libs/xulrunner-1.9.1:1.9 >=x11-libs/gtk+-2.18.0:2 >=gnome-base/libglade-2.6.0:2.0 ) spice? ( >=net-misc/spice-gtk-0.11[sasl?,gtk3?] ) vnc? ( >=net-libs/gtk-vnc-0.4.3 ) app-arch/xz-utils >=sys-apps/sed-4
>=app-emulation/libvirt-0.9.7 >=dev-libs/libxml2-2.6.0:2 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.18.0:2 >=gnome-base/libglade-2.6.0:2.0 ) nsplugin? ( >=dev-libs/nspr-4.0.0 >=net-libs/xulrunner-1.9.1:1.9 >=x11-libs/gtk+-2.18.0:2 >=gnome-base/libglade-2.6.0:2.0 ) spice? ( >=net-misc/spice-gtk-0.11[sasl?,gtk3?] ) vnc? ( >=net-libs/gtk-vnc-0.4.3 )
>=app-emulation/libvirt-0.9.7 >=dev-libs/libxml2-2.6 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.18:2 >=gnome-base/libglade-2.6 ) nsplugin? ( >=dev-libs/nspr-4 >=x11-libs/gtk+-2.18:2 >=gnome-base/libglade-2.6 ) spice? ( >=net-misc/spice-gtk-0.11[sasl?,gtk3?] ) vnc? ( >=net-libs/gtk-vnc-0.4.3 ) dev-util/pkgconfig nsplugin? ( >=net-misc/npapi-sdk-0.27 ) app-arch/xz-utils >=sys-apps/sed-4
>=app-emulation/libvirt-0.9.7 >=dev-libs/libxml2-2.6 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.18:2 >=gnome-base/libglade-2.6 ) nsplugin? ( >=dev-libs/nspr-4 >=x11-libs/gtk+-2.18:2 >=gnome-base/libglade-2.6 ) spice? ( >=net-misc/spice-gtk-0.11[sasl?,gtk3?] ) vnc? ( >=net-libs/gtk-vnc-0.4.3 )
0
http://virt-manager.org/download/sources/virt-viewer/virt-viewer-0.5.2.tar.gz

@ -1,22 +0,0 @@
x11-libs/libX11 x11-libs/libXrender media-libs/fontconfig pango? ( x11-libs/pango ) opencc? ( app-i18n/opencc ) gtk? ( x11-libs/gtk+:2 ) gtk3? ( x11-libs/gtk+:3 ) cairo? ( x11-libs/cairo[X] ) dbus? ( sys-apps/dbus ) x11-proto/xproto dev-util/pkgconfig >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
x11-libs/libX11 x11-libs/libXrender media-libs/fontconfig pango? ( x11-libs/pango ) opencc? ( app-i18n/opencc ) gtk? ( x11-libs/gtk+:2 ) gtk3? ( x11-libs/gtk+:3 ) cairo? ( x11-libs/cairo[X] ) dbus? ( sys-apps/dbus )
0
http://fcitx.googlecode.com/files/fcitx-4.2.0.tar.bz2
http://www.fcitx.org/
GPL-2
Free Chinese Input Toy for X. Another Chinese XIM Input Method
~amd64 ~x86
base cmake-utils eutils flag-o-matic multilib toolchain-funcs user
cairo dbus debug gtk gtk3 opencc pango qt table
3
compile configure install postinst postrm prepare test unpack

@ -0,0 +1,22 @@
cairo? ( x11-libs/cairo[X] pango? ( x11-libs/pango[X] ) !pango? ( media-libs/fontconfig ) ) gtk? ( x11-libs/gtk+:2 dev-libs/glib:2 dev-libs/dbus-glib ) gtk3? ( x11-libs/gtk+:3 dev-libs/glib:2 dev-libs/dbus-glib ) opencc? ( app-i18n/opencc ) qt? ( x11-libs/qt-gui:4 x11-libs/qt-dbus:4 ) sys-apps/dbus x11-libs/libX11 app-arch/xz-utils dev-util/intltool dev-util/pkgconfig x11-proto/xproto >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
cairo? ( x11-libs/cairo[X] pango? ( x11-libs/pango[X] ) !pango? ( media-libs/fontconfig ) ) gtk? ( x11-libs/gtk+:2 dev-libs/glib:2 dev-libs/dbus-glib ) gtk3? ( x11-libs/gtk+:3 dev-libs/glib:2 dev-libs/dbus-glib ) opencc? ( app-i18n/opencc ) qt? ( x11-libs/qt-gui:4 x11-libs/qt-dbus:4 ) sys-apps/dbus x11-libs/libX11
0
http://fcitx.googlecode.com/files/fcitx-4.2.2.tar.xz http://fcitx.googlecode.com/files/pinyin.tar.gz table? ( http://fcitx.googlecode.com/files/table.tar.gz )
http://www.fcitx.org/
GPL-2
Free Chinese Input Toy for X. Another Chinese XIM Input Method
~amd64 ~x86
base cmake-utils eutils flag-o-matic multilib toolchain-funcs user
+cairo debug gtk gtk3 opencc +pango qt static-libs +table test
3
compile configure install postinst postrm prepare test unpack

@ -1,22 +0,0 @@
dev-libs/glib:2 x11-libs/gtk+:2 ~app-i18n/fcitx-4.2.0 app-text/iso-codes dev-libs/libunique:1 dev-util/intltool dev-util/pkgconfig sys-devel/gettext >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
dev-libs/glib:2 x11-libs/gtk+:2
0
http://fcitx.googlecode.com/files/fcitx-configtool-0.4.0.tar.bz2
http://fcitx.googlecode.com
GPL-3
A gtk GUI to edit fcitx settings
~amd64 ~x86
base cmake-utils eutils flag-o-matic multilib toolchain-funcs user
2
compile configure install prepare test unpack

@ -0,0 +1,22 @@
dev-libs/glib:2 x11-libs/gtk+:2 app-arch/xz-utils ~app-i18n/fcitx-4.2.2 app-text/iso-codes dev-libs/libunique:1 dev-util/intltool dev-util/pkgconfig sys-devel/gettext >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
dev-libs/glib:2 x11-libs/gtk+:2
0
http://fcitx.googlecode.com/files/fcitx-configtool-0.4.2.tar.xz
http://fcitx.googlecode.com
GPL-3
A gtk GUI to edit fcitx settings
~amd64 ~x86
base cmake-utils eutils flag-o-matic multilib toolchain-funcs user
gtk gtk3
3
compile configure install prepare test unpack

@ -0,0 +1,22 @@
>=app-text/recode-3.6-r1 app-text/scrollkeeper dev-libs/glib:2 dev-python/gconf-python:2 dev-python/gnome-vfs-python:2 dev-python/libgnome-python:2 dev-python/pygobject:2 dev-python/pygtk:2 >=dev-python/python-bibtex-1.2.5 || ( >=sys-devel/automake-1.11.1:1.11 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* )
>=app-text/recode-3.6-r1 app-text/scrollkeeper dev-libs/glib:2 dev-python/gconf-python:2 dev-python/gnome-vfs-python:2 dev-python/libgnome-python:2 dev-python/pygobject:2 dev-python/pygtk:2 >=dev-python/python-bibtex-1.2.5 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* )
0
mirror://sourceforge/pybliographer/pybliographer-1.2.15.tar.gz
http://pybliographer.org/
GPL-2
Pybliographer is a tool for working with bibliographic databases
~amd64 ~ppc ~x86
autotools eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib python toolchain-funcs user versionator
debug
3
compile configure install postinst postrm preinst prepare setup unpack

@ -0,0 +1,22 @@
>=sys-libs/ncurses-5.2-r2 readline? ( >=sys-libs/readline-6.2 ) nls? ( virtual/libintl ) virtual/yacc
>=sys-libs/ncurses-5.2-r2 readline? ( >=sys-libs/readline-6.2 ) nls? ( virtual/libintl ) !<sys-apps/portage-2.1.7.16 !<sys-apps/paludis-0.26.0_alpha5
0
mirror://gnu/bash/bash-4.2.tar.gz ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-001 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-002 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-003 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-004 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-005 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-006 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-007 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-008 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-009 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-010 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-011 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-012 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-013 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-014 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-015 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-016 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-017 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-018 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-019 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-020 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-021 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-022 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-023 ftp://ftp.cwru.edu/pub/bash/bash-4.2-patches/bash42-024 mirror://gnu/bash/bash-4.2-patches/bash42-001 mirror://gnu/bash/bash-4.2-patches/bash42-002 mirror://gnu/bash/bash-4.2-patches/bash42-003 mirror://gnu/bash/bash-4.2-patches/bash42-004 mirror://gnu/bash/bash-4.2-patches/bash42-005 mirror://gnu/bash/bash-4.2-patches/bash42-006 mirror://gnu/bash/bash-4.2-patches/bash42-007 mirror://gnu/bash/bash-4.2-patches/bash42-008 mirror://gnu/bash/bash-4.2-patches/bash42-009 mirror://gnu/bash/bash-4.2-patches/bash42-010 mirror://gnu/bash/bash-4.2-patches/bash42-011 mirror://gnu/bash/bash-4.2-patches/bash42-012 mirror://gnu/bash/bash-4.2-patches/bash42-013 mirror://gnu/bash/bash-4.2-patches/bash42-014 mirror://gnu/bash/bash-4.2-patches/bash42-015 mirror://gnu/bash/bash-4.2-patches/bash42-016 mirror://gnu/bash/bash-4.2-patches/bash42-017 mirror://gnu/bash/bash-4.2-patches/bash42-018 mirror://gnu/bash/bash-4.2-patches/bash42-019 mirror://gnu/bash/bash-4.2-patches/bash42-020 mirror://gnu/bash/bash-4.2-patches/bash42-021 mirror://gnu/bash/bash-4.2-patches/bash42-022 mirror://gnu/bash/bash-4.2-patches/bash42-023 mirror://gnu/bash/bash-4.2-patches/bash42-024
http://tiswww.case.edu/php/chet/bash/bashtop.html
GPL-3
The standard GNU Bourne again shell
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd
eutils flag-o-matic multilib toolchain-funcs user
afs bashlogger examples mem-scramble +net nls plugins +readline vanilla
1
compile install postinst preinst setup unpack

@ -0,0 +1,22 @@
app-text/libwpd:0.9 dev-util/pkgconfig doc? ( app-doc/doxygen )
app-text/libwpd:0.9
0
mirror://sourceforge/libwps/libwps-0.2.5.tar.xz
http://libwps.sourceforge.net/
LGPL-2.1
Microsoft Works file word processor format import filter library
~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
doc debug static-libs
4
configure install

@ -1,5 +1,5 @@
>=sys-apps/dbus-1.4.1 >=dev-libs/glib-2.26 >=dev-libs/expat-1.95.8 dev-util/pkgconfig doc? ( >=dev-util/gtk-doc-1.4 )
>=sys-apps/dbus-1.4.1 >=dev-libs/glib-2.26 >=dev-libs/expat-1.95.8
>=sys-apps/dbus-1.4.16 >=dev-libs/glib-2.26 >=dev-libs/expat-2 dev-util/pkgconfig doc? ( dev-util/gtk-doc )
>=sys-apps/dbus-1.4.16 >=dev-libs/glib-2.26 >=dev-libs/expat-2
0
http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-0.98.tar.gz
@ -7,14 +7,14 @@ http://dbus.freedesktop.org/
|| ( GPL-2 AFL-2.1 )
D-Bus bindings for glib
alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris
bash-completion-r1
bash-completion-r1 eutils multilib toolchain-funcs user
debug doc static-libs test
4
compile configure install test
compile configure install prepare test

@ -1,22 +0,0 @@
>=dev-libs/glib-2.12:2 sys-libs/zlib mono? ( dev-lang/mono >=dev-dotnet/glib-sharp-2.4.0:2 ) dev-util/pkgconfig doc? ( >=dev-util/gtk-doc-1.8 app-text/docbook-sgml-utils ) mono? ( dev-dotnet/gtk-sharp-gapi:2 ) app-arch/xz-utils >=sys-apps/sed-4
>=dev-libs/glib-2.12:2 sys-libs/zlib mono? ( dev-lang/mono >=dev-dotnet/glib-sharp-2.4.0:2 )
2.4
mirror://gnome/sources/gmime/2.4/gmime-2.4.26.tar.xz
http://spruce.sourceforge.net/gmime/
LGPL-2.1
Utilities for creating and parsing messages using MIME
alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool mono multilib toolchain-funcs user versionator
doc mono static-libs
4
compile configure install postinst postrm preinst prepare setup unpack

@ -1,22 +0,0 @@
>=dev-libs/glib-2.18.0:2 sys-libs/zlib >=app-crypt/gpgme-1.1.6 mono? ( dev-lang/mono >=dev-dotnet/glib-sharp-2.4.0:2 ) dev-util/pkgconfig doc? ( >=dev-util/gtk-doc-1.8 app-text/docbook-sgml-utils ) mono? ( dev-dotnet/gtk-sharp-gapi:2 ) app-arch/xz-utils >=sys-apps/sed-4
>=dev-libs/glib-2.18.0:2 sys-libs/zlib >=app-crypt/gpgme-1.1.6 mono? ( dev-lang/mono >=dev-dotnet/glib-sharp-2.4.0:2 )
2.6
mirror://gnome/sources/gmime/2.6/gmime-2.6.0.tar.xz
http://spruce.sourceforge.net/gmime/
LGPL-2.1
Utilities for creating and parsing messages using MIME
alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool mono multilib toolchain-funcs user versionator
doc mono static-libs
4
compile configure install postinst postrm preinst prepare setup unpack

@ -1,7 +1,7 @@
>=dev-libs/glib-2.18.0:2 sys-libs/zlib >=app-crypt/gpgme-1.1.6 mono? ( dev-lang/mono >=dev-dotnet/glib-sharp-2.4.0:2 ) dev-util/pkgconfig doc? ( >=dev-util/gtk-doc-1.8 app-text/docbook-sgml-utils ) mono? ( dev-dotnet/gtk-sharp-gapi:2 ) app-arch/xz-utils >=sys-apps/sed-4
>=dev-libs/glib-2.18.0:2 sys-libs/zlib >=app-crypt/gpgme-1.1.6 mono? ( dev-lang/mono >=dev-dotnet/glib-sharp-2.4.0:2 )
2.6
mirror://gnome/sources/gmime/2.6/gmime-2.6.6.tar.xz
mirror://gnome/sources/gmime/2.6/gmime-2.6.9.tar.xz
http://spruce.sourceforge.net/gmime/
LGPL-2.1

@ -6,7 +6,7 @@ mirror://github/libgit2/libgit2/libgit2-0.16.0.tar.gz
http://libgit2.github.com/
GPL-2-with-linking-exception
A linkable library for Git
~amd64 ~x86
~amd64 ~x86 ~ppc-macos
base cmake-utils eutils flag-o-matic multilib toolchain-funcs user
examples test

@ -1,22 +0,0 @@
dev-python/setuptools doc? ( dev-python/sphinx ) || ( =dev-lang/python-3* =dev-lang/python-2.7* )
|| ( =dev-lang/python-3* =dev-lang/python-2.7* )
0
mirror://pypi/C/Chameleon/Chameleon-2.2.tar.gz
http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon
repoze
Fast HTML/XML template compiler for Python
~amd64 ~x86
distutils multilib python toolchain-funcs
doc test
3
compile install postinst postrm prepare test

@ -1,22 +0,0 @@
dev-python/setuptools doc? ( dev-python/sphinx ) || ( =dev-lang/python-3* =dev-lang/python-2.7* )
|| ( =dev-lang/python-3* =dev-lang/python-2.7* )
0
mirror://pypi/C/Chameleon/Chameleon-2.4.3.tar.gz
http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon
repoze
Fast HTML/XML template compiler for Python
~amd64 ~x86
distutils multilib python toolchain-funcs
doc test
3
compile install postinst postrm prepare test

@ -1,22 +0,0 @@
dev-python/setuptools doc? ( dev-python/sphinx ) || ( =dev-lang/python-3* =dev-lang/python-2.7* )
|| ( =dev-lang/python-3* =dev-lang/python-2.7* )
0
mirror://pypi/C/Chameleon/Chameleon-2.6.1.tar.gz
http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon
repoze
Fast HTML/XML template compiler for Python
~amd64 ~x86
distutils multilib python toolchain-funcs
doc test
3
compile install postinst postrm prepare test

@ -1,22 +0,0 @@
dev-python/setuptools doc? ( dev-python/sphinx ) || ( =dev-lang/python-3* =dev-lang/python-2.7* )
|| ( =dev-lang/python-3* =dev-lang/python-2.7* )
0
mirror://pypi/C/Chameleon/Chameleon-2.7.0.tar.gz
http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon
repoze
Fast HTML/XML template compiler for Python
~amd64 ~x86
distutils multilib python toolchain-funcs
doc test
3
compile install postinst postrm prepare test

@ -1,22 +0,0 @@
dev-python/setuptools doc? ( dev-python/sphinx ) || ( =dev-lang/python-3* =dev-lang/python-2.7* )
|| ( =dev-lang/python-3* =dev-lang/python-2.7* )
0
mirror://pypi/C/Chameleon/Chameleon-2.7.3.tar.gz
http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon
repoze
Fast HTML/XML template compiler for Python
~amd64 ~x86
distutils multilib python toolchain-funcs
doc test
3
compile install postinst postrm prepare test

@ -5,9 +5,9 @@ http://downloads.egenix.com/python/egenix-mx-base-3.2.3.tar.gz
http://www.egenix.com/products/python/mxBase http://pypi.python.org/pypi/egenix-mx-base
eGenixPublic-1.1
eGenix mx Base Distribution for Python - mxDateTime, mxTextTools, mxProxy, mxTools, mxBeeBase, mxStack, mxQueue, mxURL, mxUID
eGenix utils for Python
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris
distutils multilib python toolchain-funcs
distutils eutils multilib python toolchain-funcs user

@ -1,22 +0,0 @@
test? ( ruby_targets_ruby18? ( >=dev-ruby/childprocess-0.2.5[ruby_targets_ruby18] >=dev-ruby/ffi-1.0.9[ruby_targets_ruby18] >=dev-ruby/multi_json-1.0.4[ruby_targets_ruby18] dev-ruby/rubyzip[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/childprocess-0.2.5[ruby_targets_ruby19] >=dev-ruby/ffi-1.0.9[ruby_targets_ruby19] >=dev-ruby/multi_json-1.0.4[ruby_targets_ruby19] dev-ruby/rubyzip[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/childprocess-0.2.5[ruby_targets_ree18] >=dev-ruby/ffi-1.0.9[ruby_targets_ree18] >=dev-ruby/multi_json-1.0.4[ruby_targets_ree18] dev-ruby/rubyzip[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
ruby_targets_ruby18? ( >=dev-ruby/childprocess-0.2.5[ruby_targets_ruby18] >=dev-ruby/ffi-1.0.9[ruby_targets_ruby18] >=dev-ruby/multi_json-1.0.4[ruby_targets_ruby18] dev-ruby/rubyzip[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/childprocess-0.2.5[ruby_targets_ruby19] >=dev-ruby/ffi-1.0.9[ruby_targets_ruby19] >=dev-ruby/multi_json-1.0.4[ruby_targets_ruby19] dev-ruby/rubyzip[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/childprocess-0.2.5[ruby_targets_ree18] >=dev-ruby/ffi-1.0.9[ruby_targets_ree18] >=dev-ruby/multi_json-1.0.4[ruby_targets_ree18] dev-ruby/rubyzip[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
0
mirror://rubygems/selenium-webdriver-2.21.1.gem
http://gemcutter.org/gems/selenium-webdriver
Apache-2.0
This gem provides Ruby bindings for WebDriver.
~amd64 ~x86
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 test
|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 )
4
compile configure install prepare setup test unpack

@ -0,0 +1,22 @@
dev-python/setuptools doc? ( sys-apps/texinfo ) test? ( dev-python/mock dev-python/twisted-mail dev-python/twisted-web dev-python/twisted-words ) =dev-lang/python-2*
>=dev-python/jinja-2.1 || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson ) || ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite] dev-python/pysqlite:2 ) >=dev-python/twisted-8.0.0 dev-python/twisted-web dev-python/sqlalchemy dev-python/sqlalchemy-migrate irc? ( dev-python/twisted-words ) mail? ( dev-python/twisted-mail ) manhole? ( dev-python/twisted-conch ) =dev-lang/python-2*
0
mirror://pypi/b/buildbot/buildbot-0.8.6p1.tar.gz
http://trac.buildbot.net/ http://code.google.com/p/buildbot/ http://pypi.python.org/pypi/buildbot
GPL-2
BuildBot build automation system
~alpha ~amd64 ~arm ~hppa ~x86
distutils eutils multilib python toolchain-funcs user
doc examples irc mail manhole test
3
compile install postinst postrm prepare setup test

@ -0,0 +1,22 @@
dev-python/setuptools >=dev-python/twisted-2 !!<dev-util/buildbot-0.8.1 !<dev-util/buildbot-0.8.3 test? ( dev-python/mock ) =dev-lang/python-2*
dev-python/setuptools >=dev-python/twisted-2 !!<dev-util/buildbot-0.8.1 !<dev-util/buildbot-0.8.3 =dev-lang/python-2*
0
mirror://pypi/b/buildbot-slave/buildbot-slave-0.8.6p1.tar.gz
http://trac.buildbot.net/ http://code.google.com/p/buildbot/ http://pypi.python.org/pypi/buildbot-slave
GPL-2
BuildBot Slave Daemon
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux
distutils eutils multilib python toolchain-funcs user
test
3
compile install postinst postrm prepare setup test

@ -1,22 +0,0 @@
>=dev-libs/glib-2.16:2 >=dev-cpp/glibmm-2.30:2 >=dev-cpp/gtkmm-3:3.0 >=dev-cpp/gtksourceviewmm-3:3.0 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=gnome-base/libgtop-2.19 >=x11-libs/vte-0.28:2.90 >=dev-db/sqlite-3:3 sys-devel/gdb dev-libs/boost memoryview? ( >=app-editors/ghex-2.90:2 ) >=dev-util/pkgconfig-0.9 >=sys-devel/gettext-0.17 >=dev-util/intltool-0.40 >=app-text/scrollkeeper-0.3.11 >=app-text/gnome-doc-utils-0.3.2 app-text/docbook-xml-dtd:4.1.2 app-arch/xz-utils >=sys-apps/sed-4
>=dev-libs/glib-2.16:2 >=dev-cpp/glibmm-2.30:2 >=dev-cpp/gtkmm-3:3.0 >=dev-cpp/gtksourceviewmm-3:3.0 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=gnome-base/libgtop-2.19 >=x11-libs/vte-0.28:2.90 >=dev-db/sqlite-3:3 sys-devel/gdb dev-libs/boost memoryview? ( >=app-editors/ghex-2.90:2 )
0
mirror://gnome/sources/nemiver/0.9/nemiver-0.9.1.tar.xz
http://projects.gnome.org/nemiver/
GPL-2
A gtkmm front end to the GNU Debugger (gdb)
~amd64 ~x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib toolchain-funcs user versionator
memoryview debug
4
compile configure install postinst postrm preinst prepare setup unpack

@ -0,0 +1,22 @@
>=dev-libs/glib-2.26:2 >=dev-libs/libxml2-2.4.16:2 sys-libs/zlib bzip2? ( app-arch/bzip2 ) gtk? ( x11-libs/gtk+:2 ) introspection? ( >=dev-libs/gobject-introspection-0.6.4 ) python? ( >=dev-python/pygobject-2.10:2 >=dev-python/pygtk-2.10:2 ) dev-util/pkgconfig >=dev-util/intltool-0.35.0 dev-util/gtk-doc-am dev-libs/gobject-introspection-common doc? ( >=dev-util/gtk-doc-1 ) || ( >=sys-devel/automake-1.11.1:1.11 ) >=sys-devel/autoconf-2.68 sys-devel/libtool app-arch/xz-utils >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) )
>=dev-libs/glib-2.26:2 >=dev-libs/libxml2-2.4.16:2 sys-libs/zlib bzip2? ( app-arch/bzip2 ) gtk? ( x11-libs/gtk+:2 ) introspection? ( >=dev-libs/gobject-introspection-0.6.4 ) python? ( >=dev-python/pygobject-2.10:2 >=dev-python/pygtk-2.10:2 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) )
0
mirror://gnome/sources/libgsf/1.14/libgsf-1.14.23.tar.xz
http://projects.gnome.org/libgsf/
GPL-2 LGPL-2.1
The GNOME Structured File Library
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
autotools eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib python toolchain-funcs user versionator
bzip2 doc gtk +introspection python
4
compile configure install postinst postrm preinst prepare setup unpack

@ -0,0 +1,22 @@
perl? ( dev-lang/perl ) perl? ( virtual/perl-Module-Build ) test? ( dev-libs/glib:2 media-libs/fontconfig media-libs/silgraphite ) >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-lang/perl[-build]
perl? ( dev-lang/perl ) dev-lang/perl[-build]
0
mirror://sourceforge/silgraphite/graphite2/graphite2-1.1.2.tgz
http://graphite.sil.org/
LGPL-2.1
Library providing rendering capabilities for complex non-Roman writing systems
~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux
base cmake-utils eutils flag-o-matic multilib perl-module toolchain-funcs user
perl test
4
compile configure install prepare setup test unpack

@ -0,0 +1,22 @@
net-libs/neon test? ( dev-util/cppunit ) >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
net-libs/neon
4
mirror://github/musicbrainz/libmusicbrainz/libmusicbrainz-4.0.1.tar.gz
http://musicbrainz.org/doc/libmusicbrainz
LGPL-2.1
The MusicBrainz Client Library (for accessing the latest XML based web service)
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux
base cmake-utils eutils flag-o-matic multilib toolchain-funcs user
test
4
compile configure install prepare test unpack

@ -6,7 +6,7 @@ http://freedesktop.org/software/pulseaudio/webrtc-audio-processing/webrtc-audio-
http://www.freedesktop.org/software/pulseaudio/webrtc-audio-processing/
BSD
AudioProcessing library from the webrtc.org code base
~amd64 ~x86
~amd64 ~x86 ~amd64-linux

@ -6,7 +6,7 @@ mirror://alsaproject/plugins/alsa-plugins-1.0.25.tar.bz2
http://www.alsa-project.org/
GPL-2 LGPL-2.1
ALSA extra plugins
alpha amd64 arm hppa ia64 ~ppc ppc64 sh sparc x86
alpha amd64 arm hppa ia64 ~ppc ppc64 sh sparc x86 ~amd64-linux
autotools base eutils flag-o-matic libtool multilib toolchain-funcs user
debug ffmpeg jack libsamplerate pulseaudio speex

@ -0,0 +1,22 @@
dev-python/chardet >=dev-python/pygtk-2.16 spell? ( app-text/iso-codes >=dev-python/pyenchant-1.4 ) dev-util/intltool sys-devel/gettext || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) >=sys-apps/sed-4
dev-python/chardet >=dev-python/pygtk-2.16 spell? ( app-text/iso-codes >=dev-python/pyenchant-1.4 ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* )
0
http://download.gna.org/gaupol/0.19/gaupol-0.19.2.tar.gz
http://home.gna.org/gaupol
GPL-2
Gaupol is a subtitle editor for text-based subtitles
~amd64 ~x86
distutils eutils fdo-mime gnome2-utils multilib python toolchain-funcs user versionator
spell
3
compile install postinst postrm preinst prepare

@ -0,0 +1,22 @@
virtual/jpeg v4l? ( input_uvc? ( media-libs/libv4l ) ) input_testpicture? ( media-gfx/imagemagick )
virtual/jpeg v4l? ( input_uvc? ( media-libs/libv4l ) )
0
http://dev.gentoo.org/~aidecoe/distfiles/media-video/mjpg-streamer/mjpg-streamer-0_pre20120421.tar.bz2
http://sourceforge.net/projects/mjpg-streamer
GPL-2
MJPG-streamer takes JPGs from Linux-UVC compatible webcams
~x86 ~amd64
eutils multilib toolchain-funcs user
input_testpicture input_control input_file input_uvc output_file output_udp output_http output_autofocus output_rtsp www v4l
|| ( input_testpicture input_control input_file input_uvc ) || ( output_file output_udp output_http output_autofocus output_rtsp ) v4l? ( input_uvc )
4
compile install postinst prepare

@ -0,0 +1,22 @@
dev-lang/perl perl-core/Getopt-Long perl-core/PodParser perl-core/IO perl-core/Time-HiRes ipv6? ( dev-perl/IO-Socket-INET6 ) md5? ( perl-core/Digest-MD5 ) sha? ( perl-core/Digest-SHA ) crc? ( dev-perl/Digest-CRC )
dev-lang/perl perl-core/Getopt-Long perl-core/PodParser perl-core/IO perl-core/Time-HiRes ipv6? ( dev-perl/IO-Socket-INET6 ) md5? ( perl-core/Digest-MD5 ) sha? ( perl-core/Digest-SHA ) crc? ( dev-perl/Digest-CRC )
0
http://www.finnie.org/software/2ping/2ping-2.0.tar.gz
http://www.finnie.org/software/2ping/
GPL-2
A bi-directional ping utility
~amd64 ~x86
crc ipv6 md5 sha server
4
install

@ -1,22 +0,0 @@
X? ( dev-python/PyQt4[X,assistant] ) =dev-lang/python-2*
X? ( dev-python/PyQt4[X,assistant] ) =dev-lang/python-2*
0
mirror://sourceforge/linkchecker/LinkChecker-5.2.tar.gz
test
http://linkchecker.sourceforge.net/
GPL-2
Check websites for broken links
amd64 ppc x86 ~ppc-macos ~x64-solaris
distutils eutils multilib python toolchain-funcs user
X
3
compile install postinst postrm prepare

@ -1,22 +0,0 @@
doc? ( x11-libs/qt-assistant ) =dev-lang/python-2.7*
dev-python/dnspython bash-completion? ( dev-python/optcomplete ) bookmarks? ( dev-python/pysqlite:2 ) clamav? ( app-antivirus/clamav ) geoip? ( dev-python/geoip-python ) gnome? ( dev-python/pygtk:2 ) login? ( dev-python/twill ) syntax-check? ( dev-python/cssutils dev-python/utidylib ) X? ( dev-python/PyQt4[X,assistant] dev-python/qscintilla-python ) =dev-lang/python-2.7*
0
mirror://sourceforge/linkchecker/LinkChecker-7.5.tar.bz2
test
http://linkchecker.sourceforge.net/ http://pypi.python.org/pypi/linkchecker/
GPL-2
Check websites for broken links
~amd64 ~ppc ~x86 ~ppc-macos ~x64-solaris
bash-completion-r1 distutils eutils multilib python toolchain-funcs user
bash-completion bookmarks clamav doc geoip gnome login syntax-check X
4
compile install postinst postrm prepare setup

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save