Sync with portage [Wed Jul 11 18:02:08 MSK 2012].

mhiretskiy
root 12 years ago
parent 90d0a8f555
commit c57b71e888

@ -0,0 +1,35 @@
bug #424095
diff -urN shishi-1.0.1-orig/configure.ac shishi-1.0.1/configure.ac
--- shishi-1.0.1-orig/configure.ac 2012-03-12 11:18:21.000000000 -0700
+++ shishi-1.0.1/configure.ac 2012-07-08 15:43:18.597050382 -0700
@@ -24,7 +24,7 @@
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS(config.h)
-AM_INIT_AUTOMAKE([1.10 -Wall -Werror -Wno-override])
+AM_INIT_AUTOMAKE([1.10 -Wall -Wno-override])
AM_SILENT_RULES([yes])
# Library code modified: REVISION++
@@ -43,6 +43,9 @@
AC_HEADER_STDC
AC_CHECK_HEADERS(termios.h pwd.h syslog.h resolv.h arpa/nameser.h netinet/in6.h)
+# Defined for >= automake 1.12
+m4_ifdef([AM_PROG_AR],[AM_PROG_AR])
+
# Used when creating libshishi-XX.def.
SOVERSION=`expr ${LT_CURRENT} - ${LT_AGE}`
AC_SUBST(SOVERSION)
diff -urN shishi-1.0.1-orig/m4/po.m4 shishi-1.0.1/m4/po.m4
--- shishi-1.0.1-orig/m4/po.m4 2012-03-12 11:18:53.000000000 -0700
+++ shishi-1.0.1/m4/po.m4 2012-07-08 14:59:00.247043443 -0700
@@ -24,7 +24,7 @@
[
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
AC_REQUIRE([AC_PROG_INSTALL])dnl
- AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake
+ AC_REQUIRE([AC_PROG_MKDIR_P])dnl defined by automake
AC_REQUIRE([AM_NLS])dnl
dnl Release version of the gettext macros. This is used to ensure that

@ -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/app-crypt/shishi/shishi-1.0.1.ebuild,v 1.3 2012/04/24 09:40:49 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/shishi/shishi-1.0.1.ebuild,v 1.4 2012/07/11 09:11:47 eras Exp $
EAPI=4
inherit multilib autotools eutils
@ -26,6 +26,8 @@ RDEPEND="${DEPEND}"
src_prepare() {
# fix finding libresolv.so
epatch "${FILESDIR}/${PN}_resolv.patch"
# fix building with automake-1.12 bug #424095
epatch "${FILESDIR}/${PN}_automake-1.12.patch"
# don't create a new database
sed -i -e '/install-data-hook/s/^/#/' Makefile.am || die

@ -2,3 +2,4 @@ DIST virt-manager-0.8.7.tar.gz 1879504 SHA256 1907ec0e5479d6af8b4882fc068b74fa8c
DIST virt-manager-0.9.0-bp-1.tar.bz2 707 SHA256 823ae2aea4515e47db9791e3edda78530223a48ba2fa0bdb33a328e85e64f284 SHA512 005810c7ca6a7292b8ad013e7ed2d6760f531b2a9ae172012473ac1d233e998d0fece98c58995b0a04ac7e6b3917ca5aa3834d301cc85f88644b9868bba701b9 WHIRLPOOL c9917daeb159f6d453bacb16a47bec4c4d455d45506f2f49b9c5ef446c7ab35f0b59006f2c21bb85b10a5e84cae64d81cf9f433fca357594a5e70bfc504e27a8
DIST virt-manager-0.9.0.tar.gz 1951176 SHA256 db0de808efa5d6bae0bdc2db796e58ea79f9e1db20d9a5a5977b28b4b85d4321 SHA512 1fc87a4d71d31a9387e7747b84ed9e5cc4eb8a27362677d373e70056e9fe1e1023e8f58609cb6db2fba45c5ed53fc60b7d51420f39a5e6a646a1be59ae1e4a04 WHIRLPOOL 850e68c8cd067a26771725cd0a28573e926b2976dc8ced4ba8f08d996fd2b1b0bac07d7906ea88023dac6641ae3c6e290e339400d04f139d4cac4bf017531966
DIST virt-manager-0.9.1.tar.gz 1942398 SHA256 15e064167ba5ff84ce6fc8790081d61890430f2967f89886a84095a23e40094a SHA512 d21f06e5f99a66318c58d78b8d61b6c590c5defc5eccb2d2f6b4182d1883e02a095ad7b44bef0c6c0cd32919b6670b5c41ee3c5b5d44cc592bcdd56e73f19801 WHIRLPOOL 191fda27f3e99cf38ecbc673b26be3d0aa38b0e88777f73798f6444a6463b66fba1345304af3ee2344eb31de2a34f57e48108d6191d94eb251ea0b006cf79cab
DIST virt-manager-0.9.3.tar.gz 1714511 SHA256 0d6c79c0cb2449345c07def1b24b2bec31c7e70bf46a5bcec035301c598d0d17 SHA512 feb39022622a86aac8d497bf42bcb12dacaea12542d1f2d3b7bbe88c7feb60d94ddd33c094f76cc00dc26fcc66e8ba69461d9efe5d3ba21dd79db3e2cb3ccb37 WHIRLPOOL 6616750444027a0f525465bb3c7e9d3849ebf15ea60fbfd241ceabf99a79f15b6a443ef54611bce503c3a4b941c9aa1ee089ab0a112d79641ed3a02174ddb2fe

@ -0,0 +1,94 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-0.9.3.ebuild,v 1.1 2012/07/11 05:29:56 cardoe Exp $
EAPI=4
#BACKPORTS=4
if [[ ${PV} = *9999* ]]; then
EGIT_REPO_URI="http://git.fedorahosted.org/git/virt-manager.git"
fi
PYTHON_DEPEND="2:2.5"
# Stop gnome2.eclass from doing stuff on USE=debug
GCONF_DEBUG="no"
inherit eutils gnome2 python
if [[ ${PV} = *9999* ]]; then
inherit git-2 autotools
SRC_URI=""
KEYWORDS=""
VIRTINSTDEP=">=app-emulation/virtinst-9999"
else
SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz
${BACKPORTS:+mirror://gentoo/${P}-bp-${BACKPORTS}.tar.bz2
http://dev.gentoo.org/~cardoe/distfiles/${P}-bp-${BACKPORTS}.tar.bz2}"
KEYWORDS="~amd64 ~x86"
VIRTINSTDEP=">=app-emulation/virtinst-0.600.2"
fi
DESCRIPTION="A graphical tool for administering virtual machines (KVM/Xen)"
HOMEPAGE="http://virt-manager.org/"
LICENSE="GPL-2"
SLOT="0"
IUSE="gnome-keyring policykit sasl spice"
RDEPEND=">=dev-python/pygtk-1.99.12
>=app-emulation/libvirt-0.7.0[python,sasl?]
>=dev-libs/libxml2-2.6.23[python]
${VIRTINSTDEP}
>=gnome-base/librsvg-2
>=x11-libs/vte-0.12.2:0[python]
>=net-libs/gtk-vnc-0.3.8[python,sasl?]
>=dev-python/dbus-python-0.61
>=dev-python/gconf-python-1.99.11
dev-python/urlgrabber
gnome-keyring? ( dev-python/gnome-keyring-python )
policykit? ( sys-auth/polkit )
spice? ( >=net-misc/spice-gtk-0.6[python,sasl?,-gtk3] )"
# tui? ( >=dev-python/new_syrup-0.1.2 )"
DEPEND="${RDEPEND}
app-text/rarian
dev-util/intltool"
pkg_setup() {
G2CONF="--without-tui"
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
sed -e "s/python/python2/" -i src/virt-manager.in || \
die "python2 update failed"
[[ -n ${BACKPORTS} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
if [[ ${PV} = *9999* ]]; then
# virt-manager's autogen.sh touches this and eautoreconf fails
# unless we do this
touch config.rpath
rm -rf config.status || die
intltoolize --automake --copy --force || die
perl -i -p -e 's,^DATADIRNAME.*$,DATADIRNAME = share,' po/Makefile.in.in || die
perl -i -p -e 's,^GETTEXT_PACKAGE.*$,GETTEXT_PACKAGE = virt-manager,' \
po/Makefile.in.in || die
eautoreconf
fi
gnome2_src_prepare
}
pkg_postinst() {
python_mod_optimize /usr/share/${PN}
gnome2_pkg_postinst
}
pkg_postrm() {
python_mod_cleanup /usr/share/${PN}
gnome2_pkg_postrm
}

@ -1,2 +1,3 @@
DIST virtinst-0.600.0.tar.gz 576764 SHA256 92dc8f14d31ffb0e79479fab982203027c45c83d25e73af7627f589f92ca797a SHA512 db7858aa97aef8bbd406473369107e4d588e4d6ffc893c2bf98dabe23eb4a91f61044a0b26d30b55c5ac1088309d28cbb1e76d70f1c674a6a720e6609f858e6e WHIRLPOOL ed06cc8be02fab70f686016747898d59c5d74f343936105f279a406c39227f3e68098f0f3bfa0ebc2dabde046ffbde16f1ecc6876b3497707487a660695e652a
DIST virtinst-0.600.1.tar.gz 8122159 SHA256 db342cf93aae1f23df02001bdb0b0cc2c5bf675dca37b4417f5a79bf5a374716 SHA512 f51f4f497492278e6de20e70bb2eec1d0219ec5f33894883a70e6df91f2ff31805fef8745dea9822eb78e051986d37d09b0638eed8705d77a1e2c04e5c70045a WHIRLPOOL ba44a662eb66b94b1e7e4fd377a484884aca5b50bfd22bc3fa4522adf465f7de2b5154a9dec6d1f452383bfe77fd28c6d2f741cffe7385b1bfbc4c94d0e8a2a3
DIST virtinst-0.600.2.tar.gz 8174357 SHA256 b342272bf6666ede7eaac81e3973cbe8283f42e3182caa86b5da6c7cf2d952c3 SHA512 cc7d5b19332f31efd36df6a13c3041b67798004d301381585de638c8a37f913502f737547d55a468ca3b48ae5282ad003ec4833bd022a53d1b1f8421fa0ea874 WHIRLPOOL dc46ae902d07bcbd56517c8e35967b9d2f8312efe1d6a58b60860b1b28bc4b1b70e751060f4d89106d4f97a6b41b4535418ad5e1e8164f93b4eaad3f6e5f034a

@ -0,0 +1,48 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtinst/virtinst-0.600.2.ebuild,v 1.1 2012/07/11 05:23:59 cardoe Exp $
#BACKPORTS=2
EAPI=3
if [[ ${PV} = *9999* ]]; then
EGIT_REPO_URI="http://git.fedorahosted.org/git/python-virtinst.git"
GIT_ECLASS="git-2"
fi
PYTHON_DEPEND="2"
RESTRICT_PYTHON_ABIS="3.*"
SUPPORT_PYTHON_ABIS="1"
inherit distutils eutils ${GIT_ECLASS}
if [[ ${PV} = *9999* ]]; then
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://virt-manager.et.redhat.com/download/sources/${PN}/${P}.tar.gz
${BACKPORTS:+mirror://gentoo/${P}-bp-${BACKPORTS}.tar.bz2
http://dev.gentoo.org/~cardoe/distfiles/${P}-bp-${BACKPORTS}.tar.bz2}"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="Python modules for starting virtualized guest installations"
HOMEPAGE="http://virt-manager.et.redhat.com/"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
RDEPEND=">=app-emulation/libvirt-0.7.0[python]
dev-python/urlgrabber
dev-libs/libxml2[python]"
DEPEND="${RDEPEND}"
PYTHON_MODNAME="virtconv virtinst"
src_prepare() {
[[ -n ${BACKPORTS} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
distutils_src_prepare
}

@ -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/app-portage/gentoolkit/gentoolkit-0.3.0.6-r3.ebuild,v 1.1 2012/06/20 20:09:15 fuzzyray Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/gentoolkit-0.3.0.6-r3.ebuild,v 1.3 2012/07/11 10:15:28 blueness Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -18,7 +18,7 @@ LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
# Note: argparse is provided in python 2.7 and 3.2 (Bug 346005)
# Note: dev-lang/python dependencies are so emerge will print a blocker if any

@ -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/app-text/zathura-cb/zathura-cb-0.1.0.ebuild,v 1.2 2012/07/10 20:00:09 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-cb/zathura-cb-0.1.0.ebuild,v 1.3 2012/07/11 05:52:38 jdhore Exp $
EAPI=4
inherit toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
COMMON_DEPEND=">=app-text/zathura-0.2.0

@ -1,2 +1 @@
DIST zathura-djvu-0.1.1.tar.gz 8392 SHA256 04adad7bf1bb392eae4b7b856fe7d40a137f8185ac274289df922758ae827172 SHA512 b3ac2d35976605f9c34c2a37bf66075252b43cdbe1322ce2460eba4b3477647766d61bff7cc485f4869b496c8d77c8ac77d8c25cbc00b861a97d3c8fb4049922 WHIRLPOOL c30313c14998b36ceb3de9a525952c202a72bcb7475b161674432b32f0f359ad8a22409e623433f98f40c9040c45dc701451b56c3421f554fc1ee747ac0ab998
DIST zathura-djvu-0.2.0.tar.gz 10034 SHA256 c276cdb3901fbb8c76f070d69a590181992eea2cb48f09589e4fda9e67e1f813 SHA512 e65655c407633c4478d14f98c2eb22980993abd1f2677215b9e7c3eeeac4f721adb4c8fc69d5a6190b244099e3b6c2a20ddb6f243cbbdff859c912e4dcbddfa1 WHIRLPOOL 59b02970454489d82d6994ae4c37d4ddb72fb8521e0429fe66c01e5d916a31697b025ae3099cd6c0a43cb29e1eaeea80ee0fcd7efc65dc5eaae07673b3eaa4bd

@ -1,41 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-djvu/zathura-djvu-0.1.1.ebuild,v 1.4 2012/05/22 07:18:01 jdhore Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="DjVu plug-in for zathura"
HOMEPAGE="http://pwmt.org/projects/zathura/"
SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=app-text/djvu-3.5.24-r1
>=app-text/zathura-0.1.1
dev-libs/girara:2
>=dev-libs/glib-2
x11-libs/cairo"
DEPEND="${RDEPEND}
virtual/pkgconfig"
pkg_setup() {
myzathuraconf=(
CC="$(tc-getCC)"
LD="$(tc-getLD)"
VERBOSE=1
DESTDIR="${D}"
)
}
src_compile() {
emake "${myzathuraconf[@]}"
}
src_install() {
emake "${myzathuraconf[@]}" install
dodoc AUTHORS
}

@ -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/app-text/zathura-djvu/zathura-djvu-0.2.0.ebuild,v 1.2 2012/07/10 20:00:35 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-djvu/zathura-djvu-0.2.0.ebuild,v 1.3 2012/07/11 05:50:15 jdhore Exp $
EAPI=4
inherit toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=app-text/djvu-3.5.24-r1

@ -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/app-text/zathura-meta/zathura-meta-0.ebuild,v 1.2 2012/07/10 19:57:46 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-meta/zathura-meta-0.ebuild,v 1.3 2012/07/11 05:51:03 jdhore Exp $
EAPI=4
@ -10,7 +10,7 @@ SRC_URI=""
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="cb djvu +pdf postscript"
RDEPEND="app-text/zathura

@ -1,2 +1 @@
DIST zathura-pdf-poppler-0.1.1.tar.gz 7584 SHA256 bec5fee721fcaee9f4b53d3882908b19efa82815393aa8c3619ff948b909d4a7 SHA512 8cbdebb3f9dd543c23a2380a499a69252e0072a507c242ddff153e49aa6859db3cb88995ee749b559444eb42cc1d5e38a67e9c73d74e458c29f2ecf1af0b3394 WHIRLPOOL c0150c911543c7f066836295592becebafb85501c280d9220dd21664a8f8b448249d39944dab2910dfe94a509d0f249d83b6473e8687226fc0ad2aa605fcd1c5
DIST zathura-pdf-poppler-0.2.0.tar.gz 8168 SHA256 a3ee96405e31d049111f351cb69626e67a8ab6fbfb53bb8a3e3e5f79240d0ed7 SHA512 afcb1073bbe0008e8fc019600827455ce5ca391cf3c275a9443f9aaa6001dbffd22209c88a92c3d433dd8d8aa996be5d33c1a07d40dbfd2cc0cfbcd01cd85521 WHIRLPOOL 74140f91bfcc44c502ac6130eff856492b31f8e79fcafb4025e275f4d025ad502e8dd28bb67a270d658338102e36be624919dee2fec9172bd5291e3ffb310377

@ -1,39 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.1.1.ebuild,v 1.4 2012/05/22 07:16:47 jdhore Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="PDF plug-in for zathura"
HOMEPAGE="http://pwmt.org/projects/zathura/"
SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="app-text/poppler[cairo]
>=app-text/zathura-0.1.1
dev-libs/girara:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
pkg_setup() {
myzathuraconf=(
CC="$(tc-getCC)"
LD="$(tc-getLD)"
VERBOSE=1
DESTDIR="${D}"
)
}
src_compile() {
emake "${myzathuraconf[@]}"
}
src_install() {
emake "${myzathuraconf[@]}" install
dodoc AUTHORS
}

@ -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/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.2.0.ebuild,v 1.2 2012/07/10 19:59:11 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.2.0.ebuild,v 1.3 2012/07/11 05:53:57 jdhore Exp $
EAPI=4
inherit toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="app-text/poppler[cairo]

@ -1,2 +1 @@
DIST zathura-ps-0.1.0.tar.gz 4995 SHA256 1669fd11e436636cdedb2cde206b562f4f9c666cea9773f6f2014e765fd62789 SHA512 eb8ac549dc14d46b03c3d865894d82d10e4ae19a454f09151a191b0adf3e959074b2a5f505c77b024f17795cee6fd8481f321293465adaeeb6ecad94f9910588 WHIRLPOOL db660277b847dadfa5e552bed35c7bbc5337941ba5d682b0ffd912ec5b3446ea09484970b70dcc9df801f8384dcf0b0e98b049299340d5c4af51d4c6246514bb
DIST zathura-ps-0.2.0.tar.gz 5004 SHA256 717eda01213b162421b6b52f29d6b981edc302fddf351ccb2c093b6842751414 SHA512 b4a06bf1cdce7da056106f67924068598260d5fb5ffc93015c9e4c2c8ee16ecaf774702910eddf4724ac59b8d9340158d56f746e5a8a6597897887ff9f980dcf WHIRLPOOL ad40cfd9b44a283c68efce12d87d5ed1d6036257fd3cfbebe4b7f808e14d7923761d783d5e20ff55d61c8350ba81ab6fa0fe0992a8e60abbd3c6db705354f9f3

@ -1,41 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-ps/zathura-ps-0.1.0.ebuild,v 1.4 2012/05/22 07:18:33 jdhore Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="PostScript plug-in for zathura"
HOMEPAGE="http://pwmt.org/projects/zathura/"
SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=app-text/libspectre-0.2.6
>=app-text/zathura-0.1.1
dev-libs/girara:2
>=dev-libs/glib-2
x11-libs/cairo"
DEPEND="${RDEPEND}
virtual/pkgconfig"
pkg_setup() {
myzathuraconf=(
CC="$(tc-getCC)"
LD="$(tc-getLD)"
VERBOSE=1
DESTDIR="${D}"
)
}
src_compile() {
emake "${myzathuraconf[@]}"
}
src_install() {
emake "${myzathuraconf[@]}" install
dodoc AUTHORS
}

@ -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/app-text/zathura-ps/zathura-ps-0.2.0.ebuild,v 1.2 2012/07/10 19:59:41 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-ps/zathura-ps-0.2.0.ebuild,v 1.3 2012/07/11 05:51:58 jdhore Exp $
EAPI=4
inherit toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=app-text/libspectre-0.2.6

@ -1,2 +1 @@
DIST zathura-0.1.2.tar.gz 65875 SHA256 a496c25071e54f675b65ee5eab02fd002c04c2d7d5cf4aa8a1cb517cc13beaef SHA512 a2977d69cb07865b3ff16711b47f9370379ed79f9ef6e2f306d76097d6981644634d31bbf338623ea9ab72bb6294b4da4992b8158775dcf4d952b05643008dd3 WHIRLPOOL 01d8b178108e5efaf36e6c919df35089eb8bf26b4fb445839dae5879d9fee47965cb5cf2166c70c9bad8aaf5e1ee252eaa240736e34b76f5f76b43585a52fd8c
DIST zathura-0.2.0.tar.gz 86951 SHA256 fd235a44c545e929a538ebb0a3f385349a190fd86c8b044a4328a3779d5c2d2f SHA512 a804b6a36a1a91cd799f7cf0c2e9ed581783be443175c0c46527e9719ce57eac125d991b8c20f421cbd6c7f49d3ef3f02d1ad56246c7641b47ec7016fb041914 WHIRLPOOL 893cdae9b1b498275e47016f5b95efd8d4b2d68eb89a63e4699e9e368c7f7b1f044d0bdf7200c2aa896ac558694a86ba4f77218d21ce61463dc2798e5d52a230

@ -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/app-text/zathura/zathura-0.1.2.ebuild,v 1.4 2012/05/22 07:17:30 jdhore Exp $
EAPI=4
inherit eutils multilib toolchain-funcs
DESCRIPTION="A highly customizable and functional document viewer"
HOMEPAGE="http://pwmt.org/projects/zathura/"
SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="sqlite"
RDEPEND=">=dev-libs/girara-0.1.2:2
sqlite? ( dev-db/sqlite:3 )"
DEPEND="${RDEPEND}
dev-python/docutils
virtual/pkgconfig
sys-devel/gettext"
pkg_setup() {
myzathuraconf=(
ZATHURA_GTK_VERSION=2
WITH_SQLITE=$(usex sqlite 1 0)
LIBDIR='${PREFIX}'/$(get_libdir)
RSTTOMAN="$(type -P rst2man.py)"
CC="$(tc-getCC)"
SFLAGS=""
VERBOSE=1
DESTDIR="${D}"
)
}
src_compile() {
emake "${myzathuraconf[@]}"
}
src_install() {
emake "${myzathuraconf[@]}" install
dodoc AUTHORS
}
pkg_postinst() {
elog "You can install app-text/zathura-pdf-poppler for PDF support."
}

@ -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/app-text/zathura/zathura-0.2.0.ebuild,v 1.2 2012/07/10 19:58:40 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura/zathura-0.2.0.ebuild,v 1.3 2012/07/11 05:49:35 jdhore Exp $
EAPI=4
inherit eutils multilib toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="doc sqlite"
RDEPEND=">=dev-libs/girara-0.1.3:2

@ -1,2 +1 @@
DIST girara-0.1.2.tar.gz 65748 SHA256 89231d0da3c790e0765ad85d74f64cf50051b8bafe6065882e34e378ab14ec99 SHA512 e1e70a63ef30fa8a952badd012d29912fb96dd6e4f272317db9e0ba2059718ca2307fd4ed98b525f692f236c11e3cf10c59c74f4741bc625aff1a390c24b6a36 WHIRLPOOL 3cb670ed2e6c46f658bb68bc85fdb23dd1bc73b0594747ed2f1aa49394f49271adc78a32c2fd25e9b7c1baf104fb92a0db65335694ff215be242f28396c255b9
DIST girara-0.1.3.tar.gz 73711 SHA256 3cc2b56356a4be2f4e47638b697d830408a870cf37e85d36d9d2b591f86748af SHA512 108e8643f44fb1016ffd31e6d6133b6fa46c9625d69f548569a92fe07442025918c78fb4564f41a66ba6967d2e947959946747fd65c0f045f7adc99ce6177e0b WHIRLPOOL 72838b6249b89ca321a956b08862fd67f9302cedeee62464a820fcb58847ca17cb17f2617b550e85c665e3f897db2a3e33ecb410e27912b7bd9fb1d175edec09

@ -1,40 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/girara/girara-0.1.2.ebuild,v 1.4 2012/05/22 07:16:15 jdhore Exp $
EAPI=4
inherit multilib toolchain-funcs
DESCRIPTION="A library that implements a user interface that focuses on simplicity and minimalism"
HOMEPAGE="http://pwmt.org/projects/girara/"
SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="2"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2.18.6:2"
DEPEND="${RDEPEND}
virtual/pkgconfig
sys-devel/gettext"
pkg_setup() {
mygiraraconf=(
LIBDIR='${PREFIX}'/$(get_libdir)
GIRARA_GTK_VERSION=2
CC="$(tc-getCC)"
SFLAGS=""
VERBOSE=1
DESTDIR="${D}"
)
}
src_compile() {
emake "${mygiraraconf[@]}"
}
src_install() {
emake "${mygiraraconf[@]}" install
dodoc AUTHORS
}

@ -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/girara/girara-0.1.3.ebuild,v 1.2 2012/07/10 19:58:11 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/girara/girara-0.1.3.ebuild,v 1.3 2012/07/11 05:53:18 jdhore Exp $
EAPI=4
inherit multilib toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="2"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="static-libs"
RDEPEND=">=x11-libs/gtk+-2.18.6:2"

@ -1,2 +1,3 @@
DIST miniupnpc-1.6.20120509.tar.gz 68205 SHA256 cd023862ae3882246102594fda7dc5efd4feb2531bf7903abc62aa02e76193d8 SHA512 7d6a73676c1ed7e9c54ea1cd1214adb27da432b92a7fa102f1e9c10cf78d30d9a0a7b96dca30de36fce7ca7e66890170d9af78550df220c7d233c69e44917e8d WHIRLPOOL 5a998f2b143ce7deeaba58efe678a8386babc8b58ee5a83e5ba4f5767e7077ac0a741b9b4a685de8d0ed16b6579ea3e706fb12255ee8f989dfd738ee305c73ab
DIST miniupnpc-1.6.tar.gz 66454 SHA256 bbd6b756e6af44b5a5b0f9b93eada3fb8922ed1d6451b7d6f184d0ae0c813994 SHA512 c635057e40aa2826fb07db51c474a335cbcecbf7bba09773826b1aff4a01024dced8a6122e2b90db544540ae499b687006392d6041f7605467b73111ccb368a8 WHIRLPOOL 13b01fd4afcb05bd3f046e00b9d86c1c1655a262dcce5c50865ad93bae4028de8e16417ee5d3219971979ec2128c71bec03d8efc350157f2fb4744ca2757a597
DIST miniupnpc-1.7.tar.gz 68327 SHA256 16dd2456be9b4bf290667c00eeb38c77ad47eb2107569b2dadcfcee8c9af6337 SHA512 ad2a689e91da068f2e291336cced9933963c2adc619b5e82dbb684e496d3683adba6a4634dd17265bf8dcc9d8f6c783b66aee1803ce63383997c27de3c16b194 WHIRLPOOL e9c7eed931fa1247ecfa8d9064d6890f6acca7ff41d79ec32716568f78317d972e14ecdee005a61e2a01914c984d0e18c63607ef9e79fef5a3974a8ca7586909

@ -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/dev-python/miniupnpc/miniupnpc-1.7.ebuild,v 1.1 2012/07/11 08:11:08 mgorny Exp $
EAPI=4
PYTHON_COMPAT="python2_6 python2_7"
inherit eutils python-distutils-ng
DESCRIPTION="Python bindings for UPnP client library"
HOMEPAGE="http://miniupnp.free.fr/"
SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
RDEPEND=">=net-libs/miniupnpc-${PV}"
DEPEND="${RDEPEND}"
src_prepare() {
epatch_user
epatch "${FILESDIR}"/0001-Link-Python-module-against-the-shared-library.patch
python-distutils-ng_src_prepare
}

@ -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-python/netifaces/netifaces-0.8.ebuild,v 1.3 2012/05/22 11:25:28 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/netifaces/netifaces-0.8.ebuild,v 1.4 2012/07/11 12:24:34 vapier Exp $
EAPI=4
@ -16,7 +16,7 @@ SRC_URI="http://alastairs-place.net/projects/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
KEYWORDS="amd64 arm x86"
IUSE=""
DEPEND="dev-python/setuptools"

@ -1,10 +1,11 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/yapsy/yapsy-1.9.ebuild,v 1.1 2012/06/21 11:14:55 maksbotan Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/yapsy/yapsy-1.9.ebuild,v 1.2 2012/07/11 10:20:47 xmw Exp $
EAPI="4"
DISTUTILS_SRC_TEST="setup.py"
#bug 423107
#DISTUTILS_SRC_TEST="setup.py"
SUPPORT_PYTHON_ABIS="1"
PYTHON_DEPEND="2"

@ -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/prawn-layout/prawn-layout-0.8.4-r2.ebuild,v 1.4 2012/07/08 16:06:57 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn-layout/prawn-layout-0.8.4-r2.ebuild,v 1.5 2012/07/11 05:41:25 graaff Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 ree18 jruby"
@ -22,12 +22,6 @@ ruby_add_bdepend test "dev-ruby/test-spec dev-ruby/mocha"
ruby_add_rdepend "=dev-ruby/prawn-core-$(get_version_component_range 1-2)*"
USE_RUBY=ruby19 ruby_add_bdepend "test? ( dev-ruby/test-unit:0 )"
all_ruby_prepare() {
sed -i -e '6irequire "prawn/core"; ruby_19 { gem "test-unit", "=1.2.3" }' spec/spec_helper.rb || die
}
all_ruby_install() {
all_fakegem_install

@ -1 +1 @@
DIST cvsutils-0.2.5.tar.gz 79596 SHA256 ac5f6faf250fd317655d79782e6f7cecaa5ab836659d8a31c28faa51160a4681 SHA512 7ad840ebfdbc9e53bd7463bc523108381ad3d5d474e166e7dd0d8f1ffb5c6751d027d19b93743c412001ba63a60a6d4bb63a05a735d2f0b2246e14141ef638c1 WHIRLPOOL 7a99e2240269a9ab09a39922b6a022b831565c70d49466528b830c97fcbda08aefea6cd036596d629efd6b13f60b7d37253a3e1e57f0d34ad49d7b48ae49a8b5
DIST cvsutils-0.2.5.tar.gz 79596 RMD160 98b8af82f1ab61b8fcfe5973af703a25cb992936 SHA1 294599ce431be50ad1da7295e8b6a65a17fbf531 SHA256 ac5f6faf250fd317655d79782e6f7cecaa5ab836659d8a31c28faa51160a4681

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cvsutils/cvsutils-0.2.5.ebuild,v 1.2 2011/08/28 17:56:50 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cvsutils/cvsutils-0.2.5.ebuild,v 1.3 2012/07/11 07:14:06 heroxbd Exp $
DESCRIPTION="A small bundle of utilities to work with CVS repositories"
HOMEPAGE="http://www.red-bean.com/cvsutils/"
@ -8,7 +8,7 @@ SRC_URI="http://www.red-bean.com/cvsutils/releases/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="dev-lang/perl"

@ -1,2 +1,2 @@
DIST mailx_8.1.2-0.20050715cvs-1.diff.gz 36758 RMD160 bf116b8e7d1207b37d0f9451771f0f318880aff2 SHA1 f8b54d1c6fff315444f5342481fad9d5cf9b52c0 SHA256 2fb891f912624766d0bef765d69cec75ad3334dda1aa58659f3c3c1d0579c2c3
DIST mailx_8.1.2-0.20050715cvs.orig.tar.gz 94664 RMD160 9fdf63d616f2240141bf06dc1fbf6457ddd5fc1c SHA1 23e2ddef1bbd0df85d7ecbecc5fd62f90eb9a4a4 SHA256 5c578a8c573b4430358d4f6523f8acd8b2c5039579d907c88ec09dab13b226d3
DIST mailx_8.1.2-0.20050715cvs-1.diff.gz 36758 SHA256 2fb891f912624766d0bef765d69cec75ad3334dda1aa58659f3c3c1d0579c2c3 SHA512 6506261f24d5a022fd9cee596a78488a279a0b39b7281cdad9c3e52b5c7f6c2506a1b24970c28cf7b4ffa4ce2d71fec650f42d22959b53aeca0f160b2885b2fe WHIRLPOOL f265880c7b318b4353b182f3e7923315bca5b42d1d1770232cba39d6e92b362acb13c6ca05330c43523ed9c8e55d5602ad71cef579d08f506476c5b107ecaab3
DIST mailx_8.1.2-0.20050715cvs.orig.tar.gz 94664 SHA256 5c578a8c573b4430358d4f6523f8acd8b2c5039579d907c88ec09dab13b226d3 SHA512 1c1d991a0e522b2e78a49b9c78eed80b1f6d4f68ca0427ef720ebe77a3a2881bcd3d63967ab04f5d6f75fbf2212e260e4a841152f8a69d300c46acd90bb48d68 WHIRLPOOL d21dcdfa16a8d5ac8a750618b1319688781542d348397b7616d4efef660c2bc25dd0cd923fddadc772dc08a25dabc114179014e659ce3fe6cf4afc1a98fe2048

@ -0,0 +1,70 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/mailx/mailx-8.1.2.20050715-r6.ebuild,v 1.1 2012/07/11 10:26:38 eras Exp $
inherit eutils flag-o-matic toolchain-funcs
MX_MAJ_VER=${PV%.*}
MX_MIN_VER=${PV##*.}
MY_PV=${MX_MAJ_VER}-0.${MX_MIN_VER}cvs
S=${WORKDIR}/${PN}-${MY_PV}.orig/
debian_patch=${PN}_${MY_PV}-1.diff.gz
DESCRIPTION="The /bin/mail program, which is used to send mail via shell scripts"
HOMEPAGE="http://www.debian.org/"
SRC_URI="mirror://gentoo/mailx_${MY_PV}.orig.tar.gz
mirror://gentoo/${debian_patch}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
DEPEND=">=net-libs/liblockfile-1.03
virtual/mta
mail-client/mailx-support"
RDEPEND="${DEPEND}
!mail-client/nail
!net-mail/mailutils"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${DISTDIR}/${debian_patch}"
epatch "${FILESDIR}/${P}-nostrip.patch"
sed -i -e "s: -O2: \$(EXTRAFLAGS):g" Makefile
epatch "${FILESDIR}/${P}-offsetof.patch"
}
src_compile() {
emake CC=$(tc-getCC) EXTRAFLAGS="${CFLAGS}" || die
}
src_install() {
dodir /usr/bin /bin /usr/share/man/man1 /etc
insinto /usr/bin
insopts -m 755
doins mail || die
doman mail.1
dosym mail /usr/bin/Mail
dosym mail /usr/bin/mailx
dosym mail.1 /usr/share/man/man1/Mail.1
insinto /usr/share/mailx/
doins misc/mail.help misc/mail.tildehelp || die
insinto /etc
insopts -m 644
doins misc/mail.rc || die
# compatibility link
dosym /usr/bin/mail /bin/mail || die
}
pkg_postinst() {
elog "mail command now lives in /usr/bin."
elog "Please adjust your scripts."
}

@ -1,2 +1,3 @@
DIST tap-plugins-0.7.0.tar.gz 63863 RMD160 5aaf2d3397d36b57129079e48053fa2473953560 SHA1 f29038312c23b90e178d08c227c14ba174c1592a SHA256 87f4b5886ec581a617de49dd9ace75d0a5247672bfbc2cc32d2eebe233c80f34
DIST tap-plugins-0.7.1.tar.gz 72752 RMD160 881043d396d410c2c9988d5ac83578ca0a48ef70 SHA1 c368efd4d1e7856ab79f4485c8be5054354f7aeb SHA256 466294fb8b252b6a4da4f6d44d36ef7eb11ebe2e85a1d78aca5ab9613d1d5a28
DIST tap-plugins-0.7.0.tar.gz 63863 SHA256 87f4b5886ec581a617de49dd9ace75d0a5247672bfbc2cc32d2eebe233c80f34
DIST tap-plugins-0.7.1.tar.gz 72752 SHA256 466294fb8b252b6a4da4f6d44d36ef7eb11ebe2e85a1d78aca5ab9613d1d5a28 SHA512 2463360dffc1fbb866b3e10b54d3e7c2cc0730cbb3bb0524c03ce9024c53322fd791be29680d6fcde877036b54d5cade7de410199499c7591383fdda6551f305 WHIRLPOOL ee41bbf861cf60183c35ee977cd3c1e10de2413d241c4de2760ed9ff8d3b7fbd74e80cee8790525f6cedaa6434614af2aa772118516c6f357ebdaa60ba62b11f
DIST tap-plugins-0.7.2.tar.gz 70961 SHA256 1a484bd8084260448ed3ea6a8edeb61b9e70df9e88036f4b35741fc23be79ee0 SHA512 3cd7605b03c2732f22d7ff79c889b50db4514d232c639cf964d65b2428b8ce6193824e26622ded662cae74351daa38a321bc1b1590035e5fa0fb79bb4620edd0 WHIRLPOOL d965972b45326eddf8a4f33790c6168a1df052949e9ddff08e120ff465c31385a70db7ffbdf99d6f54a3c5d6999d365f08341e05fdd240947419c3be8107ca69

@ -0,0 +1,40 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/tap-plugins/tap-plugins-0.7.2.ebuild,v 1.1 2012/07/11 12:29:16 aballier Exp $
#
inherit multilib toolchain-funcs eutils
IUSE=""
DESCRIPTION="TAP LADSPA plugins package. Contains DeEsser, Dynamics, Equalizer, Reverb, Stereo Echo, Tremolo"
HOMEPAGE="http://tap-plugins.sourceforge.net"
SRC_URI="mirror://sourceforge/tap-plugins/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
DEPEND="media-libs/ladspa-sdk"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-0.7.0-cflags-ldflags.patch"
}
src_compile() {
emake CC=$(tc-getCC) OPT_CFLAGS="${CFLAGS}" EXTRA_LDFLAGS="${LDFLAGS}" || die
}
src_install() {
dodoc README CREDITS
insinto /usr/$(get_libdir)/ladspa
insopts -m0755
doins *.so || die
insinto /usr/share/ladspa/rdf
insopts -m0644
doins *.rdf || die
}

@ -1,6 +1,6 @@
DIST mpd-0.16.2.tar.bz2 478096 RMD160 74e63fe4514eb8309bf2b2e4e4012566e14b6262 SHA1 ce0b8cd473f8acb45c06d73f41c18fc4dabbe440 SHA256 59a3c191bbfcbbbc119f4b1e44bcb62ce15e45bc4d5041153408acc3074cb1d5
DIST mpd-0.16.5.tar.bz2 498034 RMD160 05563d4b72016a3adb0b1ddf5536c26df1213cad SHA1 d04b9726a9bd39451428c7c945dd30e8b552d70c SHA256 1a03ba9fd38230d79be5ee7d2b75ffeae01d738613866cdf23e74a1e1e9b73db
DIST mpd-0.16.6.tar.bz2 486442 RMD160 5a54c17f7fae46b7e30afefdcc68c1b23b23f511 SHA1 235e34a27cfa5fbf5849eb1be32e441d34c3a139 SHA256 6ec5ad3fdeeb97608e40e041b6a458c61afd023a0fd1eeb464e208fcd36659df
DIST mpd-0.16.7.tar.bz2 487394 RMD160 17631cf20533ef8bacc1476fcc6f9857dfa7a52c SHA1 878f3ce82d4f00f6cbad63a625b2c0274c4a704a SHA256 47c10553389752c7fa072cf87c2bd30c552de75819fcf8286f3e7cc14ff0e32e
DIST mpd-0.16.8.tar.bz2 491170 RMD160 f64e96a1ea2bb09f759a40b02c1a31f32603999e SHA1 977c80db8dc64e65c2bc523f69a9a7a71adca2b1 SHA256 35183ae4a706391f5d739e4378b74f516952adda09a260fecfd531a58b0fff17
DIST mpd-0.17.tar.bz2 556624 RMD160 3b76e6bddd12618bee63dd03f8f5ec410b774b5c SHA1 36201f32ca5729b62b0e6cbddb19ade20ee3f7d7 SHA256 3151ad270530ec3408d65d884bcc776cd08f92040ee4aecb96e90b6145ad5867
DIST mpd-0.16.2.tar.bz2 478096 SHA256 59a3c191bbfcbbbc119f4b1e44bcb62ce15e45bc4d5041153408acc3074cb1d5
DIST mpd-0.16.5.tar.bz2 498034 SHA256 1a03ba9fd38230d79be5ee7d2b75ffeae01d738613866cdf23e74a1e1e9b73db
DIST mpd-0.16.6.tar.bz2 486442 SHA256 6ec5ad3fdeeb97608e40e041b6a458c61afd023a0fd1eeb464e208fcd36659df
DIST mpd-0.16.7.tar.bz2 487394 SHA256 47c10553389752c7fa072cf87c2bd30c552de75819fcf8286f3e7cc14ff0e32e
DIST mpd-0.16.8.tar.bz2 491170 SHA256 35183ae4a706391f5d739e4378b74f516952adda09a260fecfd531a58b0fff17
DIST mpd-0.17.tar.bz2 556624 SHA256 3151ad270530ec3408d65d884bcc776cd08f92040ee4aecb96e90b6145ad5867 SHA512 3a1aae5903070339037e6139b3be661d4a011151864b29511cfa4ec4856edd1d06f63c3857edd2942d7795362889df0e5776a91e4be8076812cc3f3a94dac6b5 WHIRLPOOL 5b9c5d84af40e7a8c75cf77d5d0e657940e7b554194a5b9ea168012f1609e0105ac486bf3800afaa2f39e63d3c021dbe5ba6d0e5b59df0272678b1d4a121b004

@ -24,6 +24,7 @@
<flag name="mpg123">Enable support for mp3 decoding over media-sound/mpg123</flag>
<flag name="network">Enables network streaming support</flag>
<flag name="pipe">Support writing audio to a pipe</flag>
<flag name="recorder">Enables output plugin for recording radio streams</flag>
<flag name="sid">Build with SID (Commodore 64 Audio) support</flag>
<flag name="soundcloud">Build plugin to access soundcloud</flag>
<flag name="soup">Use <pkg>net-libs/libsoup</pkg> for HTTP streaming</flag>

@ -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-sound/mpd/mpd-0.17.ebuild,v 1.2 2012/07/02 15:18:50 angelos Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.17.ebuild,v 1.3 2012/07/11 09:55:18 angelos Exp $
EAPI=4
inherit eutils flag-o-matic linux-info multilib systemd user
@ -14,14 +14,19 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos"
IUSE="aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac
fluidsynth +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad
mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio sid
sndfile soundcloud soup sqlite tcpd twolame unicode vorbis wavpack wildmidi
mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio recorder
sid sndfile soundcloud soup sqlite tcpd twolame unicode vorbis wavpack wildmidi
zeroconf zip"
REQUIRED_USE="|| ( alsa ao fifo jack network openal oss pipe pulseaudio )
|| ( aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack
ogg flac sid vorbis wavpack wildmidi )
network? ( || ( audiofile flac lame twolame vorbis ) )
OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
INPUT_PLUGINS="aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123
musepack ogg flac sid vorbis wavpack wildmidi"
ENCODER_PLUGINS="audiofile flac lame twolame vorbis"
REQUIRED_USE="|| ( ${OUTPUT_PLUGINS} )
|| ( ${INPUT_PLUGINS} )
network? ( || ( ${ENCODER_PLUGINS} ) )
recorder? ( || ( ${ENCODER_PLUGINS} ) )
lastfmradio? ( curl )"
RDEPEND="!<sys-cluster/mpich2-1.4_rc2
@ -87,9 +92,8 @@ src_prepare() {
src_configure() {
local mpdconf="--disable-despotify --disable-documentation --disable-ffado
--disable-gme --disable-mvp --disable-roar --enable-largefile
--enable-recorder-output --enable-tcp --enable-un
--docdir=${EPREFIX}/usr/share/doc/${PF}"
--disable-gme --disable-mvp --disable-noar --enable-largefile
--enable-tcp --enable-un --docdir=${EPREFIX}/usr/share/doc/${PF}"
if use network; then
mpdconf+=" --enable-shout $(use_enable vorbis vorbis-encoder)
@ -135,6 +139,7 @@ src_configure() {
$(use_enable oss) \
$(use_enable pipe pipe-output) \
$(use_enable pulseaudio pulse) \
$(use_enable recorder recorder-output) \
$(use_enable sid sidplay) \
$(use_enable sndfile sndfile) \
$(use_enable soundcloud) \

@ -1,3 +1,4 @@
DIST mkvtoolnix-4.9.1.tar.bz2 2093128 RMD160 69203457701e36c7606d1ef3b9fbcd7d41ffa73f SHA1 d457e6ba682816e974da4e13e2dee42d81e1adbd SHA256 bb24dd7b2f2fc3b343abcfeb098ddf42659b6d867e5d75eb81524121fef88b88
DIST mkvtoolnix-5.0.1.tar.bz2 2155095 RMD160 3c6220a1ff304a18e4d7125d6981966c3e9d368e SHA1 900211d47ba6cbeb4188bb45a492a2b9edf08ed2 SHA256 eecc48d17c0583b6b071e710bfe88ae09439bd99bb90c694a2fed0651bb08f19
DIST mkvtoolnix-5.6.0.tar.bz2 3767416 RMD160 6880fca76b162e7a83d6d6dac0617a6dae7be62f SHA1 a114ea0cee7e5a023dc17f54b533743b9b00c5ee SHA256 09c502de690af0ad405cf66fe9863e86260f89871e9a563f1ede56a53e71fcc3
DIST mkvtoolnix-4.9.1.tar.bz2 2093128 SHA256 bb24dd7b2f2fc3b343abcfeb098ddf42659b6d867e5d75eb81524121fef88b88
DIST mkvtoolnix-5.0.1.tar.bz2 2155095 SHA256 eecc48d17c0583b6b071e710bfe88ae09439bd99bb90c694a2fed0651bb08f19 SHA512 5ac0077bdef7426fc4f978bae5965f868dcc5b5a78982580a441b55390f900babd8863a215e5bfddbf0c93087c36d93e5a6cb473e1d9b156622b85f8baec8e91 WHIRLPOOL dc8e98d823f56e75f93a3603aab2b4374a91d273ffd7d4acad0ec248da99885802cb876b10707799a09a5be14acf5651d66a9190d78db9f241067cad20cf1434
DIST mkvtoolnix-5.6.0.tar.bz2 3767416 SHA256 09c502de690af0ad405cf66fe9863e86260f89871e9a563f1ede56a53e71fcc3 SHA512 510a9abe34aec75f3ac42835f92d69b8fd41a20b3052c339c600248f5b983a47d3483cf343adb5572258d00ea3197031de9b1bae840d83bfd3493f278e05fcce WHIRLPOOL 0860782473ea32a94a8f32d7bec04b5a452a6765f5bfa7581d750b405a451242833d23000f282b25b594805a6c90e6cdfeff71f0bbc1e54bbd363cc463a59627
DIST mkvtoolnix-5.7.0.tar.bz2 3930983 SHA256 bfc947722c71130cb1896fa1d4ec39199dcb87fcf7e8e00ab36ae6c81d471f80 SHA512 0d2a219c1ad70319dd1305b4a35072420e750ad6ee998317445ad19a803c7f7d1f278afe837d93564f0952b98a65b494ab9702406fdc44ae58f8f25f12e93bb1 WHIRLPOOL 9979806e4af9867c933ea9754eff24c86e22f6ad512ebe5f42f73ab1c7dd8af1b9eca395225afd563a5037ee235c682f932f297cd23e0859d61e143349ded19d

@ -0,0 +1,92 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-5.7.0.ebuild,v 1.1 2012/07/11 07:41:41 radhermit Exp $
EAPI=4
inherit eutils toolchain-funcs versionator wxwidgets
DESCRIPTION="Tools to create, alter, and inspect Matroska files"
HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix"
SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bzip2 debug lzo pch qt4 wxwidgets"
RDEPEND="
>=dev-libs/libebml-1.2.2
>=media-libs/libmatroska-1.3.0
>=dev-libs/boost-1.46.0
dev-libs/pugixml
media-libs/flac
media-libs/libogg
media-libs/libvorbis
sys-apps/file
>=sys-devel/gcc-4.6
sys-libs/zlib
bzip2? ( app-arch/bzip2 )
lzo? ( dev-libs/lzo )
qt4? (
x11-libs/qt-core:4
x11-libs/qt-gui:4
)
wxwidgets? ( x11-libs/wxGTK:2.8[X] )
"
DEPEND="${RDEPEND}
dev-ruby/rake
virtual/pkgconfig
"
pkg_setup() {
# http://bugs.gentoo.org/419257
local ver=4.6
local msg="You need at least GCC ${ver}.x for C++11 range-based 'for' and nullptr support."
if ! version_is_at_least ${ver} $(gcc-version); then
eerror ${msg}
die ${msg}
fi
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-5.6.0-system-pugixml.patch
}
src_configure() {
local myconf
use pch || myconf+=" --disable-precompiled-headers"
if use wxwidgets ; then
WX_GTK_VER="2.8"
need-wxwidgets unicode
myconf+=" --with-wx-config=${WX_CONFIG}"
fi
econf \
$(use_enable bzip2 bz2) \
$(use_enable debug) \
$(use_enable lzo) \
$(use_enable qt4 qt) \
$(use_enable wxwidgets) \
${myconf} \
--docdir=/usr/share/doc/${PF} \
--with-boost-regex=boost_regex \
--with-boost-filesystem=boost_filesystem \
--with-boost-system=boost_system \
--without-curl
}
src_compile() {
rake || die "rake failed"
}
src_install() {
# Don't run strip while installing stuff, leave to portage the job.
DESTDIR="${D}" rake install || die
dodoc AUTHORS ChangeLog README TODO
doman doc/man/*.1
use wxwidgets && docompress -x /usr/share/doc/${PF}/guide
}

@ -1,7 +1,7 @@
DIST vlc-1.1.13.tar.bz2 26226587 RMD160 c5aa438a9085ddbf28e849df442b75475693290d SHA1 05bbc7ff427f3b919b29a45ce014caff9ba92648 SHA256 03edec44d463b9f5e7db56fd844c6d4ac79966638e1ac32dedcfb5847a9323c1
DIST vlc-2.0.1.tar.xz 17210552 RMD160 9d932e1be72b65cf47057191d9e84deeedea282c SHA1 40d0ed360dd3fa7dc3ff4fbc9c319553ebb22538 SHA256 7f485725c17487a77d70844cbd9acf528360d65cd6ff79d206657920f4fcbf4b
DIST vlc-2.0.2.tar.xz 18023928 RMD160 a8fbc91dfc01c8b90c7d693b6cbe4fa16207e822 SHA1 da597e781f855dff4cd278c137c0faf43b504c26 SHA256 111a83b19d09989c1743ed708897586e20f6cd37f27cc2fcac09c75a7221c62f
DIST vlc-patches-101.tar.bz2 3011 RMD160 785ba728c04f025ca8377061e82c6c865d50a736 SHA1 e9be6b192bb3d69e4bd2387a9854543e0f8b3132 SHA256 abd3af99b9c2fa76b67a2e9c72e2d81982f1bca93cb5e3b2f33d29de9e395dae
DIST vlc-patches-105.tar.bz2 4325 RMD160 1fc8f5edc1f136c7074a5a00aabec583aec1cc58 SHA1 9f70e4a7ac7749da58b0134f4de79227a6b66c69 SHA256 e28047c097de2b1daa26b32227f11bb06d09a060b93c6ae2fe564094373f0778
DIST vlc-patches-108.tar.bz2 3189 RMD160 1788635a15e229fca1e40b6e8c7425915c963cf7 SHA1 0e1d6129add81b84fb3212c1c636dd4744e65d4f SHA256 18de61bb0e0d7b4d79b516096c44db4b083510c338b19802422c69f1431b9598
DIST vlc-patches-109.tar.bz2 5292 RMD160 a94be4d080d135a29358e250c327d2c3281bbb62 SHA1 261db75fa8c0e5fe4d234887a2365ccaf0fafc0f SHA256 264423f9ec76004d1bbe9549e5c7f935e951ad22ca8377b77271981c92403b6e
DIST vlc-1.1.13.tar.bz2 26226587 SHA256 03edec44d463b9f5e7db56fd844c6d4ac79966638e1ac32dedcfb5847a9323c1
DIST vlc-2.0.1.tar.xz 17210552 SHA256 7f485725c17487a77d70844cbd9acf528360d65cd6ff79d206657920f4fcbf4b SHA512 12d583daa1062ce78a3d842b978b78ae9c8805dedfcf0e8ae4ad1272984c1170e8a4f3ac0e6c8511cf016626a450cf9d763998d156e70460abba781d6599a6cd WHIRLPOOL 82aa1b036df008b25e36474e68daebfd2011d92add2eae42a105c24a1b4f8456d71d184cdd8f6939387c9f7c4b069f34d54c2ebea0ffdb08342051a880b49eae
DIST vlc-2.0.2.tar.xz 18023928 SHA256 111a83b19d09989c1743ed708897586e20f6cd37f27cc2fcac09c75a7221c62f SHA512 a680632f669fd85edf8a4bd6ae57951c8bcc4fe1c5cac039b839b7409b2e432722057c588cae1a23eec41b1cce17edff97375da584bfcb3514da3ed528b72c3d WHIRLPOOL 410782ee9996ff1f0566d1b248649211a273dc1debe7cb071bdff966fcb62644b215039f2ab70137a34a326dfabfca88c46986e9d45d5a05b5f5b158a813c4f7
DIST vlc-patches-101.tar.bz2 3011 SHA256 abd3af99b9c2fa76b67a2e9c72e2d81982f1bca93cb5e3b2f33d29de9e395dae SHA512 f059f3c47b571dd5a28d979abdcb3a8c2ebef13845cd4102d877b1786ef4b3ba15cc22873de0fd84fcc7a4413f582064f12edf40627e9f030fd8e6fa03d67c66 WHIRLPOOL eb2f184c99db6d174d22e4231003d93171f5081f917f10ecf6bc927ff96983aa21756d15063909cb6f8ad77f0db0b978fdf2eb2fba3320f19c6bc26e17b04ba7
DIST vlc-patches-105.tar.bz2 4325 SHA256 e28047c097de2b1daa26b32227f11bb06d09a060b93c6ae2fe564094373f0778
DIST vlc-patches-108.tar.bz2 3189 SHA256 18de61bb0e0d7b4d79b516096c44db4b083510c338b19802422c69f1431b9598 SHA512 b641967a4dfd89987c25adbf81636826dfa04dbaa963abcfa88537febb6b43794d6eefa805c5bfb04a8c9bd58c03149b1879c07b38dd661122830941cd4dbda1 WHIRLPOOL 59f4e0ff48ec567bfc62b4abd7604c004203d9d0826352cf729e68940faf0f2c2c8f2025b64b893c84beedddaa8453b86f7030c37bdbd619be3b2152c63d7e7b
DIST vlc-patches-109.tar.bz2 5292 SHA256 264423f9ec76004d1bbe9549e5c7f935e951ad22ca8377b77271981c92403b6e SHA512 9b48d7290bf284fe27e802e7e720fb68bb4b4b38b1aa3dcd0e58bfc4096454b3caf79322ae33865d1c99ac050d14207052ed0748436540f4847cbc68babd5f82 WHIRLPOOL c493948158818779ced60d11f0a9d559c98f937f1137d78b99ca825fec1c94e80c455e2bb29e52d2dbe7eace8fe47bac3bcb373142eab3c1cadd190073e82f37

@ -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-video/vlc/vlc-9999.ebuild,v 1.177 2012/06/30 20:12:06 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-9999.ebuild,v 1.178 2012/07/11 12:20:58 aballier Exp $
EAPI="4"
@ -278,7 +278,7 @@ src_configure() {
$(use_enable projectm) \
$(use_enable pulseaudio pulse) \
$(use_enable pvr) \
$(use_enable qt4) \
$(use_enable qt4 qt) \
$(use_enable rtsp realrtsp) \
$(use_enable run-as-root) \
$(use_enable samba smb) \

@ -0,0 +1,22 @@
>=dev-python/pygtk-1.99.12 >=app-emulation/libvirt-0.7.0[python,sasl?] >=dev-libs/libxml2-2.6.23[python] >=app-emulation/virtinst-0.600.2 >=gnome-base/librsvg-2 >=x11-libs/vte-0.12.2:0[python] >=net-libs/gtk-vnc-0.3.8[python,sasl?] >=dev-python/dbus-python-0.61 >=dev-python/gconf-python-1.99.11 dev-python/urlgrabber gnome-keyring? ( dev-python/gnome-keyring-python ) policykit? ( sys-auth/polkit ) spice? ( >=net-misc/spice-gtk-0.6[python,sasl?,-gtk3] ) app-text/rarian dev-util/intltool app-arch/xz-utils >=sys-apps/sed-4 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
>=dev-python/pygtk-1.99.12 >=app-emulation/libvirt-0.7.0[python,sasl?] >=dev-libs/libxml2-2.6.23[python] >=app-emulation/virtinst-0.600.2 >=gnome-base/librsvg-2 >=x11-libs/vte-0.12.2:0[python] >=net-libs/gtk-vnc-0.3.8[python,sasl?] >=dev-python/dbus-python-0.61 >=dev-python/gconf-python-1.99.11 dev-python/urlgrabber gnome-keyring? ( dev-python/gnome-keyring-python ) policykit? ( sys-auth/polkit ) spice? ( >=net-misc/spice-gtk-0.6[python,sasl?,-gtk3] ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
0
http://virt-manager.org/download/sources/virt-manager/virt-manager-0.9.3.tar.gz
http://virt-manager.org/
GPL-2
A graphical tool for administering virtual machines (KVM/Xen)
~amd64 ~x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib python toolchain-funcs user versionator
gnome-keyring policykit sasl spice
4
compile configure install postinst postrm preinst prepare setup unpack

@ -0,0 +1,22 @@
>=app-emulation/libvirt-0.7.0[python] dev-python/urlgrabber dev-libs/libxml2[python] =dev-lang/python-2*
>=app-emulation/libvirt-0.7.0[python] dev-python/urlgrabber dev-libs/libxml2[python] =dev-lang/python-2*
0
http://virt-manager.et.redhat.com/download/sources/virtinst/virtinst-0.600.2.tar.gz
http://virt-manager.et.redhat.com/
GPL-2
Python modules for starting virtualized guest installations
~amd64 ~x86
distutils eutils multilib python toolchain-funcs user
3
compile install postinst postrm prepare

@ -6,7 +6,7 @@ mirror://gentoo/gentoolkit-0.3.0.6.tar.gz
http://www.gentoo.org/proj/en/portage/tools/index.xml
GPL-2
Collection of administration scripts for Gentoo
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
distutils eutils multilib python toolchain-funcs user

@ -1,22 +0,0 @@
>=dev-libs/girara-0.1.2:2 sqlite? ( dev-db/sqlite:3 ) dev-python/docutils virtual/pkgconfig sys-devel/gettext
>=dev-libs/girara-0.1.2:2 sqlite? ( dev-db/sqlite:3 )
0
http://pwmt.org/projects/zathura/download/zathura-0.1.2.tar.gz
http://pwmt.org/projects/zathura/
ZLIB
A highly customizable and functional document viewer
amd64 x86
eutils multilib toolchain-funcs user
sqlite
4
compile install postinst setup

@ -6,7 +6,7 @@ http://pwmt.org/projects/zathura/download/zathura-0.2.0.tar.gz
http://pwmt.org/projects/zathura/
ZLIB
A highly customizable and functional document viewer
amd64 ~x86
amd64 x86
eutils multilib toolchain-funcs user
doc sqlite

@ -6,7 +6,7 @@ http://pwmt.org/projects/zathura/plugins/download/zathura-cb-0.1.0.tar.gz
http://pwmt.org/projects/zathura/
ZLIB
Comic book plug-in for zathura with 7zip, rar, tar and zip support
amd64 ~x86
amd64 x86
multilib toolchain-funcs

@ -1,22 +0,0 @@
>=app-text/djvu-3.5.24-r1 >=app-text/zathura-0.1.1 dev-libs/girara:2 >=dev-libs/glib-2 x11-libs/cairo virtual/pkgconfig
>=app-text/djvu-3.5.24-r1 >=app-text/zathura-0.1.1 dev-libs/girara:2 >=dev-libs/glib-2 x11-libs/cairo
0
http://pwmt.org/projects/zathura/plugins/download/zathura-djvu-0.1.1.tar.gz
http://pwmt.org/projects/zathura/
ZLIB
DjVu plug-in for zathura
amd64 x86
multilib toolchain-funcs
4
compile install setup

@ -6,7 +6,7 @@ http://pwmt.org/projects/zathura/plugins/download/zathura-djvu-0.2.0.tar.gz
http://pwmt.org/projects/zathura/
ZLIB
DjVu plug-in for zathura
amd64 ~x86
amd64 x86
multilib toolchain-funcs

@ -6,7 +6,7 @@ app-text/zathura cb? ( app-text/zathura-cb ) djvu? ( app-text/zathura-djvu ) pdf
http://pwmt.org/projects/zathura/
as-is
Meta package for app-text/zathura plugins
amd64 ~x86
amd64 x86
cb djvu +pdf postscript

@ -1,22 +0,0 @@
app-text/poppler[cairo] >=app-text/zathura-0.1.1 dev-libs/girara:2 virtual/pkgconfig
app-text/poppler[cairo] >=app-text/zathura-0.1.1 dev-libs/girara:2
0
http://pwmt.org/projects/zathura/plugins/download/zathura-pdf-poppler-0.1.1.tar.gz
http://pwmt.org/projects/zathura/
ZLIB
PDF plug-in for zathura
amd64 x86
multilib toolchain-funcs
4
compile install setup

@ -6,7 +6,7 @@ http://pwmt.org/projects/zathura/plugins/download/zathura-pdf-poppler-0.2.0.tar.
http://pwmt.org/projects/zathura/
ZLIB
PDF plug-in for zathura
amd64 ~x86
amd64 x86
multilib toolchain-funcs

@ -1,22 +0,0 @@
>=app-text/libspectre-0.2.6 >=app-text/zathura-0.1.1 dev-libs/girara:2 >=dev-libs/glib-2 x11-libs/cairo virtual/pkgconfig
>=app-text/libspectre-0.2.6 >=app-text/zathura-0.1.1 dev-libs/girara:2 >=dev-libs/glib-2 x11-libs/cairo
0
http://pwmt.org/projects/zathura/plugins/download/zathura-ps-0.1.0.tar.gz
http://pwmt.org/projects/zathura/
ZLIB
PostScript plug-in for zathura
amd64 x86
multilib toolchain-funcs
4
compile install setup

@ -6,7 +6,7 @@ http://pwmt.org/projects/zathura/plugins/download/zathura-ps-0.2.0.tar.gz
http://pwmt.org/projects/zathura/
ZLIB
PostScript plug-in for zathura
amd64 ~x86
amd64 x86
multilib toolchain-funcs

@ -1,22 +0,0 @@
>=x11-libs/gtk+-2.18.6:2 virtual/pkgconfig sys-devel/gettext
>=x11-libs/gtk+-2.18.6:2
2
http://pwmt.org/projects/girara/download/girara-0.1.2.tar.gz
http://pwmt.org/projects/girara/
ZLIB
A library that implements a user interface that focuses on simplicity and minimalism
amd64 x86
multilib toolchain-funcs
4
compile install setup

@ -6,7 +6,7 @@ http://pwmt.org/projects/girara/download/girara-0.1.3.tar.gz
http://pwmt.org/projects/girara/
ZLIB
A library that implements a user interface that focuses on simplicity and minimalism
amd64 ~x86
amd64 x86
multilib toolchain-funcs
static-libs

@ -0,0 +1,22 @@
>=net-libs/miniupnpc-1.7 !<sys-apps/portage-2.1.10.58 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 )
>=net-libs/miniupnpc-1.7 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 )
0
http://miniupnp.free.fr/files/miniupnpc-1.7.tar.gz
http://miniupnp.free.fr/
BSD
Python bindings for UPnP client library
~amd64 ~ppc ~ppc64 ~x86
eutils multilib python-distutils-ng toolchain-funcs user
python_targets_python2_6 python_targets_python2_7
|| ( python_targets_python2_6 python_targets_python2_7 )
4
compile configure install prepare test

@ -6,7 +6,7 @@ http://alastairs-place.net/projects/netifaces/netifaces-0.8.tar.gz
http://alastairs-place.net/netifaces/
MIT
Portable network interface information
amd64 x86
amd64 arm x86
distutils multilib python toolchain-funcs

@ -14,7 +14,7 @@ distutils multilib python toolchain-funcs
4
compile install postinst postrm prepare setup test
compile install postinst postrm prepare setup

@ -1,4 +1,4 @@
ruby_targets_ruby18? ( test? ( dev-ruby/test-spec[ruby_targets_ruby18] dev-ruby/mocha[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/test-spec[ruby_targets_ruby19] dev-ruby/mocha[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/test-spec[ruby_targets_ree18] dev-ruby/mocha[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/test-spec[ruby_targets_jruby] dev-ruby/mocha[ruby_targets_jruby] ) ) test? ( ruby_targets_ruby18? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ruby18] ) ruby_targets_ruby19? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ruby19] ) ruby_targets_ree18? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ree18] ) ruby_targets_jruby? ( =dev-ruby/prawn-core-0.8*[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/test-unit:0[ruby_targets_ruby19] ) ) 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_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) 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_jruby? ( virtual/rubygems[ruby_targets_jruby] ) 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_jruby? ( virtual/rubygems[ruby_targets_jruby] ) )
ruby_targets_ruby18? ( test? ( dev-ruby/test-spec[ruby_targets_ruby18] dev-ruby/mocha[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/test-spec[ruby_targets_ruby19] dev-ruby/mocha[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/test-spec[ruby_targets_ree18] dev-ruby/mocha[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/test-spec[ruby_targets_jruby] dev-ruby/mocha[ruby_targets_jruby] ) ) test? ( ruby_targets_ruby18? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ruby18] ) ruby_targets_ruby19? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ruby19] ) ruby_targets_ree18? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ree18] ) ruby_targets_jruby? ( =dev-ruby/prawn-core-0.8*[ruby_targets_jruby] ) ) 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_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) 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_jruby? ( virtual/rubygems[ruby_targets_jruby] ) 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_jruby? ( virtual/rubygems[ruby_targets_jruby] ) )
ruby_targets_ruby18? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ruby18] ) ruby_targets_ruby19? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ruby19] ) ruby_targets_ree18? ( =dev-ruby/prawn-core-0.8*[ruby_targets_ree18] ) ruby_targets_jruby? ( =dev-ruby/prawn-core-0.8*[ruby_targets_jruby] ) 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_jruby? ( dev-java/jruby ) 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_jruby? ( virtual/rubygems[ruby_targets_jruby] )
0
mirror://rubygems/prawn-layout-0.8.4.gem

@ -6,7 +6,7 @@ http://www.red-bean.com/cvsutils/releases/cvsutils-0.2.5.tar.gz
http://www.red-bean.com/cvsutils/
GPL-3
A small bundle of utilities to work with CVS repositories
~amd64 ~ppc ~x86 ~amd64-linux
~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux

@ -0,0 +1,22 @@
>=net-libs/liblockfile-1.03 virtual/mta mail-client/mailx-support
>=net-libs/liblockfile-1.03 virtual/mta mail-client/mailx-support !mail-client/nail !net-mail/mailutils
0
mirror://gentoo/mailx_8.1.2-0.20050715cvs.orig.tar.gz mirror://gentoo/mailx_8.1.2-0.20050715cvs-1.diff.gz
http://www.debian.org/
BSD
The /bin/mail program, which is used to send mail via shell scripts
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
eutils flag-o-matic multilib toolchain-funcs user
compile install postinst unpack

@ -6,7 +6,7 @@ http://dev.gentoo.org/~jlec/distfiles/gimp-2.6.11-underlinking.patch.xz mirror:/
http://www.gimp.org/
GPL-2
GNU Image Manipulation Program
~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86
~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib python toolchain-funcs user versionator
alsa aalib altivec curl dbus debug doc exif gnome jpeg lcms mmx mng pdf png python smp sse svg tiff webkit wmf linguas_am linguas_ar linguas_ast linguas_az linguas_be linguas_bg linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_dz linguas_el linguas_en_CA linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_ga linguas_gl linguas_gu linguas_he linguas_hi linguas_hr linguas_hu linguas_id linguas_is linguas_it linguas_ja linguas_ka linguas_kk linguas_km linguas_kn linguas_ko linguas_lt linguas_lv linguas_mk linguas_ml linguas_mr linguas_ms linguas_my linguas_nb linguas_nds linguas_ne linguas_nl linguas_nn linguas_oc linguas_or linguas_pa linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_rw linguas_si linguas_sk linguas_sl linguas_sr linguas_sr@latin linguas_sv linguas_ta linguas_th linguas_tr linguas_tt linguas_uk linguas_vi linguas_xh linguas_yi linguas_zh_CN linguas_zh_HK linguas_zh_TW debug

@ -0,0 +1,22 @@
media-libs/ladspa-sdk
media-libs/ladspa-sdk
0
mirror://sourceforge/tap-plugins/tap-plugins-0.7.2.tar.gz
http://tap-plugins.sourceforge.net
GPL-2
TAP LADSPA plugins package. Contains DeEsser, Dynamics, Equalizer, Reverb, Stereo Echo, Tremolo
~amd64 ~ppc ~sparc ~x86
eutils multilib toolchain-funcs user
compile install unpack

@ -8,8 +8,8 @@ GPL-2
The Music Player Daemon (mpd)
~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos
eutils flag-o-matic linux-info multilib systemd toolchain-funcs user versionator
aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac fluidsynth +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio sid sndfile soundcloud soup sqlite tcpd twolame unicode vorbis wavpack wildmidi zeroconf zip
|| ( alsa ao fifo jack network openal oss pipe pulseaudio ) || ( aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi ) network? ( || ( audiofile flac lame twolame vorbis ) ) lastfmradio? ( curl )
aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac fluidsynth +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio recorder sid sndfile soundcloud soup sqlite tcpd twolame unicode vorbis wavpack wildmidi zeroconf zip
|| ( alsa ao fifo jack network openal oss pipe pulseaudio recorder ) || ( aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi ) network? ( || ( audiofile flac lame twolame vorbis ) ) recorder? ( || ( audiofile flac lame twolame vorbis ) ) lastfmradio? ( curl )
4

@ -0,0 +1,22 @@
>=dev-libs/libebml-1.2.2 >=media-libs/libmatroska-1.3.0 >=dev-libs/boost-1.46.0 dev-libs/pugixml media-libs/flac media-libs/libogg media-libs/libvorbis sys-apps/file >=sys-devel/gcc-4.6 sys-libs/zlib bzip2? ( app-arch/bzip2 ) lzo? ( dev-libs/lzo ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4 ) wxwidgets? ( x11-libs/wxGTK:2.8[X] ) dev-ruby/rake virtual/pkgconfig
>=dev-libs/libebml-1.2.2 >=media-libs/libmatroska-1.3.0 >=dev-libs/boost-1.46.0 dev-libs/pugixml media-libs/flac media-libs/libogg media-libs/libvorbis sys-apps/file >=sys-devel/gcc-4.6 sys-libs/zlib bzip2? ( app-arch/bzip2 ) lzo? ( dev-libs/lzo ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4 ) wxwidgets? ( x11-libs/wxGTK:2.8[X] )
0
http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-5.7.0.tar.bz2
http://www.bunkus.org/videotools/mkvtoolnix
GPL-2
Tools to create, alter, and inspect Matroska files
~amd64 ~x86
eutils multilib toolchain-funcs user versionator wxwidgets
bzip2 debug lzo pch qt4 wxwidgets
4
compile configure install prepare setup

@ -14,7 +14,7 @@ authonly ipv6
4
compile configure install postinst prepare
configure install postinst prepare

@ -1,22 +0,0 @@
app-crypt/qca:2 dev-libs/gmp dev-libs/boost sys-devel/gettext >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=]
app-crypt/qca:2 dev-libs/gmp >=kde-base/oxygen-icons-4.4:4[aqua=] linguas_ar? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ar(+)] ) linguas_ast? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ast(+)] ) linguas_be? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_be(+)] ) linguas_bg? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bg(+)] ) linguas_ca? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) linguas_ca@valencia? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca@valencia(+)] ) linguas_cs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) linguas_el? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) linguas_en_GB? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) linguas_eo? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eo(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) linguas_eu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eu(+)] ) linguas_fi? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) linguas_ga? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) linguas_gl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) linguas_hi? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hi(+)] ) linguas_hne? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hne(+)] ) linguas_hr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hr(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) linguas_is? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_is(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) linguas_ja? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) linguas_km? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) linguas_ku? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ku(+)] ) linguas_lt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) linguas_lv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lv(+)] ) linguas_ms? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ms(+)] ) linguas_nb? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) linguas_nds? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) linguas_nn? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nn(+)] ) linguas_oc? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_oc(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) linguas_ro? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) linguas_ru? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) linguas_se? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_se(+)] ) linguas_si? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_si(+)] ) linguas_sk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) linguas_sl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sl(+)] ) linguas_sr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr(+)] ) linguas_sr@ijekavian? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavian(+)] ) linguas_sr@ijekavianlatin? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavianlatin(+)] ) linguas_sr@latin? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@latin(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) linguas_tr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) linguas_zh_CN? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) linguas_zh_TW? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=]
4
http://ktorrent.org/downloads/4.1.2/libktorrent-1.1.2.tar.bz2
http://ktorrent.org/
GPL-2
A BitTorrent library based on KDE Platform
amd64 ppc ~ppc64 x86
base cmake-utils eutils fdo-mime flag-o-matic gnome2-utils kde4-base kde4-functions multilib toolchain-funcs user versionator virtualx
debug linguas_ar linguas_ast linguas_be linguas_bg linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fi linguas_fr linguas_ga linguas_gl linguas_hi linguas_hne linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_ku linguas_lt linguas_lv linguas_ms linguas_nb linguas_nds linguas_nl linguas_nn linguas_oc linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_se linguas_si linguas_sk linguas_sl linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW test +handbook aqua
4
compile configure install postinst postrm preinst prepare setup test unpack

@ -1,22 +0,0 @@
app-crypt/qca:2 dev-libs/gmp >=kde-base/solid-4.4:4[aqua=] dev-libs/boost sys-devel/gettext >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=]
app-crypt/qca:2 dev-libs/gmp >=kde-base/solid-4.4:4[aqua=] >=kde-base/oxygen-icons-4.4:4[aqua=] linguas_ar? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ar(+)] ) linguas_ast? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ast(+)] ) linguas_be? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_be(+)] ) linguas_bg? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bg(+)] ) linguas_ca? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) linguas_ca@valencia? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca@valencia(+)] ) linguas_cs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) linguas_el? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) linguas_en_GB? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) linguas_eo? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eo(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) linguas_eu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eu(+)] ) linguas_fi? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) linguas_ga? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) linguas_gl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) linguas_hi? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hi(+)] ) linguas_hne? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hne(+)] ) linguas_hr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hr(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) linguas_is? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_is(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) linguas_ja? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) linguas_km? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) linguas_ku? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ku(+)] ) linguas_lt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) linguas_lv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lv(+)] ) linguas_ms? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ms(+)] ) linguas_nb? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) linguas_nds? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) linguas_nn? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nn(+)] ) linguas_oc? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_oc(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) linguas_ro? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) linguas_ru? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) linguas_se? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_se(+)] ) linguas_si? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_si(+)] ) linguas_sk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) linguas_sl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sl(+)] ) linguas_sr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr(+)] ) linguas_sr@ijekavian? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavian(+)] ) linguas_sr@ijekavianlatin? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavianlatin(+)] ) linguas_sr@latin? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@latin(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) linguas_tr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) linguas_zh_CN? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) linguas_zh_TW? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=]
4
http://ktorrent.org/downloads/4.1.3/libktorrent-1.1.3.tar.bz2
http://ktorrent.org/
GPL-2
A BitTorrent library based on KDE Platform
~amd64 ~ppc ~ppc64 ~x86
base cmake-utils eutils fdo-mime flag-o-matic gnome2-utils kde4-base kde4-functions multilib toolchain-funcs user versionator virtualx
debug linguas_ar linguas_ast linguas_be linguas_bg linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fi linguas_fr linguas_ga linguas_gl linguas_hi linguas_hne linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_ku linguas_lt linguas_lv linguas_ms linguas_nb linguas_nds linguas_nl linguas_nn linguas_oc linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_se linguas_si linguas_sk linguas_sl linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW test +handbook aqua
4
compile configure install postinst postrm preinst prepare setup test unpack

@ -7,7 +7,7 @@ http://miniupnp.free.fr/
BSD
UPnP client library and a simple UPnP client
~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd
multilib toolchain-funcs
eutils multilib toolchain-funcs user
kernel_linux static-libs

@ -1,7 +1,7 @@
dev-libs/popt dev-libs/libxml2 dev-libs/openssl sys-libs/ncurses sys-libs/zlib ais? ( sys-cluster/openais ) alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) calendar? ( net-libs/neon dev-libs/libical dev-libs/iksemel ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) dahdi? ( >=net-libs/libpri-1.4.12_beta2 net-misc/dahdi-tools ) freetds? ( dev-db/freetds ) gtalk? ( dev-libs/iksemel ) http? ( dev-libs/gmime:2.4 ) iconv? ( virtual/libiconv ) jabber? ( dev-libs/iksemel ) jingle? ( dev-libs/iksemel ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua ) mysql? ( virtual/mysql ) newt? ( dev-libs/newt ) odbc? ( dev-db/unixODBC ) osplookup? ( net-libs/osptoolkit ) portaudio? ( media-libs/portaudio ) postgres? ( dev-db/postgresql-base ) radius? ( net-dialup/radiusclient-ng ) snmp? ( net-analyzer/net-snmp ) span? ( media-libs/spandsp ) speex? ( media-libs/speex ) sqlite? ( dev-db/sqlite:0 ) sqlite3? ( dev-db/sqlite:3 ) srtp? ( net-libs/libsrtp ) usb? ( virtual/libusb:0 media-libs/alsa-lib ) vorbis? ( media-libs/libvorbis ) voicemail_storage_imap? ( virtual/imap-c-client ) !net-libs/openh323 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/popt dev-libs/libxml2 dev-libs/openssl sys-libs/ncurses sys-libs/zlib ais? ( sys-cluster/openais ) alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) calendar? ( net-libs/neon dev-libs/libical dev-libs/iksemel ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) dahdi? ( >=net-libs/libpri-1.4.12_beta2 net-misc/dahdi-tools ) freetds? ( dev-db/freetds ) gtalk? ( dev-libs/iksemel ) http? ( dev-libs/gmime:2.4 ) iconv? ( virtual/libiconv ) jabber? ( dev-libs/iksemel ) jingle? ( dev-libs/iksemel ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua ) mysql? ( virtual/mysql ) newt? ( dev-libs/newt ) odbc? ( dev-db/unixODBC ) osplookup? ( net-libs/osptoolkit ) portaudio? ( media-libs/portaudio ) postgres? ( dev-db/postgresql-base ) radius? ( net-dialup/radiusclient-ng ) snmp? ( net-analyzer/net-snmp ) span? ( media-libs/spandsp ) speex? ( media-libs/speex ) sqlite? ( dev-db/sqlite:0 ) sqlite3? ( dev-db/sqlite:3 ) srtp? ( net-libs/libsrtp ) usb? ( virtual/libusb:0 media-libs/alsa-lib ) vorbis? ( media-libs/libvorbis ) syslog? ( virtual/logger )
0
http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-1.8.13.1.tar.gz mirror://gentoo/gentoo-asterisk-patchset-1.13.tar.bz2
http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-1.8.13.1.tar.gz mirror://gentoo/gentoo-asterisk-patchset-1.13.tar.bz2
http://www.asterisk.org/
GPL-2

@ -0,0 +1,22 @@
dev-libs/popt dev-libs/libxml2 dev-libs/openssl sys-libs/ncurses sys-libs/zlib ais? ( sys-cluster/openais ) alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) calendar? ( net-libs/neon dev-libs/libical dev-libs/iksemel ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) dahdi? ( >=net-libs/libpri-1.4.12_beta2 net-misc/dahdi-tools ) freetds? ( dev-db/freetds ) gtalk? ( dev-libs/iksemel ) http? ( dev-libs/gmime:2.4 ) iconv? ( virtual/libiconv ) jabber? ( dev-libs/iksemel ) jingle? ( dev-libs/iksemel ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua ) mysql? ( virtual/mysql ) newt? ( dev-libs/newt ) odbc? ( dev-db/unixODBC ) osplookup? ( net-libs/osptoolkit ) portaudio? ( media-libs/portaudio ) postgres? ( dev-db/postgresql-base ) radius? ( net-dialup/radiusclient-ng ) snmp? ( net-analyzer/net-snmp ) span? ( media-libs/spandsp ) speex? ( media-libs/speex ) sqlite? ( dev-db/sqlite:0 ) sqlite3? ( dev-db/sqlite:3 ) srtp? ( net-libs/libsrtp ) vorbis? ( media-libs/libvorbis ) voicemail_storage_imap? ( virtual/imap-c-client ) !net-libs/openh323 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/popt dev-libs/libxml2 dev-libs/openssl sys-libs/ncurses sys-libs/zlib ais? ( sys-cluster/openais ) alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) calendar? ( net-libs/neon dev-libs/libical dev-libs/iksemel ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) dahdi? ( >=net-libs/libpri-1.4.12_beta2 net-misc/dahdi-tools ) freetds? ( dev-db/freetds ) gtalk? ( dev-libs/iksemel ) http? ( dev-libs/gmime:2.4 ) iconv? ( virtual/libiconv ) jabber? ( dev-libs/iksemel ) jingle? ( dev-libs/iksemel ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua ) mysql? ( virtual/mysql ) newt? ( dev-libs/newt ) odbc? ( dev-db/unixODBC ) osplookup? ( net-libs/osptoolkit ) portaudio? ( media-libs/portaudio ) postgres? ( dev-db/postgresql-base ) radius? ( net-dialup/radiusclient-ng ) snmp? ( net-analyzer/net-snmp ) span? ( media-libs/spandsp ) speex? ( media-libs/speex ) sqlite? ( dev-db/sqlite:0 ) sqlite3? ( dev-db/sqlite:3 ) srtp? ( net-libs/libsrtp ) vorbis? ( media-libs/libvorbis ) syslog? ( virtual/logger )
0
http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-1.8.14.0.tar.gz mirror://gentoo/gentoo-asterisk-patchset-1.13.tar.bz2
http://www.asterisk.org/
GPL-2
Asterisk: A Modular Open Source PBX System
~amd64 ~x86
autotools base eutils libtool linux-info multilib multiprocessing toolchain-funcs user versionator
+voicemail_storage_file voicemail_storage_odbc voicemail_storage_imap ais alsa bluetooth calendar +caps curl dahdi debug doc freetds gtalk http iconv jabber jingle ldap lua mysql newt +samples odbc osplookup oss portaudio postgres radius snmp span speex sqlite sqlite3 srtp static syslog vorbis
gtalk? ( jabber ) ^^ ( voicemail_storage_file voicemail_storage_odbc voicemail_storage_imap ) voicemail_storage_odbc? ( odbc )
net-misc/asterisk-core-sounds net-misc/asterisk-extra-sounds net-misc/asterisk-moh-opsound
4
compile config configure install postinst prepare setup unpack

@ -0,0 +1,22 @@
dev-db/sqlite:3 dev-libs/popt dev-libs/libxml2 dev-libs/openssl sys-libs/ncurses sys-libs/zlib ais? ( sys-cluster/openais ) alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) calendar? ( net-libs/neon dev-libs/libical dev-libs/iksemel ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) dahdi? ( >=net-libs/libpri-1.4.12_beta2 net-misc/dahdi-tools ) freetds? ( dev-db/freetds ) gtalk? ( dev-libs/iksemel ) http? ( dev-libs/gmime:2.4 ) iconv? ( virtual/libiconv ) jabber? ( dev-libs/iksemel ) jingle? ( dev-libs/iksemel ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua ) mysql? ( virtual/mysql ) newt? ( dev-libs/newt ) odbc? ( dev-db/unixODBC ) osplookup? ( net-libs/osptoolkit ) portaudio? ( media-libs/portaudio ) postgres? ( dev-db/postgresql-base ) radius? ( net-dialup/radiusclient-ng ) snmp? ( net-analyzer/net-snmp ) span? ( media-libs/spandsp ) speex? ( media-libs/speex ) srtp? ( net-libs/libsrtp ) vorbis? ( media-libs/libvorbis ) !net-libs/openh323 voicemail_storage_imap? ( virtual/imap-c-client ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-db/sqlite:3 dev-libs/popt dev-libs/libxml2 dev-libs/openssl sys-libs/ncurses sys-libs/zlib ais? ( sys-cluster/openais ) alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) calendar? ( net-libs/neon dev-libs/libical dev-libs/iksemel ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) dahdi? ( >=net-libs/libpri-1.4.12_beta2 net-misc/dahdi-tools ) freetds? ( dev-db/freetds ) gtalk? ( dev-libs/iksemel ) http? ( dev-libs/gmime:2.4 ) iconv? ( virtual/libiconv ) jabber? ( dev-libs/iksemel ) jingle? ( dev-libs/iksemel ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua ) mysql? ( virtual/mysql ) newt? ( dev-libs/newt ) odbc? ( dev-db/unixODBC ) osplookup? ( net-libs/osptoolkit ) portaudio? ( media-libs/portaudio ) postgres? ( dev-db/postgresql-base ) radius? ( net-dialup/radiusclient-ng ) snmp? ( net-analyzer/net-snmp ) span? ( media-libs/spandsp ) speex? ( media-libs/speex ) srtp? ( net-libs/libsrtp ) vorbis? ( media-libs/libvorbis ) syslog? ( virtual/logger )
0
http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-10.6.0.tar.gz mirror://gentoo/gentoo-asterisk-patchset-2.5.tar.bz2
http://www.asterisk.org/
GPL-2
Asterisk: A Modular Open Source PBX System
~amd64 ~x86
autotools base eutils libtool linux-info multilib multiprocessing toolchain-funcs user versionator
+voicemail_storage_file voicemail_storage_odbc voicemail_storage_imap ais alsa bluetooth calendar +caps curl dahdi debug doc freetds gtalk http iconv jabber jingle ldap lua mysql newt +samples odbc osplookup oss portaudio postgres radius snmp span speex srtp static syslog vorbis
gtalk? ( jabber ) ^^ ( voicemail_storage_file voicemail_storage_odbc voicemail_storage_imap ) voicemail_storage_odbc? ( odbc )
net-misc/asterisk-core-sounds net-misc/asterisk-extra-sounds net-misc/asterisk-moh-opsound
4
compile config configure install postinst prepare setup unpack

@ -1,9 +1,9 @@
elibc_glibc? ( || ( net-libs/libtirpc <sys-libs/glibc-2.14 ) ) x11-libs/libXau x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXdmcp x11-libs/libXpm x11-libs/libXrandr x11-libs/libXtst >=media-libs/libpng-1.2.8 >=sys-libs/zlib-1.2.3 virtual/jpeg x11-misc/gccmakedep x11-misc/imake x11-proto/inputproto || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
elibc_glibc? ( || ( net-libs/libtirpc <sys-libs/glibc-2.14 ) ) x11-libs/libXau x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXdmcp x11-libs/libXpm x11-libs/libXrandr x11-libs/libXtst >=media-libs/libpng-1.2.8 >=sys-libs/zlib-1.2.3 virtual/jpeg
0
http://web04.nomachine.com/download/3.5.0/sources/nx-X11-3.5.0-2.tar.gz http://web04.nomachine.com/download/3.5.0/sources/nxagent-3.5.0-7.tar.gz http://web04.nomachine.com/download/3.5.0/sources/nxproxy-3.5.0-1.tar.gz http://web04.nomachine.com/download/3.5.0/sources/nxauth-3.5.0-1.tar.gz http://web04.nomachine.com/download/3.5.0/sources/nxcompext-3.5.0-1.tar.gz http://web04.nomachine.com/download/3.5.0/sources/nxcompshad-3.5.0-2.tar.gz http://web04.nomachine.com/download/3.5.0/sources/nxcomp-3.5.0-2.tar.gz
http://code.x2go.org/releases/source/nx-libs/nx-libs-3.5.0.14-full.tar.gz
http://www.nomachine.com/developers.php
http://www.nomachine.com/developers.php http://www.x2go.org/doku.php/wiki:libs:nx-libs
GPL-2
NX compression technology core libraries
~amd64 ~ppc ~x86

@ -1,5 +1,5 @@
ssl? ( dev-libs/openssl ) monitor? ( dev-python/twisted dev-python/twisted-conch pyside? ( dev-python/pyside ) !pyside? ( dev-python/PyQt4 ) net-zope/zope-interface ) debug? ( dev-lang/perl ) virtual/pkgconfig monitor? ( =dev-lang/python-2* )
ssl? ( dev-libs/openssl ) monitor? ( dev-python/twisted dev-python/twisted-conch pyside? ( dev-python/pyside ) !pyside? ( dev-python/PyQt4 ) net-zope/zope-interface ) debug? ( dev-lang/perl ) monitor? ( =dev-lang/python-2* )
ssl? ( dev-libs/openssl ) monitor? ( dev-python/twisted dev-python/twisted-conch dev-python/twisted-web pyside? ( dev-python/pyside ) !pyside? ( dev-python/PyQt4 ) net-zope/zope-interface ) debug? ( dev-lang/perl ) virtual/pkgconfig monitor? ( =dev-lang/python-2* )
ssl? ( dev-libs/openssl ) monitor? ( dev-python/twisted dev-python/twisted-conch dev-python/twisted-web pyside? ( dev-python/pyside ) !pyside? ( dev-python/PyQt4 ) net-zope/zope-interface ) debug? ( dev-lang/perl ) monitor? ( =dev-lang/python-2* )
0
http://openvswitch.org/releases/openvswitch-1.6.1.tar.gz

@ -1,22 +0,0 @@
<net-libs/libktorrent-1.2 >=net-libs/libktorrent-1.1.2 infowidget? ( dev-libs/geoip ) mediaplayer? ( >=media-libs/taglib-1.5 ) plasma? ( >=kde-base/libtaskmanager-4.5:4[aqua=] ) rss? ( >=kde-base/kdepimlibs-4.5:4[aqua=] ) shutdown? ( >=kde-base/libkworkspace-4.5:4[aqua=] >=kde-base/solid-4.5:4[aqua=] ) dev-libs/boost sys-devel/gettext >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.5:4[aqua=]
<net-libs/libktorrent-1.2 >=net-libs/libktorrent-1.1.2 infowidget? ( dev-libs/geoip ) mediaplayer? ( >=media-libs/taglib-1.5 ) plasma? ( >=kde-base/libtaskmanager-4.5:4[aqua=] ) rss? ( >=kde-base/kdepimlibs-4.5:4[aqua=] ) shutdown? ( >=kde-base/libkworkspace-4.5:4[aqua=] >=kde-base/solid-4.5:4[aqua=] ) ipfilter? ( app-arch/bzip2 app-arch/unzip >=kde-base/kdebase-kioslaves-4.5:4[aqua=] ) kross? ( >=kde-base/krosspython-4.5:4[aqua=] ) >=kde-base/oxygen-icons-4.5:4[aqua=] linguas_ar? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ar(+)] ) linguas_ast? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ast(+)] ) linguas_be? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_be(+)] ) linguas_bg? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_bg(+)] ) linguas_ca? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ca(+)] ) linguas_ca@valencia? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ca@valencia(+)] ) linguas_cs? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_de(+)] ) linguas_el? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_el(+)] ) linguas_en_GB? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_en_GB(+)] ) linguas_eo? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_eo(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_es(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_et(+)] ) linguas_eu? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_eu(+)] ) linguas_fi? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_fi(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_fr(+)] ) linguas_ga? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ga(+)] ) linguas_gl? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_gl(+)] ) linguas_hi? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_hi(+)] ) linguas_hne? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_hne(+)] ) linguas_hr? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_hr(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_hu(+)] ) linguas_is? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_is(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_it(+)] ) linguas_ja? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ja(+)] ) linguas_km? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_km(+)] ) linguas_lt? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_lt(+)] ) linguas_lv? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_lv(+)] ) linguas_mai? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_mai(+)] ) linguas_ms? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ms(+)] ) linguas_nb? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_nb(+)] ) linguas_nds? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_nds(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_nl(+)] ) linguas_nn? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_nn(+)] ) linguas_oc? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_oc(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_pt_BR(+)] ) linguas_ro? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ro(+)] ) linguas_ru? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ru(+)] ) linguas_se? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_se(+)] ) linguas_si? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_si(+)] ) linguas_sk? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sk(+)] ) linguas_sl? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sl(+)] ) linguas_sr? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sr(+)] ) linguas_sr@ijekavian? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sr@ijekavian(+)] ) linguas_sr@ijekavianlatin? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sr@ijekavianlatin(+)] ) linguas_sr@latin? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sr@latin(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sv(+)] ) linguas_tr? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_tr(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_uk(+)] ) linguas_zh_CN? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_zh_CN(+)] ) linguas_zh_TW? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_zh_TW(+)] ) handbook? ( >=kde-base/kdelibs-4.5:4[aqua=,handbook] ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.5:4[aqua=]
4
http://ktorrent.org/downloads/4.1.2/ktorrent-4.1.2.tar.bz2
http://ktorrent.org/
GPL-2
A BitTorrent program for KDE.
amd64 ppc ~ppc64 x86
base cmake-utils eutils fdo-mime flag-o-matic gnome2-utils kde4-base kde4-functions multilib toolchain-funcs user versionator virtualx
+bwscheduler debug +downloadorder +infowidget +ipfilter +kross +logviewer +magnetgenerator +mediaplayer plasma rss +scanfolder +search +shutdown +stats +upnp webinterface +zeroconf linguas_ar linguas_ast linguas_be linguas_bg linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fi linguas_fr linguas_ga linguas_gl linguas_hi linguas_hne linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_lt linguas_lv linguas_mai linguas_ms linguas_nb linguas_nds linguas_nl linguas_nn linguas_oc linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_se linguas_si linguas_sk linguas_sl linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW +handbook aqua
4
compile configure install postinst postrm preinst prepare setup test unpack

@ -1,22 +0,0 @@
<net-libs/libktorrent-1.2 >=net-libs/libktorrent-1.1.3 infowidget? ( dev-libs/geoip ) mediaplayer? ( >=media-libs/taglib-1.5 ) plasma? ( >=kde-base/libtaskmanager-4.5:4[aqua=] ) rss? ( >=kde-base/kdepimlibs-4.5:4[aqua=] ) shutdown? ( >=kde-base/libkworkspace-4.5:4[aqua=] >=kde-base/solid-4.5:4[aqua=] ) dev-libs/boost sys-devel/gettext >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.5:4[aqua=]
<net-libs/libktorrent-1.2 >=net-libs/libktorrent-1.1.3 infowidget? ( dev-libs/geoip ) mediaplayer? ( >=media-libs/taglib-1.5 ) plasma? ( >=kde-base/libtaskmanager-4.5:4[aqua=] ) rss? ( >=kde-base/kdepimlibs-4.5:4[aqua=] ) shutdown? ( >=kde-base/libkworkspace-4.5:4[aqua=] >=kde-base/solid-4.5:4[aqua=] ) ipfilter? ( app-arch/bzip2 app-arch/unzip >=kde-base/kdebase-kioslaves-4.5:4[aqua=] ) kross? ( >=kde-base/krosspython-4.5:4[aqua=] ) >=kde-base/oxygen-icons-4.5:4[aqua=] linguas_ar? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ar(+)] ) linguas_ast? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ast(+)] ) linguas_be? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_be(+)] ) linguas_bg? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_bg(+)] ) linguas_ca? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ca(+)] ) linguas_ca@valencia? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ca@valencia(+)] ) linguas_cs? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_de(+)] ) linguas_el? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_el(+)] ) linguas_en_GB? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_en_GB(+)] ) linguas_eo? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_eo(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_es(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_et(+)] ) linguas_eu? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_eu(+)] ) linguas_fi? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_fi(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_fr(+)] ) linguas_ga? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ga(+)] ) linguas_gl? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_gl(+)] ) linguas_hi? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_hi(+)] ) linguas_hne? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_hne(+)] ) linguas_hr? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_hr(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_hu(+)] ) linguas_is? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_is(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_it(+)] ) linguas_ja? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ja(+)] ) linguas_km? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_km(+)] ) linguas_lt? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_lt(+)] ) linguas_lv? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_lv(+)] ) linguas_mai? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_mai(+)] ) linguas_ms? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ms(+)] ) linguas_nb? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_nb(+)] ) linguas_nds? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_nds(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_nl(+)] ) linguas_nn? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_nn(+)] ) linguas_oc? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_oc(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_pt_BR(+)] ) linguas_ro? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ro(+)] ) linguas_ru? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_ru(+)] ) linguas_se? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_se(+)] ) linguas_si? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_si(+)] ) linguas_sk? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sk(+)] ) linguas_sl? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sl(+)] ) linguas_sr? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sr(+)] ) linguas_sr@ijekavian? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sr@ijekavian(+)] ) linguas_sr@ijekavianlatin? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sr@ijekavianlatin(+)] ) linguas_sr@latin? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sr@latin(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_sv(+)] ) linguas_tr? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_tr(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_uk(+)] ) linguas_zh_CN? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_zh_CN(+)] ) linguas_zh_TW? ( >=kde-base/kde-l10n-4.5:4[aqua=,linguas_zh_TW(+)] ) handbook? ( >=kde-base/kdelibs-4.5:4[aqua=,handbook] ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.5:4[aqua=]
4
http://ktorrent.org/downloads/4.1.3/ktorrent-4.1.3.tar.bz2
http://ktorrent.org/
GPL-2
A BitTorrent program for KDE.
~amd64 ~ppc ~ppc64 ~x86
base cmake-utils eutils fdo-mime flag-o-matic gnome2-utils kde4-base kde4-functions multilib toolchain-funcs user versionator virtualx
+bwscheduler debug +downloadorder +infowidget +ipfilter +kross +logviewer +magnetgenerator +mediaplayer plasma rss +scanfolder +search +shutdown +stats +upnp webinterface +zeroconf linguas_ar linguas_ast linguas_be linguas_bg linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fi linguas_fr linguas_ga linguas_gl linguas_hi linguas_hne linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_lt linguas_lv linguas_mai linguas_ms linguas_nb linguas_nds linguas_nl linguas_nn linguas_oc linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_se linguas_si linguas_sk linguas_sl linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW +handbook aqua
4
compile configure install postinst postrm preinst prepare setup test unpack

@ -1,7 +1,7 @@
sci-biology/ncbi-tools sci-biology/ncbi-tools++
0
http://bioinf.cs.ucl.ac.uk/downloads/psipred/psipred321.tar.gz test? ( http://bioinfadmin.cs.ucl.ac.uk/downloads/psipred/old/data/tdbdata.tar.gz )
http://bioinf.cs.ucl.ac.uk/downloads/psipred/psipred321.tar.gz
http://bioinf.cs.ucl.ac.uk/psipred/
psipred

@ -12,9 +12,9 @@ multilib toolchain-funcs
2
4
compile install prepare
install prepare

@ -0,0 +1,22 @@
0
http://www.catb.org/~esr/hexdump/hexdump-1.7.tar.gz
http://www.catb.org/~esr/hexdump/
GPL-2
Eric Raymond's hex dumper
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos
multilib toolchain-funcs
4
install prepare

@ -0,0 +1,22 @@
!<sys-apps/pciutils-3.1.9-r2 !<sys-apps/usbutils-005-r1
0
https://github.com/gentoo/hwids/tarball/hwids-20120711 -> hwids-20120711.tar.gz
https://github.com/gentoo/hwids
|| ( GPL-2 BSD )
Hardware (PCI, USB) IDs databases
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux
4
compile install

@ -0,0 +1,22 @@
dev-libs/popt sys-apps/iproute2 dev-libs/libnl:1.1 dev-libs/openssl >=sys-kernel/linux-headers-2.6.30 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/popt sys-apps/iproute2 dev-libs/libnl:1.1 dev-libs/openssl
0
http://www.keepalived.org/software/keepalived-1.2.2.tar.gz mirror://debian/pool/main/k/keepalived/keepalived_1.2.2-3.diff.gz
http://www.keepalived.org/
GPL-2
A strong & robust keepalive facility to the Linux Virtual Server project
~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86
autotools base eutils libtool multilib multiprocessing toolchain-funcs user
debug ipv6
4
compile configure install prepare unpack

@ -0,0 +1,22 @@
app-text/docbook-xsl-stylesheets dev-libs/libxslt sys-cluster/cluster-glue sys-cluster/resource-agents heartbeat? ( >=sys-cluster/heartbeat-3.0.0 ) !heartbeat? ( sys-cluster/corosync ) smtp? ( net-libs/libesmtp ) snmp? ( net-analyzer/net-snmp ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool =dev-lang/python-2*
app-text/docbook-xsl-stylesheets dev-libs/libxslt sys-cluster/cluster-glue sys-cluster/resource-agents heartbeat? ( >=sys-cluster/heartbeat-3.0.0 ) !heartbeat? ( sys-cluster/corosync ) smtp? ( net-libs/libesmtp ) snmp? ( net-analyzer/net-snmp ) =dev-lang/python-2*
0
https://github.com/ClusterLabs/pacemaker-1.0/tarball/Pacemaker-1.0.12 -> pacemaker-1.0.12.tar.gz
http://www.linux-ha.org/wiki/Pacemaker
GPL-2
Pacemaker CRM
~amd64 ~hppa ~x86
autotools base eutils libtool multilib multiprocessing python toolchain-funcs user
+ais heartbeat smtp snmp static-libs
2
compile configure install prepare setup unpack

@ -6,7 +6,7 @@ mirror://gentoo/genkernel-3.4.24_p2.tar.bz2 http://wolf31o2.org/sources/genkerne
http://www.gentoo.org
GPL-2
Gentoo automatic kernel building scripts
~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86
~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86
bash-completion-r1 eutils multilib toolchain-funcs user
ibm selinux

@ -1,22 +0,0 @@
dev-libs/libxml2 apache2? ( =www-servers/apache-2.2* )
dev-libs/libxml2 apache2? ( =www-servers/apache-2.2* )
0
http://projects.unbit.it/downloads/uwsgi-0.9.7.2.tar.gz
http://projects.unbit.it/uwsgi/
GPL-2
uWSGI server for Python web applications
~amd64 ~x86
apache-module depend.apache eutils multilib python toolchain-funcs user
apache2
3
compile install postinst prepare setup

@ -1,22 +0,0 @@
dev-libs/libxml2 apache2? ( =www-servers/apache-2.2* )
dev-libs/libxml2 apache2? ( =www-servers/apache-2.2* )
0
http://projects.unbit.it/downloads/uwsgi-0.9.8.tar.gz
http://projects.unbit.it/uwsgi/
GPL-2
uWSGI server for Python web applications
~amd64 ~x86
apache-module depend.apache eutils multilib python toolchain-funcs user
apache2
3
compile install postinst prepare setup

@ -8,7 +8,7 @@ GPL-2
uWSGI server for Python web applications
~amd64 ~x86
apache-module autotools depend.apache eutils flag-o-matic java-utils-2 libtool multilib multiprocessing pax-utils php-ext-source-r2 python ruby-ng toolchain-funcs user versionator
apache2 +caps +carbon cgi debug erlang gevent graylog2 json ldap lua +nagios perl +pcre php python rrdtool rsyslog ruby spooler sqlite syslog +xml yaml zeromq apache2 php_targets_php5-3 php_targets_php5-4 elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19
apache2 +caps +carbon cgi debug erlang gevent graylog2 json ldap lua +nagios perl +pcre php +python rrdtool rsyslog ruby spooler sqlite syslog +xml yaml zeromq apache2 php_targets_php5-3 php_targets_php5-4 elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19
|| ( cgi erlang lua perl php python ruby )

@ -8,7 +8,7 @@ GPL-2
uWSGI server for Python web applications
~amd64 ~x86
apache-module autotools depend.apache eutils flag-o-matic java-utils-2 libtool multilib multiprocessing pax-utils php-ext-source-r2 python ruby-ng toolchain-funcs user versionator
apache2 +caps +carbon cgi debug erlang gevent graylog2 json ldap lua +nagios perl +pcre php python rrdtool rsyslog ruby spooler sqlite syslog +xml yaml zeromq apache2 php_targets_php5-3 php_targets_php5-4 elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19
apache2 +caps +carbon cgi debug erlang gevent graylog2 json ldap lua +nagios perl +pcre php +python rrdtool rsyslog ruby spooler sqlite syslog +xml yaml zeromq apache2 php_targets_php5-3 php_targets_php5-4 elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19
|| ( cgi erlang lua perl php python ruby )

@ -8,7 +8,7 @@ GPL-2
uWSGI server for Python web applications
~amd64 ~x86
apache-module autotools depend.apache eutils flag-o-matic java-utils-2 libtool multilib multiprocessing pax-utils php-ext-source-r2 python ruby-ng toolchain-funcs user versionator
apache2 +caps +carbon cgi debug erlang gevent graylog2 json ldap lua +nagios perl +pcre php python rrdtool rsyslog ruby spooler sqlite syslog +xml yaml zeromq apache2 php_targets_php5-3 php_targets_php5-4 elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19
apache2 +caps +carbon cgi debug erlang gevent graylog2 json ldap lua +nagios perl +pcre php +python rrdtool rsyslog ruby spooler sqlite syslog +xml yaml zeromq apache2 php_targets_php5-3 php_targets_php5-4 elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19
|| ( cgi erlang lua perl php python ruby )

@ -1,4 +1,4 @@
|| ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool x86-interix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig dri? ( x11-proto/xf86driproto x11-proto/glproto x11-proto/dri2proto ) x11-proto/fontsproto x11-proto/randrproto x11-proto/renderproto x11-proto/videoproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto dri? ( x11-base/xorg-server[-minimal] x11-libs/libdrm ) x11-base/xorg-server[xorg] x11-libs/libpciaccess
>=x11-proto/xf86dgaproto-2.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool x86-interix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig dri? ( x11-proto/xf86driproto x11-proto/glproto x11-proto/dri2proto ) x11-proto/fontsproto x11-proto/randrproto x11-proto/renderproto x11-proto/videoproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto dri? ( x11-base/xorg-server[-minimal] x11-libs/libdrm ) x11-base/xorg-server[xorg] x11-libs/libpciaccess
dri? ( x11-base/xorg-server[-minimal] x11-libs/libdrm ) x11-base/xorg-server[xorg] x11-libs/libpciaccess
0
http://xorg.freedesktop.org/releases/individual/driver/xf86-video-sis-0.10.4.tar.bz2

@ -1,4 +1,4 @@
|| ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool x86-interix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig dri? ( x11-proto/xf86driproto x11-proto/glproto x11-proto/dri2proto ) x11-proto/fontsproto x11-proto/randrproto x11-proto/renderproto x11-proto/videoproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto dri? ( x11-base/xorg-server[-minimal] x11-libs/libdrm ) x11-base/xorg-server[xorg] x11-libs/libpciaccess
>=x11-proto/xf86dgaproto-2.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool x86-interix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig dri? ( x11-proto/xf86driproto x11-proto/glproto x11-proto/dri2proto ) x11-proto/fontsproto x11-proto/randrproto x11-proto/renderproto x11-proto/videoproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto dri? ( x11-base/xorg-server[-minimal] x11-libs/libdrm ) x11-base/xorg-server[xorg] x11-libs/libpciaccess
dri? ( x11-base/xorg-server[-minimal] x11-libs/libdrm ) x11-base/xorg-server[xorg] x11-libs/libpciaccess
0
http://xorg.freedesktop.org/releases/individual/driver/xf86-video-sis-0.10.6.tar.bz2

@ -1 +1 @@
Wed, 11 Jul 2012 05:07:44 +0000
Wed, 11 Jul 2012 13:07:42 +0000

@ -1 +1 @@
Wed, 11 Jul 2012 05:07:44 +0000
Wed, 11 Jul 2012 13:07:42 +0000

@ -10,4 +10,4 @@ RDEPEND=gnutls? ( net-libs/gnutls ) idn? ( net-dns/libidn ) dev-libs/libtasn1 de
SLOT=0
SRC_URI=mirror://gnu/shishi/shishi-1.0.1.tar.gz
_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba eutils 327b713e2d6949c42cd96bc4898fd280 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ea2ca3b78f0701ec1e5c24fce690265f
_md5_=5bad0e1e1d50827028a733bcadd16ede

@ -3,10 +3,10 @@ DEPEND=sys-apps/portage dev-lang/python[xml] dev-lang/python
DESCRIPTION=Collection of administration scripts for Gentoo
EAPI=3
HOMEPAGE=http://www.gentoo.org/proj/en/portage/tools/index.xml
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=sys-apps/portage >=dev-lang/python-2.6[xml] !>=dev-lang/python-2.6[-xml] !<=app-portage/gentoolkit-dev-0.2.7 dev-python/argparse || ( >=sys-apps/coreutils-8.15 app-misc/realpath sys-freebsd/freebsd-bin ) sys-apps/gawk sys-apps/grep dev-lang/python[xml] dev-lang/python
SLOT=0
SRC_URI=mirror://gentoo/gentoolkit-0.3.0.6.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4b0c424048de2ac51007bdb2584f56b3
_md5_=e7ee021a32a948a7b9bc1c470822e7bb

@ -1,13 +0,0 @@
DEFINED_PHASES=compile install postinst setup
DEPEND=>=dev-libs/girara-0.1.2:2 sqlite? ( dev-db/sqlite:3 ) dev-python/docutils virtual/pkgconfig sys-devel/gettext
DESCRIPTION=A highly customizable and functional document viewer
EAPI=4
HOMEPAGE=http://pwmt.org/projects/zathura/
IUSE=sqlite
KEYWORDS=amd64 x86
LICENSE=ZLIB
RDEPEND=>=dev-libs/girara-0.1.2:2 sqlite? ( dev-db/sqlite:3 )
SLOT=0
SRC_URI=http://pwmt.org/projects/zathura/download/zathura-0.1.2.tar.gz
_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ff167fe47f519e59bddbc968b426e8ee

@ -4,10 +4,10 @@ DESCRIPTION=A highly customizable and functional document viewer
EAPI=4
HOMEPAGE=http://pwmt.org/projects/zathura/
IUSE=doc sqlite
KEYWORDS=amd64 ~x86
KEYWORDS=amd64 x86
LICENSE=ZLIB
RDEPEND=>=dev-libs/girara-0.1.3:2 >=dev-libs/glib-2 x11-libs/cairo sqlite? ( dev-db/sqlite:3 )
SLOT=0
SRC_URI=http://pwmt.org/projects/zathura/download/zathura-0.2.0.tar.gz
_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=19c812ff838def94c9fdd976e6473985
_md5_=b7461c6ea6c07fbd0b095f33517f9e5b

@ -3,10 +3,10 @@ DEPEND=>=app-text/zathura-0.2.0 >=dev-libs/girara-0.1.3:2 >=dev-libs/glib-2 x11-
DESCRIPTION=Comic book plug-in for zathura with 7zip, rar, tar and zip support
EAPI=4
HOMEPAGE=http://pwmt.org/projects/zathura/
KEYWORDS=amd64 ~x86
KEYWORDS=amd64 x86
LICENSE=ZLIB
RDEPEND=>=app-text/zathura-0.2.0 >=dev-libs/girara-0.1.3:2 >=dev-libs/glib-2 x11-libs/cairo app-arch/p7zip app-arch/tar app-arch/unrar app-arch/unzip
SLOT=0
SRC_URI=http://pwmt.org/projects/zathura/plugins/download/zathura-cb-0.1.0.tar.gz
_eclasses_=multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856
_md5_=a0429d8cf6b55c6b2c9978b809c6f2fc
_md5_=8daf57dfea5f696bd9943c5baa5e3a4e

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

Loading…
Cancel
Save