Sync with portage [Wed Dec 7 16:10:56 MSK 2011].

mhiretskiy
root 13 years ago
parent 4a9a3694c2
commit f719c52aea

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.8 2011/12/04 12:44:48 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.9 2011/12/07 07:45:48 phajdan.jr Exp $
EAPI="2"
@ -13,7 +13,7 @@ SRC_URI="http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="amd64 arm ~ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="static-libs"
src_prepare() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/k9copy/k9copy-2.3.7.ebuild,v 1.4 2011/11/29 22:00:51 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-cdr/k9copy/k9copy-2.3.7.ebuild,v 1.5 2011/12/07 07:43:26 phajdan.jr Exp $
EAPI=3
@ -26,7 +26,7 @@ HOMEPAGE="http://k9copy.sourceforge.net/"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="debug"
DEPEND="

@ -0,0 +1,40 @@
diff --git a/src/kdc/Makefile.in b/src/kdc/Makefile.in
index f46cad3..102fbaa 100644
--- a/src/kdc/Makefile.in
+++ b/src/kdc/Makefile.in
@@ -67,6 +67,7 @@ check-unix:: rtest
check-pytests::
$(RUNPYTEST) $(srcdir)/t_workers.py $(PYTESTFLAGS)
+ $(RUNPYTEST) $(srcdir)/t_emptytgt.py $(PYTESTFLAGS)
install::
$(INSTALL_PROGRAM) krb5kdc ${DESTDIR}$(SERVER_BINDIR)/krb5kdc
diff --git a/src/kdc/do_tgs_req.c b/src/kdc/do_tgs_req.c
index c169c54..840a2ef 100644
--- a/src/kdc/do_tgs_req.c
+++ b/src/kdc/do_tgs_req.c
@@ -243,7 +243,8 @@ tgt_again:
if (!tgs_1 || !data_eq(*server_1, *tgs_1)) {
errcode = find_alternate_tgs(request, &server);
firstpass = 0;
- goto tgt_again;
+ if (errcode == 0)
+ goto tgt_again;
}
}
status = "UNKNOWN_SERVER";
diff --git a/src/kdc/t_emptytgt.py b/src/kdc/t_emptytgt.py
new file mode 100644
index 0000000..1760bcd
--- /dev/null
+++ b/src/kdc/t_emptytgt.py
@@ -0,0 +1,8 @@
+#!/usr/bin/python
+from k5test import *
+
+realm = K5Realm(start_kadmind=False, create_host=False)
+output = realm.run_as_client([kvno, 'krbtgt/'], expected_code=1)
+if 'not found in Kerberos database' not in output:
+ fail('TGT lookup for empty realm failed in unexpected way')
+success('Empty tgt lookup.')

@ -0,0 +1,122 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/mit-krb5/mit-krb5-1.9.2-r1.ebuild,v 1.1 2011/12/07 08:05:41 eras Exp $
EAPI=3
inherit eutils flag-o-matic versionator
MY_P="${P/mit-}"
P_DIR=$(get_version_component_range 1-2)
DESCRIPTION="MIT Kerberos V"
HOMEPAGE="http://web.mit.edu/kerberos/www/"
SRC_URI="http://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}-signed.tar"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc +keyutils openldap +pkinit +threads test xinetd"
RDEPEND="!!app-crypt/heimdal
>=sys-libs/e2fsprogs-libs-1.41.0
keyutils? ( sys-apps/keyutils )
openldap? ( net-nds/openldap )
xinetd? ( sys-apps/xinetd )"
DEPEND="${RDEPEND}
virtual/yacc
doc? ( virtual/latex-base )
test? ( dev-lang/tcl
dev-lang/python
dev-util/dejagnu )"
S=${WORKDIR}/${MY_P}/src
src_unpack() {
unpack ${A}
unpack ./"${MY_P}".tar.gz
}
src_prepare() {
epatch "${FILESDIR}/${PN}-kprop_exit_on_error.patch"
epatch "${FILESDIR}/CVE-2011-1530.patch"
}
src_configure() {
append-flags "-I${EPREFIX}/usr/include/et"
# QA
append-flags -fno-strict-aliasing
append-flags -fno-strict-overflow
use keyutils || export ac_cv_header_keyutils_h=no
econf \
$(use_with openldap ldap) \
"$(use_with test tcl "${EPREFIX}/usr")" \
$(use_enable pkinit) \
$(use_enable threads thread-support) \
--without-hesiod \
--enable-shared \
--with-system-et \
--with-system-ss \
--enable-dns-for-realm \
--enable-kdc-lookaside-cache \
--disable-rpath
}
src_compile() {
emake -j1 || die "emake failed"
if use doc ; then
cd ../doc
for dir in api implement ; do
emake -C "${dir}" || die "doc emake failed"
done
fi
}
src_install() {
emake \
DESTDIR="${D}" \
EXAMPLEDIR="${EPREFIX}/usr/share/doc/${PF}/examples" \
install || die "install failed"
# default database dir
keepdir /var/lib/krb5kdc
cd ..
dodoc NOTICE README
dodoc doc/*.{ps,txt}
doinfo doc/*.info*
dohtml -r doc/*.html
# die if we cannot respect a USE flag
if use doc ; then
dodoc doc/{api,implement}/*.ps || die "dodoc failed"
fi
newinitd "${FILESDIR}"/mit-krb5kadmind.initd mit-krb5kadmind || die
newinitd "${FILESDIR}"/mit-krb5kdc.initd mit-krb5kdc || die
newinitd "${FILESDIR}"/mit-krb5kpropd.initd mit-krb5kpropd || die
insinto /etc
newins "${ED}/usr/share/doc/${PF}/examples/krb5.conf" krb5.conf.example
insinto /var/lib/krb5kdc
newins "${ED}/usr/share/doc/${PF}/examples/kdc.conf" kdc.conf.example
if use openldap ; then
insinto /etc/openldap/schema
doins "${S}/plugins/kdb/ldap/libkdb_ldap/kerberos.schema" || die
fi
if use xinetd ; then
insinto /etc/xinetd.d
newins "${FILESDIR}/kpropd.xinetd" kpropd || die
fi
}
pkg_preinst() {
if has_version "<${CATEGORY}/${PN}-1.8.0" ; then
elog "MIT split the Kerberos applications from the base Kerberos"
elog "distribution. Kerberized versions of telnet, rlogin, rsh, rcp,"
elog "ftp clients and telnet, ftp deamons now live in"
elog "\"app-crypt/mit-krb5-appl\" package."
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.28.ebuild,v 1.2 2011/12/03 11:12:22 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.28.ebuild,v 1.3 2011/12/07 07:29:48 phajdan.jr Exp $
EAPI="1"
@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz"
LICENSE="Scintilla"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
IUSE="lua"
RDEPEND="dev-libs/glib

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.4.2.ebuild,v 1.4 2011/11/29 12:04:19 naota Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.4.2.ebuild,v 1.5 2011/12/07 07:36:33 phajdan.jr Exp $
EAPI=4
@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/zile/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha amd64 ~ppc ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="acl test"
RDEPEND="dev-libs/boehm-gc

@ -1,6 +1,2 @@
DIST afflib-3.3.4.tar.gz 1894802 RMD160 ee64a8e312269348a90ece7edf517b0209a2d0c9 SHA1 e2dd28eb54ed325cead0e6f134f7b1811c87b5a0 SHA256 e87ff2b2dbcd74fa7d0bac370be8b18fab346f3b456d34be9baa325de646ea41
DIST afflib-3.5.2.tar.gz 10773038 RMD160 5b903ab74975bb0c2128cbd252a4bf0a46728c87 SHA1 c188af3d0b80c2810435127858e14724d8de588d SHA256 918c34493b63ca208b4855e883c0e0b2ae589cbd7ec6e29fb7d5d775b4b67c9c
DIST afflib-3.5.8.tar.gz 10789347 RMD160 7b5df1c1bfd9374299746345b18fb2d1982ad1e6 SHA1 18584d2360d47eb3d4a1e2ea54fab54362df67e9 SHA256 4337cbe567e6479dccb4e326006c72ac86027ae5c01829c26f79c7e11b858d88
DIST afflib-3.6.12.tar.gz 767740 RMD160 aebb740513992d6ef24cf6a54a965ff3c1a5d9cb SHA1 1bd156a7e970253c3e2df5b55046142073b311fe SHA256 07e89cb01116663a631dcd24fa07f1ab44f5f3f60b0f5244084d6d2a71b623d0
DIST afflib-3.6.15.tar.gz 779265 RMD160 4a9c3968e5f23b75e877c4057512caea1115bc52 SHA1 71bb9b28acd1f6f4668bb491cea410294b267b81 SHA256 cb1813fa6ff6d65f585ef1e3c71cbcd731461bf726e59fc4a12ba0f1040eafde
DIST afflib-3.6.8.tar.gz 778037 RMD160 e424f1f9cb781e7e0b7cb194c23b3c31652677c2 SHA1 320bc87bfcea95959fbfb049a8599ea58ce75f30 SHA256 719ed65cc5410916b3ca02dceb83d08fd0364ffdbd3e08a7e6118557ee36b246

@ -1,49 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.3.4.ebuild,v 1.7 2011/07/24 18:23:44 armin76 Exp $
inherit eutils
DESCRIPTION="Library that implements the AFF image standard"
HOMEPAGE="http://www.afflib.org/"
SRC_URI="http://www.afflib.org/downloads/${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
IUSE="ewf fuse ncurses python qemu readline s3 threads"
DEPEND="
ewf? ( app-forensics/libewf )
fuse? ( sys-fs/fuse )
ncurses? ( sys-libs/ncurses )
python? ( dev-lang/python )
readline? ( sys-libs/readline )
s3? ( net-misc/curl dev-libs/expat )
sys-libs/zlib
dev-libs/openssl"
RDEPEND=${DEPEND}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-glibc-2.10.patch
}
src_compile() {
econf \
$(use_enable fuse) \
$(use_enable ewf libewf) \
$(use_enable python) \
$(use_enable qemu) \
$(use_enable s3) \
$(use_enable threads threading)
emake || die "build failed"
}
src_install() {
emake install DESTDIR="${D}" || die "install failed"
use s3 || {
rm -f "${D}/usr/bin/s3"
}
}

@ -1,43 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.5.2.ebuild,v 1.2 2011/07/24 18:23:44 armin76 Exp $
inherit eutils
DESCRIPTION="Library that implements the AFF image standard"
HOMEPAGE="http://www.afflib.org/"
SRC_URI="http://www.afflib.org/downloads/${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
IUSE="ewf fuse ncurses python qemu readline s3 threads"
DEPEND="
ewf? ( app-forensics/libewf )
fuse? ( sys-fs/fuse )
ncurses? ( sys-libs/ncurses )
python? ( dev-lang/python )
readline? ( sys-libs/readline )
s3? ( net-misc/curl dev-libs/expat )
sys-libs/zlib
dev-libs/openssl"
RDEPEND=${DEPEND}
src_compile() {
econf \
$(use_enable fuse) \
$(use_enable ewf libewf) \
$(use_enable python) \
$(use_enable qemu) \
$(use_enable s3) \
$(use_enable threads threading)
emake || die "build failed"
}
src_install() {
emake install DESTDIR="${D}" || die "install failed"
use s3 || {
rm -f "${D}/usr/bin/s3"
}
}

@ -1,43 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.5.8.ebuild,v 1.2 2011/07/24 18:23:44 armin76 Exp $
inherit eutils
DESCRIPTION="Library that implements the AFF image standard"
HOMEPAGE="http://www.afflib.org/"
SRC_URI="http://www.afflib.org/downloads/${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
IUSE="ewf fuse ncurses python qemu readline s3 threads"
DEPEND="
ewf? ( app-forensics/libewf )
fuse? ( sys-fs/fuse )
ncurses? ( sys-libs/ncurses )
python? ( dev-lang/python )
readline? ( sys-libs/readline )
s3? ( net-misc/curl dev-libs/expat )
sys-libs/zlib
dev-libs/openssl"
RDEPEND=${DEPEND}
src_compile() {
econf \
$(use_enable fuse) \
$(use_enable ewf libewf) \
$(use_enable python) \
$(use_enable qemu) \
$(use_enable s3) \
$(use_enable threads threading)
emake || die "build failed"
}
src_install() {
emake install DESTDIR="${D}" || die "install failed"
use s3 || {
rm -f "${D}/usr/bin/s3"
}
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild,v 1.9 2011/11/30 03:38:11 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild,v 1.10 2011/12/07 07:35:27 phajdan.jr Exp $
EAPI="4"
PYTHON_DEPEND="python? 2"
@ -13,7 +13,7 @@ SRC_URI="http://www.afflib.org/downloads/${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc ~x86"
KEYWORDS="amd64 hppa ~ppc x86"
IUSE="fuse ncurses python qemu readline s3 static-libs threads"
RDEPEND="dev-libs/expat

@ -1,43 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.8.ebuild,v 1.5 2011/10/11 17:10:05 jer Exp $
inherit eutils
DESCRIPTION="Library that implements the AFF image standard"
HOMEPAGE="http://www.afflib.org/"
SRC_URI="http://www.afflib.org/downloads/${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc x86"
IUSE="ewf fuse ncurses python qemu readline s3 threads"
DEPEND="
ewf? ( app-forensics/libewf )
fuse? ( sys-fs/fuse )
ncurses? ( sys-libs/ncurses )
python? ( dev-lang/python )
readline? ( sys-libs/readline )
s3? ( net-misc/curl dev-libs/expat )
sys-libs/zlib
dev-libs/openssl"
RDEPEND=${DEPEND}
src_compile() {
econf \
$(use_enable fuse) \
$(use_enable ewf libewf) \
$(use_enable python) \
$(use_enable qemu) \
$(use_enable s3) \
$(use_enable threads threading)
emake || die "build failed"
}
src_install() {
emake install DESTDIR="${D}" || die "install failed"
use s3 || {
rm -f "${D}/usr/bin/s3"
}
}

@ -1,22 +0,0 @@
diff -up afflib-3.3.4/tools/afverify.cpp.gcc44 afflib-3.3.4/tools/afverify.cpp
--- afflib-3.3.4/tools/afverify.cpp.gcc44 2008-07-21 06:25:29.000000000 +0200
+++ afflib-3.3.4/tools/afverify.cpp 2009-03-02 12:48:59.000000000 +0100
@@ -240,12 +240,16 @@ string get_xml_field(const char *buf,con
int verify_bom_signature(AFFILE *af,const char *buf)
{
const char *cce = "</" AF_XML_AFFBOM ">\n";
- char *chain_end = strstr(buf,cce);
+ char *buf_tmp;
+ char *cce_tmp;
+ strcpy(buf_tmp, buf);
+ strcpy(cce_tmp, cce);
+ char *chain_end = strstr(buf_tmp,cce_tmp);
if(!chain_end){
warn("end of chain XML can't be found\n");
return -1; // can't find it
}
- char *sig_start = chain_end + strlen(cce);
+ char *sig_start = chain_end + strlen(cce_tmp);
BIO *seg = BIO_new_mem_buf((void *)buf,strlen(buf));
BIO_seek(seg,0);

@ -6,7 +6,6 @@
<email>forensics@gentoo.org</email>
</maintainer>
<use>
<flag name="ewf">Enable libewf extra formats</flag>
<flag name="fuse">Enable extra fuse thingies</flag>
<flag name="qemu">Enable qemu stuff</flag>
<flag name="s3">Enable support for Amazon S3</flag>

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/cmospwd/cmospwd-5.1.ebuild,v 1.4 2011/12/04 12:42:42 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-forensics/cmospwd/cmospwd-5.1.ebuild,v 1.5 2011/12/07 07:44:54 phajdan.jr Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://www.cgsecurity.org/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
src_compile() {

@ -1,3 +1 @@
DIST libewf-20100226.tar.gz 801413 RMD160 cbd1fe93e50dd9fa8c801ad3a1958cbb26435382 SHA1 b9b1012548a7ba445ce4702b08737ddb459c52ec SHA256 aedd2a6b3df6525ff535ab95cd569ebb361a4022eb4163390f26257913c2941a
DIST libewf-beta-20090209.tar.gz 692004 RMD160 df751085f5e91e1d7c221cf7705aa9e88f3bd60e SHA1 db3489068e79d0bef8bd09275a7d3e030de9c0fe SHA256 fe0b90a5312807eb92bc17a2234c4567d0800a5d2323e10c1d19803470e46e75
DIST libewf-beta-20091108.tar.gz 849094 RMD160 c1f612a9df1329385472865c25081fb35c6941b9 SHA1 d21fc7c2a86df33a75cc76cc8c8ddeaf91026b65 SHA256 378a173350d4a367844bbe082a0b7a8a1b137e32443d60d8f20b96498c8889ab

@ -1,45 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20090209.ebuild,v 1.6 2011/07/24 18:24:51 armin76 Exp $
inherit eutils autotools
MY_P=${P/libewf/libewf-beta}
DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
HOMEPAGE="http://libewf.sourceforge.net"
SRC_URI="mirror://sourceforge/libewf/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
# upstream bug #2597171, pyewf has implicit declarations
#IUSE="debug python rawio unicode"
IUSE="debug rawio unicode"
DEPEND="
sys-libs/e2fsprogs-libs
sys-libs/zlib
dev-libs/openssl"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
eautoreconf
}
src_compile() {
econf \
$(use_enable unicode wide-character-type) \
$(use_enable rawio raw-access) \
$(use_enable debug verbose-output) \
$(use_enable debug debug-output)
emake
}
src_install() {
emake install DESTDIR="${D}"
dodoc AUTHORS ChangeLog NEWS README documents/*.txt
doman manuals/*.1 manuals/*.3
}

@ -1,45 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20091108.ebuild,v 1.2 2011/07/24 18:24:51 armin76 Exp $
inherit eutils autotools
MY_P=${P/libewf/libewf-beta}
DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
HOMEPAGE="http://libewf.sourceforge.net"
SRC_URI="mirror://sourceforge/libewf/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
# upstream bug #2597171, pyewf has implicit declarations
#IUSE="debug python rawio unicode"
IUSE="debug rawio unicode"
DEPEND="
sys-libs/e2fsprogs-libs
sys-libs/zlib
dev-libs/openssl"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
eautoreconf
}
src_compile() {
econf \
$(use_enable unicode wide-character-type) \
$(use_enable rawio raw-access) \
$(use_enable debug verbose-output) \
$(use_enable debug debug-output)
emake
}
src_install() {
emake install DESTDIR="${D}"
dodoc AUTHORS ChangeLog NEWS README documents/*.txt
doman manuals/*.1 manuals/*.3
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226-r1.ebuild,v 1.7 2011/12/04 14:43:56 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226-r1.ebuild,v 1.8 2011/12/07 07:35:53 phajdan.jr Exp $
EAPI="4"
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/libewf/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc ~x86"
KEYWORDS="amd64 hppa ~ppc x86"
# upstream bug #2597171, pyewf has implicit declarations
#IUSE="debug python rawio unicode"
IUSE="debug ewf2 rawio static-libs unicode"

@ -1,43 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.6 2011/10/11 17:09:32 jer Exp $
inherit eutils autotools
DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
HOMEPAGE="http://libewf.sourceforge.net"
SRC_URI="mirror://sourceforge/libewf/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc x86"
# upstream bug #2597171, pyewf has implicit declarations
#IUSE="debug python rawio unicode"
IUSE="debug rawio unicode"
DEPEND="
sys-libs/e2fsprogs-libs
sys-libs/zlib
dev-libs/openssl"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
eautoreconf
}
src_compile() {
econf \
$(use_enable unicode wide-character-type) \
$(use_enable rawio low-level-functions) \
$(use_enable debug verbose-output) \
$(use_enable debug debug-output)
emake
}
src_install() {
emake install DESTDIR="${D}"
dodoc AUTHORS ChangeLog NEWS README documents/*.txt
doman manuals/*.1 manuals/*.3
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/basenji/basenji-0.8.0.ebuild,v 1.2 2011/12/03 18:55:49 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/basenji/basenji-0.8.0.ebuild,v 1.3 2011/12/07 07:33:44 phajdan.jr Exp $
EAPI="3"
@ -12,7 +12,7 @@ SRC_URI="http://launchpad.net/basenji/trunk/$(get_version_component_range 1-2)/+
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
CDEPEND="dev-dotnet/gio-sharp

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/mouseremote/mouseremote-0.90-r1.ebuild,v 1.4 2011/11/28 22:53:09 chainsaw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/mouseremote/mouseremote-0.90-r1.ebuild,v 1.5 2011/12/07 07:45:22 phajdan.jr Exp $
inherit eutils
@ -11,7 +11,7 @@ SRC_URI="http://www4.pair.com/gribnif/ha/MouseRemote.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc ~x86"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="virtual/perl-Time-HiRes"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/taskcoach-1.2.31.ebuild,v 1.2 2011/12/03 11:53:04 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/taskcoach-1.2.31.ebuild,v 1.3 2011/12/07 07:37:53 phajdan.jr Exp $
EAPI=3
@ -19,7 +19,7 @@ HOMEPAGE="http://www.taskcoach.org http://pypi.python.org/pypi/TaskCoach"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="libnotify"
DEPEND=">=dev-python/wxpython-2.8.9.2:2.8"
RDEPEND="${DEPEND}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/a2ps-4.14-r2.ebuild,v 1.3 2011/12/03 10:56:13 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/a2ps/a2ps-4.14-r2.ebuild,v 1.4 2011/12/07 07:47:36 phajdan.jr Exp $
EAPI=3
inherit eutils autotools elisp-common
@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="emacs nls latex vanilla userland_BSD userland_GNU linguas_ja"
RESTRICT="test"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.38-r1.ebuild,v 1.4 2011/11/26 10:29:31 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.38-r1.ebuild,v 1.5 2011/12/07 07:53:59 phajdan.jr Exp $
EAPI=3
@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/lout/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
KEYWORDS="amd64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
DEPEND="zlib? ( >=sys-libs/zlib-1.1.4 )"
RDEPEND="${DEPEND}"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/vimcalc-1.3.ebuild,v 1.1 2011/05/04 11:38:08 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcalc/vimcalc-1.3.ebuild,v 1.2 2011/12/07 07:33:32 radhermit Exp $
EAPI="4"
@ -17,7 +17,7 @@ VIM_PLUGIN_HELPFILES="vimcalc"
DEPEND="app-arch/unzip"
RDEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] )
dev-lang/python"
=dev-lang/python-2*"
S="${WORKDIR}/${PN}-v${PV}"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gnusim8085/gnusim8085-1.3.7.ebuild,v 1.3 2011/12/04 14:54:51 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gnusim8085/gnusim8085-1.3.7.ebuild,v 1.4 2011/12/07 07:36:59 phajdan.jr Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="nls examples"
RDEPEND=">=x11-libs/gtk+-2.12:2

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v 1.2 2011/12/02 22:33:16 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-java/jflex/jflex-1.4.3.ebuild,v 1.3 2011/12/07 07:46:24 phajdan.jr Exp $
# Currently, this package uses an included JFlex.jar file to bootstrap.
# Upstream was contacted and this bootstrap is really needed. The only way to avoid it would be to use a supplied pre-compiled .scanner file.
@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.jflex.de/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
RDEPEND=">=virtual/jre-1.4
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
>=dev-java/ant-core-1.7.0

@ -0,0 +1,94 @@
UpstreamStatus: Pending
When LONG_MIN is passed to val, -val is undefined. This patch fixes
it. See for details: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50066
Received this patch from H.J. Lu <hjl.tools@gmail.com>
Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> 2011/12/01
--- gmp-4.3.2/mpf/iset_si.c.ll 2010-01-07 12:09:03.000000000 -0800
+++ gmp-4.3.2/mpf/iset_si.c 2011-11-30 16:42:35.827944358 -0800
@@ -31,7 +31,7 @@ mpf_init_set_si (mpf_ptr r, long int val
r->_mp_prec = prec;
r->_mp_d = (mp_ptr) (*__gmp_allocate_func) ((prec + 1) * BYTES_PER_MP_LIMB);
- vl = (mp_limb_t) (unsigned long int) (val >= 0 ? val : -val);
+ vl = (mp_limb_t) (val >= 0 ? (unsigned long int) val : -(unsigned long int) val);
r->_mp_d[0] = vl & GMP_NUMB_MASK;
size = vl != 0;
--- gmp-4.3.2/mpf/set_si.c.ll 2010-01-07 12:09:03.000000000 -0800
+++ gmp-4.3.2/mpf/set_si.c 2011-11-30 16:42:47.823878367 -0800
@@ -27,7 +27,7 @@ mpf_set_si (mpf_ptr dest, long val)
mp_size_t size;
mp_limb_t vl;
- vl = (mp_limb_t) (unsigned long int) (val >= 0 ? val : -val);
+ vl = (mp_limb_t) (val >= 0 ? (unsigned long int) val : -(unsigned long int) val);
dest->_mp_d[0] = vl & GMP_NUMB_MASK;
size = vl != 0;
--- gmp-4.3.2/mpz/cmp_si.c.ll 2010-01-07 12:09:03.000000000 -0800
+++ gmp-4.3.2/mpz/cmp_si.c 2011-11-30 13:44:25.923319700 -0800
@@ -27,7 +27,7 @@ _mpz_cmp_si (mpz_srcptr u, signed long i
{
mp_size_t usize = u->_mp_size;
mp_size_t vsize;
- mp_limb_t u_digit;
+ mp_limb_t u_digit, vl_digit;
#if GMP_NAIL_BITS != 0
/* FIXME. This isn't very pretty. */
@@ -41,11 +41,14 @@ _mpz_cmp_si (mpz_srcptr u, signed long i
vsize = 0;
if (v_digit > 0)
- vsize = 1;
+ {
+ vsize = 1;
+ vl_digit = (mp_limb_t) (unsigned long) v_digit;
+ }
else if (v_digit < 0)
{
vsize = -1;
- v_digit = -v_digit;
+ vl_digit = (mp_limb_t) -(unsigned long) v_digit;
}
if (usize != vsize)
@@ -56,10 +59,10 @@ _mpz_cmp_si (mpz_srcptr u, signed long i
u_digit = u->_mp_d[0];
- if (u_digit == (mp_limb_t) (unsigned long) v_digit)
+ if (u_digit == vl_digit)
return 0;
- if (u_digit > (mp_limb_t) (unsigned long) v_digit)
+ if (u_digit > vl_digit)
return usize;
else
return -usize;
--- gmp-4.3.2/mpz/iset_si.c.ll 2010-01-07 12:09:03.000000000 -0800
+++ gmp-4.3.2/mpz/iset_si.c 2011-11-30 13:44:25.924319695 -0800
@@ -31,7 +31,7 @@ mpz_init_set_si (mpz_ptr dest, signed lo
dest->_mp_alloc = 1;
dest->_mp_d = (mp_ptr) (*__gmp_allocate_func) (BYTES_PER_MP_LIMB);
- vl = (mp_limb_t) (unsigned long int) (val >= 0 ? val : -val);
+ vl = (mp_limb_t) (val >= 0 ? (unsigned long int) val : -(unsigned long int) val);
dest->_mp_d[0] = vl & GMP_NUMB_MASK;
size = vl != 0;
--- gmp-4.3.2/mpz/set_si.c.ll 2010-01-07 12:09:03.000000000 -0800
+++ gmp-4.3.2/mpz/set_si.c 2011-11-30 13:44:25.947319574 -0800
@@ -27,7 +27,7 @@ mpz_set_si (mpz_ptr dest, signed long in
mp_size_t size;
mp_limb_t vl;
- vl = (mp_limb_t) (unsigned long int) (val >= 0 ? val : -val);
+ vl = (mp_limb_t) (val >= 0 ? (unsigned long int) val : -(unsigned long int) val);
dest->_mp_d[0] = vl & GMP_NUMB_MASK;
size = vl != 0;

@ -0,0 +1,45 @@
Upstream-Status: Pending
Add X32 support in gmp configure.
Patch Originator: H J Lu @ Intel
Patch modified for Yocto by Nitin Kamble
Signed Off By: Nitin A Kamble <nitin.a.kamble@intel.com> 2011/11/21
--- gmp-4.3.2/configure
+++ gmp-4.3.2/configure
@@ -1499,6 +1499,25 @@ case $host in
path_64="x86_64/atom x86_64"
;;
esac
+
+ # X32 support.
+ case x"$path_64" in
+ xx86_64*)
+ case x"$CC $CFLAGS" in
+ x*-mx32*)
+ abilist="x32 64 32"
+ path_x32="$path_64"
+ limb_x32=longlong
+ cclist_x32="gcc"
+ gcc_x32_cflags="-O2 -mx32"
+ any_x32_testlist="sizeof-long-4"
+ CALLING_CONVENTIONS_OBJS_x32='amd64call.lo amd64check$U.lo'
+ SPEED_CYCLECOUNTER_OBJ_x32=x86_64.lo
+ cyclecounter_size_x32=2
+ ;;
+ esac
+ ;;
+ esac
;;
esac
;;
@@ -3039,7 +3058,7 @@ if test "$gmp_asm_syntax_testing" != no;
;;
esac
;;
- 64)
+ 64|x32)
echo "include_mpn(\`x86_64/x86_64-defs.m4')" >> $gmp_tmpconfigm4i

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-5.0.2_p1.ebuild,v 1.3 2011/11/13 20:03:31 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-5.0.2_p1.ebuild,v 1.4 2011/12/07 06:40:51 vapier Exp $
inherit flag-o-matic eutils libtool toolchain-funcs
@ -29,6 +29,7 @@ src_unpack() {
epatch "${FILESDIR}"/${PN}-4.1.4-noexecstack.patch
epatch "${FILESDIR}"/${PN}-5.0.0-s390.diff
epatch "${FILESDIR}"/${MY_P}-unnormalised-dividends.patch
has x32 $(get_all_abis) && epatch "${FILESDIR}"/${PN}-5.0.2*x32*.patch
# disable -fPIE -pie in the tests for x86 #236054
if use x86 && gcc-specs-pie ; then
@ -59,7 +60,7 @@ src_compile() {
case ${ABI} in
32|x86) GMPABI=32;;
64|amd64|n64) GMPABI=64;;
o32|n32) GMPABI=${ABI};;
[onx]32) GMPABI=${ABI};;
esac
export GMPABI

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.0.1_p20110705.ebuild,v 1.3 2011/12/03 11:09:03 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.0.1_p20110705.ebuild,v 1.4 2011/12/07 07:39:12 phajdan.jr Exp $
EAPI=3
@ -15,7 +15,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc source static-libs"
DEPEND="!<app-text/texlive-core-2010

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libatasmart/libatasmart-0.18.ebuild,v 1.3 2011/12/03 12:03:21 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libatasmart/libatasmart-0.18.ebuild,v 1.4 2011/12/07 07:55:51 phajdan.jr Exp $
EAPI=4
@ -10,7 +10,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86"
IUSE="static-libs"
RDEPEND=">=sys-fs/udev-143"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/SGMLSpm/SGMLSpm-1.03-r6.ebuild,v 1.6 2011/12/05 23:30:51 chainsaw Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/SGMLSpm/SGMLSpm-1.03-r6.ebuild,v 1.7 2011/12/07 07:48:11 phajdan.jr Exp $
inherit eutils perl-module
@ -13,7 +13,7 @@ SRC_URI="mirror://cpan/authors/id/D/DM/DMEGG/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND="dev-lang/perl"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-2.3.1.ebuild,v 1.3 2011/12/02 22:17:41 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-2.3.1.ebuild,v 1.4 2011/12/07 07:44:26 phajdan.jr Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -17,7 +17,7 @@ SRC_URI="http://codespeak.net/lxml/${MY_P}.tgz"
LICENSE="BSD ElementTree GPL-2 PSF-2"
SLOT="0"
KEYWORDS="amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc examples +threads"
RDEPEND=">=dev-libs/libxml2-2.7.2

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.6.4.ebuild,v 1.2 2011/12/02 22:31:52 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.6.4.ebuild,v 1.3 2011/12/07 07:56:19 phajdan.jr Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -12,7 +12,7 @@ HOMEPAGE="http://pypi.python.org/pypi/virtualenv"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
KEYWORDS="amd64 ~ppc ~ppc64 x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
SLOT="0"
IUSE=""

@ -2,3 +2,4 @@ DIST systemu-1.2.0.gem 8704 RMD160 948fe643891a0d8648c979f34a4cfbc294e4894e SHA1
DIST systemu-2.2.0.gem 11264 RMD160 c4447014c596f6b3631a703c08c3003528eec1aa SHA1 c731344bf6c64ec3bc0f036d9fff8458644e76fb SHA256 19ccf5b2bf20bf47dfc0ad720d143c7786ea701235ddd1c0f4ec5bb243214f6c
DIST systemu-2.3.0.gem 11264 RMD160 0775a455f0f8bc1ab041c4fb99b596925a36ef40 SHA1 9afdc81896bd54b5267231fd61e594e2c1250072 SHA256 96d4fccd348ffddf99c45bc5a9811aab4088daa5cc56623d9149618d328bcb00
DIST systemu-2.4.0.gem 11264 RMD160 d745be8a53b6c3f764fd7ec3f5041964f19d4489 SHA1 5c26160959c0fb606fe8bca54a9659c319fa02d5 SHA256 e9dbd18eab73465a1512858b6fdd4a0b3bf466a34e7049d87481386d4d0a8a31
DIST systemu-2.4.1.gem 11264 RMD160 0c3a63ca3edfc83d07d1e30b3fc9cd97c1866001 SHA1 c8203e2a35dc6bc4011552db79c7fbf162d53c97 SHA256 e34a96064fced4e220ee4cd7f13a17853c5035fdc40a9d144da832fe16bba702

@ -0,0 +1,28 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/systemu/systemu-2.4.1.ebuild,v 1.1 2011/12/07 06:44:00 graaff Exp $
EAPI="2"
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_EXTRADOC="README"
inherit ruby-fakegem
DESCRIPTION="Universal capture of STDOUT and STDERR and handling of child process PID"
HOMEPAGE="http://codeforpeople.com/lib/ruby/systemu/"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
all_ruby_install() {
all_fakegem_install
insinto /usr/share/doc/${PF}
doins -r samples
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.6.ebuild,v 1.4 2011/12/04 22:07:32 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.6.ebuild,v 1.5 2011/12/07 07:52:36 phajdan.jr Exp $
EAPI="3"
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="static aio"
# strace only uses the header from libaio

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.158 2011/11/14 20:29:03 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.159 2011/12/07 06:42:40 vapier Exp $
# @ECLASS: flag-o-matic.eclass
# @MAINTAINER:
@ -51,7 +51,7 @@ setup-allowed-flags() {
-mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe \
-mtls-direct-seg-refs -mno-tls-direct-seg-refs \
-mflat -mno-flat -mno-faster-structs -mfaster-structs \
-m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \
-m32 -m64 -mx32 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \
-mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \
-msecure-plt -m*-toc -D* -U*"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/violetland-0.4.3.ebuild,v 1.2 2011/12/02 22:35:19 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/violetland-0.4.3.ebuild,v 1.3 2011/12/07 07:41:04 phajdan.jr Exp $
EAPI=2
inherit eutils cmake-utils games
@ -11,7 +11,7 @@ SRC_URI="http://violetland.googlecode.com/files/${PN}-v${PV}-src.zip"
LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="media-libs/libsdl[audio,video]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-2.32.1.1.ebuild,v 1.15 2011/11/24 15:09:45 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-2.32.1.1.ebuild,v 1.16 2011/12/07 07:32:41 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -31,6 +31,7 @@ RDEPEND=">=x11-libs/gtk+-2.20:2
>=dev-libs/libxml2-2.5.0:2
>=x11-themes/gnome-icon-theme-2.15.91
>=dev-libs/libgweather-2.22.1:2
<dev-libs/libgweather-2.91:2
x11-libs/libX11
gnome? (

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild,v 1.12 2011/11/16 00:38:55 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-panel/gnome-panel-2.32.1-r1.ebuild,v 1.13 2011/12/07 07:32:03 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -22,6 +22,7 @@ RDEPEND=">=gnome-base/gnome-desktop-2.26:2
>=dev-libs/glib-2.25.12:2
>=x11-libs/gtk+-2.22:2[introspection?]
>=dev-libs/libgweather-2.27.90:2
<dev-libs/libgweather-2.90.1:2
dev-libs/libxml2:2
>=gnome-base/gconf-2.6.1:2[introspection?]
>=media-libs/libcanberra-0.23[gtk]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-panel/gnome-panel-2.32.1-r2.ebuild,v 1.9 2011/11/16 00:38:55 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-panel/gnome-panel-2.32.1-r2.ebuild,v 1.10 2011/12/07 07:32:03 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -23,6 +23,7 @@ RDEPEND=">=gnome-base/gnome-desktop-2.26:2
>=dev-libs/glib-2.25.12:2
>=x11-libs/gtk+-2.22:2[introspection?]
>=dev-libs/libgweather-2.27.90:2
<dev-libs/libgweather-2.90.1:2
dev-libs/libxml2:2
>=gnome-base/gconf-2.6.1:2[introspection?]
>=media-libs/libcanberra-0.23[gtk]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-panel/gnome-panel-2.32.1-r3.ebuild,v 1.8 2011/11/16 00:38:55 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-panel/gnome-panel-2.32.1-r3.ebuild,v 1.9 2011/12/07 07:32:03 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -24,6 +24,7 @@ RDEPEND=">=gnome-base/gnome-desktop-2.26:2
>=dev-libs/glib-2.25.12:2
>=x11-libs/gtk+-2.22:2[introspection?]
>=dev-libs/libgweather-2.27.90:2
<dev-libs/libgweather-2.90.1:2
dev-libs/libxml2:2
>=gnome-base/gconf-2.6.1:2[introspection?]
>=media-libs/libcanberra-0.23[gtk]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/gnome-2.32.1-r1.ebuild,v 1.6 2011/10/30 18:10:55 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/gnome-2.32.1-r1.ebuild,v 1.7 2011/12/07 07:36:52 tetromino Exp $
EAPI="4"
@ -88,6 +88,7 @@ RDEPEND="
>=gnome-base/gnome-desktop-2.32.1:2
>=gnome-base/gnome-session-2.32.1
>=dev-libs/libgweather-2.30.3:2
<dev-libs/libgweather-2.91:2
>=gnome-base/gnome-applets-2.32.0
>=gnome-base/gnome-panel-2.32.1
>=gnome-base/gnome-menus-2.30.5

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-2.32.2-r1.ebuild,v 1.8 2011/11/16 00:32:42 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-2.32.2-r1.ebuild,v 1.9 2011/12/07 07:33:02 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -34,7 +34,9 @@ RDEPEND=">=dev-libs/glib-2.25.12:2
gnome-keyring? ( >=gnome-base/gnome-keyring-2.20.1 )
kerberos? ( virtual/krb5 )
ldap? ( >=net-nds/openldap-2 )
weather? ( >=dev-libs/libgweather-2.25.4:2 )
weather? (
>=dev-libs/libgweather-2.25.4:2
<dev-libs/libgweather-2.91:2 )
"
DEPEND="${RDEPEND}
dev-util/gperf

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-2.32.2.ebuild,v 1.8 2011/11/16 00:32:42 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-2.32.2.ebuild,v 1.9 2011/12/07 07:33:02 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -33,7 +33,9 @@ RDEPEND=">=dev-libs/glib-2.25.12:2
ssl? (
>=dev-libs/nspr-4.4
>=dev-libs/nss-3.9 )
weather? ( >=dev-libs/libgweather-2.25.4:2 )
weather? (
>=dev-libs/libgweather-2.25.4:2
<dev-libs/libgweather-2.91:2 )
"
DEPEND="${RDEPEND}
dev-util/gperf

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-2.32.3-r1.ebuild,v 1.7 2011/11/16 00:32:42 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/evolution-data-server-2.32.3-r1.ebuild,v 1.8 2011/12/07 07:33:02 tetromino Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -36,7 +36,9 @@ RDEPEND=">=dev-libs/glib-2.25.12:2
gnome-keyring? ( >=gnome-base/gnome-keyring-2.20.1 )
kerberos? ( virtual/krb5 )
ldap? ( >=net-nds/openldap-2 )
weather? ( >=dev-libs/libgweather-2.25.4:2 )
weather? (
>=dev-libs/libgweather-2.25.4:2
<dev-libs/libgweather-2.91:2 )
"
DEPEND="${RDEPEND}
dev-util/gperf

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/evolution/evolution-2.32.2-r3.ebuild,v 1.8 2011/11/16 00:33:22 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-client/evolution/evolution-2.32.2-r3.ebuild,v 1.9 2011/12/07 07:33:05 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -33,6 +33,7 @@ RDEPEND=">=dev-libs/glib-2.25.12:2
>=dev-libs/libunique-1.1.2:1
>=gnome-base/gnome-desktop-2.26:2
>=dev-libs/libgweather-2.25.3:2
<dev-libs/libgweather-2.91:2
media-libs/libcanberra[gtk]
>=x11-libs/libnotify-0.3
>=gnome-extra/evolution-data-server-${PV}[weather]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/evolution/evolution-2.32.3-r1.ebuild,v 1.3 2011/11/16 00:33:22 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-client/evolution/evolution-2.32.3-r1.ebuild,v 1.4 2011/12/07 07:33:05 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -34,6 +34,7 @@ RDEPEND=">=dev-libs/glib-2.25.12:2
>=dev-libs/libunique-1.1.2:1
>=gnome-base/gnome-desktop-2.26:2
>=dev-libs/libgweather-2.25.3:2
<dev-libs/libgweather-2.91:2
media-libs/libcanberra[gtk]
>=x11-libs/libnotify-0.3
>=gnome-extra/evolution-data-server-${PV}[weather]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/evolution/evolution-2.32.3.ebuild,v 1.8 2011/11/16 00:33:22 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-client/evolution/evolution-2.32.3.ebuild,v 1.9 2011/12/07 07:33:05 tetromino Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -34,6 +34,7 @@ RDEPEND=">=dev-libs/glib-2.25.12:2
>=dev-libs/libunique-1.1.2:1
>=gnome-base/gnome-desktop-2.26:2
>=dev-libs/libgweather-2.25.3:2
<dev-libs/libgweather-2.91:2
media-libs/libcanberra[gtk]
>=x11-libs/libnotify-0.3
>=gnome-extra/evolution-data-server-${PV}[weather]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/policyd/policyd-1.82-r1.ebuild,v 1.1 2011/06/09 12:56:50 eras Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-filter/policyd/policyd-1.82-r1.ebuild,v 1.2 2011/12/07 07:42:00 phajdan.jr Exp $
inherit eutils toolchain-funcs
@ -11,7 +11,7 @@ HOMEPAGE="http://policyd.sf.net/"
SRC_URI="http://policyd.sourceforge.net/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
KEYWORDS="~amd64 x86"
IUSE=""
DEPEND="virtual/mysql
dev-libs/openssl"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/gifsicle-1.63.ebuild,v 1.2 2011/12/03 11:01:10 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gifsicle/gifsicle-1.63.ebuild,v 1.3 2011/12/07 07:47:00 phajdan.jr Exp $
EAPI=4
@ -10,7 +10,7 @@ SRC_URI="http://www.lcdf.org/~eddietwo/gifsicle/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="X"
RDEPEND="X? ( x11-libs/libX11

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/adplug-2.2.1.ebuild,v 1.2 2011/12/02 22:36:10 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/adplug-2.2.1.ebuild,v 1.3 2011/12/07 07:53:03 phajdan.jr Exp $
inherit eutils
@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc ~x86"
KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE="debug"
RDEPEND=">=dev-cpp/libbinio-1.4"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/liblrdf-0.5.0.ebuild,v 1.4 2011/11/30 03:26:57 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/liblrdf/liblrdf-0.5.0.ebuild,v 1.5 2011/12/07 07:57:11 phajdan.jr Exp $
EAPI=4
inherit autotools
@ -11,7 +11,7 @@ SRC_URI="http://github.com/swh/LRDF/tarball/${PV} -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
KEYWORDS="amd64 hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="static-libs"
RDEPEND=">=dev-libs/openssl-1

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.89c.ebuild,v 1.2 2011/01/28 17:30:32 hd_brummy Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.89c.ebuild,v 1.3 2011/12/07 07:55:18 phajdan.jr Exp $
EAPI="3"
@ -11,7 +11,7 @@ inherit vdr-plugin
DESCRIPTION="VDR Plugin: play ac3 sound over SPDIF-port of an alsa-compatible soundcard"
HOMEPAGE="http://bitstreamout.sourceforge.net"
SRC_URI="mirror://sourceforge/bitstreamout/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 x86"
SLOT="0"
LICENSE="GPL-2"

@ -1,2 +1 @@
DIST fmtools-0.99.1.tar.gz 16616 RMD160 ced3143822ead08f0d2178aefb70787434d34a70 SHA1 e8a7f947c790c12803b8257532ff8bba002ed804 SHA256 f3d49dec34bf37d70c95c1d5affd6ec41b14cc142e7b106f978ca458ff57d13f
DIST fmtools-1.0.2.tar.gz 23607 RMD160 6e43eb91615ac5526aa955ec9adcaff1618fd4f5 SHA1 b5af99537378d7c2bb816d97611212b508c10b3f SHA256 60a55ba4a57b5ed430c62662283e9cb6de685c8497173f1f2065f684b2aceabd

@ -1,27 +0,0 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/fmtools/fmtools-0.99.1.ebuild,v 1.8 2005/11/07 10:40:28 flameeyes Exp $
IUSE=""
DESCRIPTION="A collection of programs for controlling v4l radio card drivers."
HOMEPAGE="http://www.stanford.edu/~blp/fmtools/"
SRC_URI="http://www.stanford.edu/~blp/fmtools/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 x86 -ppc -sparc -alpha"
DEPEND=""
src_compile() {
emake || die
}
src_install() {
dobin fm
dobin fmscan
doman fm.1
doman fmscan.1
dodoc README CHANGES
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/fmtools/fmtools-1.0.2-r1.ebuild,v 1.2 2011/12/03 11:15:47 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/fmtools/fmtools-1.0.2-r1.ebuild,v 1.3 2011/12/07 07:34:52 phajdan.jr Exp $
EAPI=2
inherit base toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="http://www.stanford.edu/~blp/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~sparc ~x86"
KEYWORDS="amd64 ~sparc x86"
IUSE=""
PATCHES=( "${FILESDIR}/${P}-ldflags.patch" )

@ -1,28 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/fmtools/fmtools-1.0.2.ebuild,v 1.5 2010/10/19 20:05:00 chainsaw Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="A collection of programs for controlling v4l radio card drivers."
HOMEPAGE="http://www.stanford.edu/~blp/fmtools"
SRC_URI="http://www.stanford.edu/~blp/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~sparc x86"
IUSE=""
RDEPEND=""
DEPEND=""
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dobin fm fmscan || die "dobin failed"
doman fm.1 fmscan.1
dodoc CHANGES README
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.21.ebuild,v 1.2 2011/12/02 23:53:01 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/mhwaveedit/mhwaveedit-1.4.21.ebuild,v 1.3 2011/12/07 07:34:28 phajdan.jr Exp $
EAPI=2
@ -10,7 +10,7 @@ SRC_URI="http://download.gna.org/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE="alsa esd jack ladspa libsamplerate nls oss pulseaudio sdl sndfile sox"
RDEPEND="x11-libs/gtk+:2

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.5.8.ebuild,v 1.4 2011/12/04 22:09:54 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.5.8.ebuild,v 1.5 2011/12/07 07:41:38 phajdan.jr Exp $
EAPI="4"
@ -13,7 +13,7 @@ SRC_URI="http://unkart.ovh.org/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
IUSE="bash-completion clock curl fftw iconv outputs taglib unicode visualizer"
SLOT="0"
KEYWORDS="amd64 arm hppa ~ppc ~sparc ~x86"
KEYWORDS="amd64 arm hppa ~ppc ~sparc x86"
RDEPEND="
sys-libs/ncurses[unicode?]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ttaenc/ttaenc-3.4.1-r1.ebuild,v 1.3 2011/12/04 12:46:20 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/ttaenc/ttaenc-3.4.1-r1.ebuild,v 1.4 2011/12/07 07:51:27 phajdan.jr Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/tta/${P}-src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="sys-apps/sed"

@ -1,34 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ttaenc/ttaenc-3.4.1.ebuild,v 1.3 2010/01/14 21:00:36 maekke Exp $
inherit toolchain-funcs
DESCRIPTION="True Audio Compressor Software"
HOMEPAGE="http://tta.sourceforge.net"
SRC_URI="mirror://sourceforge/tta/${P}-src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=""
DEPEND="sys-apps/sed"
S=${WORKDIR}/${P}-src
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s:gcc:$(tc-getCC):g" Makefile
}
src_compile () {
emake CFLAGS="${CFLAGS}" || die "emake failed."
}
src_install () {
dobin ttaenc
dodoc ChangeLog-${PV} README
}

@ -6,7 +6,7 @@ http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/chrpath-0.13.tar.gz
http://directory.fsf.org/project/chrpath/
GPL-2
chrpath can modify the rpath and runpath of ELF executables
amd64 arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
amd64 arm ~ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
autotools eutils libtool multilib portability toolchain-funcs user
static-libs

@ -6,7 +6,7 @@ mirror://sourceforge/k9copy/k9copy-2.3.7-Source.tar.gz
http://k9copy.sourceforge.net/
GPL-2
k9copy is a DVD backup utility which allows the copy of one or more titles from a DVD9 to a DVD5.
amd64 ~x86
amd64 x86
base cmake-utils eutils fdo-mime flag-o-matic gnome2-utils kde4-base kde4-functions multilib portability toolchain-funcs user versionator virtualx
debug linguas_ca linguas_cs linguas_da linguas_de linguas_el linguas_es_AR linguas_es linguas_fr linguas_it linguas_ja linguas_nl linguas_pl linguas_pt_BR linguas_ru linguas_sr@Latn linguas_sr linguas_tr linguas_zh_TW +handbook aqua kdeenablefinal

@ -0,0 +1,22 @@
!!app-crypt/heimdal >=sys-libs/e2fsprogs-libs-1.41.0 keyutils? ( sys-apps/keyutils ) openldap? ( net-nds/openldap ) xinetd? ( sys-apps/xinetd ) virtual/yacc doc? ( virtual/latex-base ) test? ( dev-lang/tcl dev-lang/python dev-util/dejagnu )
!!app-crypt/heimdal >=sys-libs/e2fsprogs-libs-1.41.0 keyutils? ( sys-apps/keyutils ) openldap? ( net-nds/openldap ) xinetd? ( sys-apps/xinetd )
0
http://web.mit.edu/kerberos/dist/krb5/1.9/krb5-1.9.2-signed.tar
http://web.mit.edu/kerberos/www/
as-is
MIT Kerberos V
~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 portability toolchain-funcs user versionator
doc +keyutils openldap +pkinit +threads test xinetd
3
compile configure install preinst prepare unpack

@ -6,7 +6,7 @@ mirror://sourceforge/scintilla/scite228.tgz
http://www.scintilla.org/SciTE.html
Scintilla
A very powerful editor for programmers
amd64 ~ppc ~x86 ~x86-fbsd
amd64 ~ppc x86 ~x86-fbsd
eutils multilib portability toolchain-funcs user
lua

@ -6,7 +6,7 @@ mirror://gnu/zile/zile-2.4.2.tar.gz
http://www.gnu.org/software/zile/
GPL-3
Zile is a small Emacs clone
~alpha amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
~alpha amd64 ~ppc ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
acl test

@ -1,22 +0,0 @@
ewf? ( app-forensics/libewf ) fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) python? ( dev-lang/python ) readline? ( sys-libs/readline ) s3? ( net-misc/curl dev-libs/expat ) sys-libs/zlib dev-libs/openssl
ewf? ( app-forensics/libewf ) fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) python? ( dev-lang/python ) readline? ( sys-libs/readline ) s3? ( net-misc/curl dev-libs/expat ) sys-libs/zlib dev-libs/openssl
0
http://www.afflib.org/downloads/afflib-3.3.4.tar.gz
http://www.afflib.org/
BSD-4
Library that implements the AFF image standard
~amd64 ~hppa ~ppc ~x86
eutils multilib portability toolchain-funcs user
ewf fuse ncurses python qemu readline s3 threads
compile install unpack

@ -1,22 +0,0 @@
ewf? ( app-forensics/libewf ) fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) python? ( dev-lang/python ) readline? ( sys-libs/readline ) s3? ( net-misc/curl dev-libs/expat ) sys-libs/zlib dev-libs/openssl
ewf? ( app-forensics/libewf ) fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) python? ( dev-lang/python ) readline? ( sys-libs/readline ) s3? ( net-misc/curl dev-libs/expat ) sys-libs/zlib dev-libs/openssl
0
http://www.afflib.org/downloads/afflib-3.5.2.tar.gz
http://www.afflib.org/
BSD-4
Library that implements the AFF image standard
~amd64 ~hppa ~ppc ~x86
eutils multilib portability toolchain-funcs user
ewf fuse ncurses python qemu readline s3 threads
compile install

@ -1,22 +0,0 @@
ewf? ( app-forensics/libewf ) fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) python? ( dev-lang/python ) readline? ( sys-libs/readline ) s3? ( net-misc/curl dev-libs/expat ) sys-libs/zlib dev-libs/openssl
ewf? ( app-forensics/libewf ) fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) python? ( dev-lang/python ) readline? ( sys-libs/readline ) s3? ( net-misc/curl dev-libs/expat ) sys-libs/zlib dev-libs/openssl
0
http://www.afflib.org/downloads/afflib-3.5.8.tar.gz
http://www.afflib.org/
BSD-4
Library that implements the AFF image standard
~amd64 ~hppa ~ppc ~x86
eutils multilib portability toolchain-funcs user
ewf fuse ncurses python qemu readline s3 threads
compile install

@ -6,7 +6,7 @@ http://www.afflib.org/downloads/afflib-3.6.12.tar.gz
http://www.afflib.org/
BSD-4
Library that implements the AFF image standard
amd64 hppa ~ppc ~x86
amd64 hppa ~ppc x86
autotools autotools-utils base eutils libtool multilib portability python toolchain-funcs user
fuse ncurses python qemu readline s3 static-libs threads

@ -1,22 +0,0 @@
ewf? ( app-forensics/libewf ) fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) python? ( dev-lang/python ) readline? ( sys-libs/readline ) s3? ( net-misc/curl dev-libs/expat ) sys-libs/zlib dev-libs/openssl
ewf? ( app-forensics/libewf ) fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) python? ( dev-lang/python ) readline? ( sys-libs/readline ) s3? ( net-misc/curl dev-libs/expat ) sys-libs/zlib dev-libs/openssl
0
http://www.afflib.org/downloads/afflib-3.6.8.tar.gz
http://www.afflib.org/
BSD-4
Library that implements the AFF image standard
amd64 hppa ~ppc x86
eutils multilib portability toolchain-funcs user
ewf fuse ncurses python qemu readline s3 threads
compile install

@ -6,7 +6,7 @@ http://www.cgsecurity.org/cmospwd-5.1.tar.bz2
http://www.cgsecurity.org/wiki/CmosPwd
GPL-2
CmosPwd decrypts password stored in cmos used to access BIOS SETUP
amd64 ~x86
amd64 x86
multilib toolchain-funcs

@ -1,22 +0,0 @@
sys-libs/e2fsprogs-libs sys-libs/zlib dev-libs/openssl || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
sys-libs/e2fsprogs-libs sys-libs/zlib dev-libs/openssl
0
mirror://sourceforge/libewf/libewf-beta-20090209.tar.gz
http://libewf.sourceforge.net
BSD
Implementation of the EWF (SMART and EnCase) image format
~amd64 ~hppa ~ppc ~x86
autotools eutils libtool multilib portability toolchain-funcs user
debug rawio unicode
compile install unpack

@ -1,22 +0,0 @@
sys-libs/e2fsprogs-libs sys-libs/zlib dev-libs/openssl || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
sys-libs/e2fsprogs-libs sys-libs/zlib dev-libs/openssl
0
mirror://sourceforge/libewf/libewf-beta-20091108.tar.gz
http://libewf.sourceforge.net
BSD
Implementation of the EWF (SMART and EnCase) image format
~amd64 ~hppa ~ppc ~x86
autotools eutils libtool multilib portability toolchain-funcs user
debug rawio unicode
compile install unpack

@ -1,22 +0,0 @@
sys-libs/e2fsprogs-libs sys-libs/zlib dev-libs/openssl || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
sys-libs/e2fsprogs-libs sys-libs/zlib dev-libs/openssl
0
mirror://sourceforge/libewf/libewf-20100226.tar.gz
http://libewf.sourceforge.net
BSD
Implementation of the EWF (SMART and EnCase) image format
amd64 hppa ~ppc x86
autotools eutils libtool multilib portability toolchain-funcs user
debug rawio unicode
compile install unpack

@ -6,7 +6,7 @@ mirror://sourceforge/libewf/libewf-20100226.tar.gz
http://libewf.sourceforge.net
BSD
Implementation of the EWF (SMART and EnCase) image format
amd64 hppa ~ppc ~x86
amd64 hppa ~ppc x86
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
debug ewf2 rawio static-libs unicode

@ -6,7 +6,7 @@ http://launchpad.net/basenji/trunk/0.8/+download/basenji-0.8.0.tar.gz
http://launchpad.net/basenji
GPL-3
Basenji is a volume indexing tool designed for easy and fast indexing of volume collections.
amd64 ~x86
amd64 x86
eutils multilib portability toolchain-funcs user versionator

@ -6,7 +6,7 @@ http://www4.pair.com/gribnif/ha/MouseRemote.tar.gz
http://www4.pair.com/gribnif/ha/
GPL-2
X10 MouseRemote
amd64 ~ppc ~x86
amd64 ~ppc x86
eutils multilib portability toolchain-funcs user

@ -6,7 +6,7 @@ mirror://sourceforge/taskcoach/TaskCoach-1.2.31.tar.gz
http://www.taskcoach.org http://pypi.python.org/pypi/TaskCoach
GPL-3
Simple personal tasks and todo lists manager
amd64 ~x86
amd64 x86
distutils eutils multilib portability python toolchain-funcs user
libnotify

@ -6,7 +6,7 @@ test
http://www.inf.enst.fr/~demaille/a2ps/
GPL-3
Any to PostScript filter
~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos
~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos
autotools elisp-common eutils libtool multilib portability toolchain-funcs user
emacs nls latex vanilla userland_BSD userland_GNU linguas_ja

@ -6,7 +6,7 @@ mirror://sourceforge/lout/lout-3.38.tar.gz
http://lout.sourceforge.net/
GPL-2
high-level language for document formatting
amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos
amd64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos
eutils multilib portability toolchain-funcs user
zlib doc

@ -1,5 +1,5 @@
app-arch/unzip || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
|| ( app-editors/vim[python] app-editors/gvim[python] ) dev-lang/python || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
|| ( app-editors/vim[python] app-editors/gvim[python] ) =dev-lang/python-2* || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
0
http://www.vim.org/scripts/download_script.php?src_id=15317 -> vimcalc-1.3.zip

@ -6,7 +6,7 @@ http://launchpad.net/gnusim8085/trunk/1.3.7/+download/gnusim8085-1.3.7.tar.gz
http://gnusim8085.org
GPL-2
A GTK2 8085 Simulator
amd64 ~x86
amd64 x86
autotools eutils libtool multilib portability toolchain-funcs user
nls examples

@ -6,7 +6,7 @@ mirror://sourceforge/jflex/jflex-1.4.3.tar.gz
http://www.jflex.de/
GPL-2
JFlex is a lexical analyzer generator for Java
amd64 ~x86
amd64 x86
eutils java-ant-2 java-pkg-2 java-utils-2 multilib portability toolchain-funcs user versionator
doc source vim-syntax elibc_FreeBSD source elibc_FreeBSD

@ -6,7 +6,7 @@ mirror://gentoo/texlive-20110705-source.tar.xz mirror://gentoo/kpathsea-texmf.d-
http://tug.org/texlive/
GPL-2
Library implementing generic path searching, configuration, and TeX-specific file searching
~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
eutils multilib portability texlive-common toolchain-funcs user
doc source static-libs

@ -6,7 +6,7 @@ http://0pointer.de/public/libatasmart-0.18.tar.gz
http://0pointer.de/blog/projects/being-smart.html
LGPL-2.1
Lean and small library for ATA S.M.A.R.T. hard disks
~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86
~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86
static-libs

@ -6,7 +6,7 @@ mirror://cpan/authors/id/D/DM/DMEGG/SGMLSpm-1.03ii.tar.gz
http://search.cpan.org/author/DMEGG/SGMLSpm-1.03ii/
GPL-2
Perl library for parsing the output of nsgmls
~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
base eutils multilib perl-module portability toolchain-funcs user

@ -6,7 +6,7 @@ http://codespeak.net/lxml/lxml-2.3.1.tgz
http://codespeak.net/lxml/ http://pypi.python.org/pypi/lxml
BSD ElementTree GPL-2 PSF-2
A Pythonic binding for the libxml2 and libxslt libraries
amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
distutils multilib python toolchain-funcs
doc examples +threads

@ -6,7 +6,7 @@ mirror://pypi/v/virtualenv/virtualenv-1.6.4.tar.gz
http://pypi.python.org/pypi/virtualenv
MIT
Virtual Python Environment builder
amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris
amd64 ~ppc ~ppc64 x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris
distutils multilib python toolchain-funcs

@ -0,0 +1,22 @@
ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) )
ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] )
0
mirror://rubygems/systemu-2.4.1.gem
http://codeforpeople.com/lib/ruby/systemu/
Ruby
Universal capture of STDOUT and STDERR and handling of child process PID
~amd64 ~x86
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
elibc_FreeBSD ruby_targets_ruby18 test
2
compile configure install prepare setup test unpack

@ -6,7 +6,7 @@ mirror://sourceforge/strace/strace-4.6.tar.xz
http://sourceforge.net/projects/strace/
BSD
A useful diagnostic, instructional, and debugging tool
~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux
~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~ia64-linux ~x86-linux
eutils flag-o-matic multilib portability toolchain-funcs user
static aio

@ -6,7 +6,7 @@ http://violetland.googlecode.com/files/violetland-v0.4.3-src.zip
http://code.google.com/p/violetland/
GPL-3 CCPL-Attribution-ShareAlike-3.0
Help a girl by name of Violet to struggle with hordes of monsters.
amd64 ~x86
amd64 x86
base cmake-utils eutils flag-o-matic games multilib portability toolchain-funcs user

@ -1,5 +1,5 @@
>=dev-libs/glib-2.26.1:2 >=x11-libs/gtk+-2.22.1-r1:2 >=x11-libs/gdk-pixbuf-2.22.1:2 >=dev-libs/atk-1.32.0 >=x11-libs/pango-1.28.3 >=dev-libs/libxml2-2.7.2:2 >=dev-libs/libxslt-1.1.22 >=media-libs/audiofile-0.2.7 >=x11-libs/libxklavier-5.0 >=media-libs/libart_lgpl-2.3.21 >=dev-libs/libIDL-0.8.14 >=gnome-base/orbit-2.14.19:2 >=x11-libs/libwnck-2.30.6:1 >=x11-wm/metacity-2.30.3 >=gnome-base/gnome-keyring-2.32.1 >=gnome-base/libgnome-keyring-2.32.0 >=app-crypt/seahorse-2.32.0 >=gnome-base/gconf-2.32.0-r1:2 >=net-libs/libsoup-2.32.1:2.4 >=gnome-base/dconf-0.5.1-r2 >=gnome-base/libbonobo-2.24.3 >=gnome-base/libbonoboui-2.24.4 >=gnome-base/libgnome-2.32.0 >=gnome-base/libgnomecanvas-2.30.2 >=gnome-base/libglade-2.6.4:2.0 >=gnome-extra/bug-buddy-2.32.0:2 >=gnome-base/libgnomekbd-2.32.0 >=gnome-base/gnome-settings-daemon-2.32.1 >=gnome-base/gnome-control-center-2.32.0:2 >=gnome-base/nautilus-2.32.1 >=media-libs/gstreamer-0.10.30.2:0.10 >=media-libs/gst-plugins-base-0.10.30.4:0.10 >=media-libs/gst-plugins-good-0.10.23:0.10 >=gnome-extra/gnome-media-2.32.0:2 <gnome-extra/gnome-media-2.91:2 >=media-sound/sound-juicer-2.32.0 >=dev-libs/totem-pl-parser-2.32.1 >=media-video/totem-2.32.0 >=media-video/cheese-2.32.0 >=media-gfx/eog-2.32.1:1 >=www-client/epiphany-2.30.6 >=app-arch/file-roller-2.32.1 >=gnome-extra/gcalctool-5.32.1 >=gnome-extra/gconf-editor-2.32.0 >=gnome-base/gdm-2.20.11 >=x11-libs/gtksourceview-2.10.5:2.0 >=app-editors/gedit-2.30.4 >=app-text/evince-2.32.0 >=gnome-base/gnome-desktop-2.32.1:2 >=gnome-base/gnome-session-2.32.1 >=dev-libs/libgweather-2.30.3:2 >=gnome-base/gnome-applets-2.32.0 >=gnome-base/gnome-panel-2.32.1 >=gnome-base/gnome-menus-2.30.5 >=x11-themes/gnome-icon-theme-2.31.0 >=x11-themes/gnome-themes-2.32.1-r1 >=x11-themes/gnome-themes-standard-3.0.2 >=gnome-extra/deskbar-applet-2.32.0 >=gnome-extra/hamster-applet-2.32.1 >=x11-themes/gtk-engines-2.20.2:2 >=x11-themes/gnome-backgrounds-2.32.0 >=x11-libs/vte-0.26.2:0 >=x11-terms/gnome-terminal-2.32.1 >=gnome-extra/gucharmap-2.32.1 >=gnome-extra/gnome-utils-2.32.0 >=gnome-extra/gnome-games-2.28.2 >=gnome-base/librsvg-2.32.1:2 >=gnome-extra/gnome-system-monitor-2.28.2 >=gnome-base/libgtop-2.28.2:2 >=x11-libs/startup-notification-0.10 >=gnome-extra/gnome-user-docs-2.32.0 >=gnome-extra/yelp-2.30.2 >=gnome-extra/zenity-2.32.1 >=net-analyzer/gnome-netstatus-2.28.2 >=net-analyzer/gnome-nettool-2.32.0 cdr? ( >=app-cdr/brasero-2.32.1 ) dvdr? ( >=app-cdr/brasero-2.32.1 ) >=gnome-extra/gtkhtml-3.32.1:3.14 >=mail-client/evolution-2.32.1-r1:2.0 >=gnome-extra/evolution-data-server-2.32.1-r1 >=gnome-extra/evolution-webcal-2.32.0 >=net-misc/vino-2.32.0 >=app-admin/pessulus-2.30.4 ldap? ( >=app-admin/sabayon-2.30.1 ) >=gnome-extra/gnome-screensaver-2.30.2 >=x11-misc/alacarte-0.13.2 >=gnome-extra/gnome-power-manager-2.32.0 >=net-misc/vinagre-2.30.3 >=gnome-extra/swfdec-gnome-2.30.1 accessibility? ( >=gnome-extra/libgail-gnome-1.20.3 >=gnome-extra/at-spi-1.32.0:1 >=app-accessibility/dasher-4.11 >=app-accessibility/gnome-mag-0.16.3:1 >=app-accessibility/gnome-speech-0.4.25:1 >=app-accessibility/gok-2.30.1:1 >=app-accessibility/orca-2.32.1 >=gnome-extra/mousetweaks-2.32.1 ) cups? ( >=app-admin/system-config-printer-gnome-1.3.3 ) mono? ( >=dev-dotnet/gtk-sharp-2.12.10:2 >=app-misc/tomboy-1.4.2 ) policykit? ( gnome-extra/polkit-gnome )
>=dev-libs/glib-2.26.1:2 >=x11-libs/gtk+-2.22.1-r1:2 >=x11-libs/gdk-pixbuf-2.22.1:2 >=dev-libs/atk-1.32.0 >=x11-libs/pango-1.28.3 >=dev-libs/libxml2-2.7.2:2 >=dev-libs/libxslt-1.1.22 >=media-libs/audiofile-0.2.7 >=x11-libs/libxklavier-5.0 >=media-libs/libart_lgpl-2.3.21 >=dev-libs/libIDL-0.8.14 >=gnome-base/orbit-2.14.19:2 >=x11-libs/libwnck-2.30.6:1 >=x11-wm/metacity-2.30.3 >=gnome-base/gnome-keyring-2.32.1 >=gnome-base/libgnome-keyring-2.32.0 >=app-crypt/seahorse-2.32.0 >=gnome-base/gconf-2.32.0-r1:2 >=net-libs/libsoup-2.32.1:2.4 >=gnome-base/dconf-0.5.1-r2 >=gnome-base/libbonobo-2.24.3 >=gnome-base/libbonoboui-2.24.4 >=gnome-base/libgnome-2.32.0 >=gnome-base/libgnomecanvas-2.30.2 >=gnome-base/libglade-2.6.4:2.0 >=gnome-extra/bug-buddy-2.32.0:2 >=gnome-base/libgnomekbd-2.32.0 >=gnome-base/gnome-settings-daemon-2.32.1 >=gnome-base/gnome-control-center-2.32.0:2 >=gnome-base/nautilus-2.32.1 >=media-libs/gstreamer-0.10.30.2:0.10 >=media-libs/gst-plugins-base-0.10.30.4:0.10 >=media-libs/gst-plugins-good-0.10.23:0.10 >=gnome-extra/gnome-media-2.32.0:2 <gnome-extra/gnome-media-2.91:2 >=media-sound/sound-juicer-2.32.0 >=dev-libs/totem-pl-parser-2.32.1 >=media-video/totem-2.32.0 >=media-video/cheese-2.32.0 >=media-gfx/eog-2.32.1:1 >=www-client/epiphany-2.30.6 >=app-arch/file-roller-2.32.1 >=gnome-extra/gcalctool-5.32.1 >=gnome-extra/gconf-editor-2.32.0 >=gnome-base/gdm-2.20.11 >=x11-libs/gtksourceview-2.10.5:2.0 >=app-editors/gedit-2.30.4 >=app-text/evince-2.32.0 >=gnome-base/gnome-desktop-2.32.1:2 >=gnome-base/gnome-session-2.32.1 >=dev-libs/libgweather-2.30.3:2 <dev-libs/libgweather-2.91:2 >=gnome-base/gnome-applets-2.32.0 >=gnome-base/gnome-panel-2.32.1 >=gnome-base/gnome-menus-2.30.5 >=x11-themes/gnome-icon-theme-2.31.0 >=x11-themes/gnome-themes-2.32.1-r1 >=x11-themes/gnome-themes-standard-3.0.2 >=gnome-extra/deskbar-applet-2.32.0 >=gnome-extra/hamster-applet-2.32.1 >=x11-themes/gtk-engines-2.20.2:2 >=x11-themes/gnome-backgrounds-2.32.0 >=x11-libs/vte-0.26.2:0 >=x11-terms/gnome-terminal-2.32.1 >=gnome-extra/gucharmap-2.32.1 >=gnome-extra/gnome-utils-2.32.0 >=gnome-extra/gnome-games-2.28.2 >=gnome-base/librsvg-2.32.1:2 >=gnome-extra/gnome-system-monitor-2.28.2 >=gnome-base/libgtop-2.28.2:2 >=x11-libs/startup-notification-0.10 >=gnome-extra/gnome-user-docs-2.32.0 >=gnome-extra/yelp-2.30.2 >=gnome-extra/zenity-2.32.1 >=net-analyzer/gnome-netstatus-2.28.2 >=net-analyzer/gnome-nettool-2.32.0 cdr? ( >=app-cdr/brasero-2.32.1 ) dvdr? ( >=app-cdr/brasero-2.32.1 ) >=gnome-extra/gtkhtml-3.32.1:3.14 >=mail-client/evolution-2.32.1-r1:2.0 >=gnome-extra/evolution-data-server-2.32.1-r1 >=gnome-extra/evolution-webcal-2.32.0 >=net-misc/vino-2.32.0 >=app-admin/pessulus-2.30.4 ldap? ( >=app-admin/sabayon-2.30.1 ) >=gnome-extra/gnome-screensaver-2.30.2 >=x11-misc/alacarte-0.13.2 >=gnome-extra/gnome-power-manager-2.32.0 >=net-misc/vinagre-2.30.3 >=gnome-extra/swfdec-gnome-2.30.1 accessibility? ( >=gnome-extra/libgail-gnome-1.20.3 >=gnome-extra/at-spi-1.32.0:1 >=app-accessibility/dasher-4.11 >=app-accessibility/gnome-mag-0.16.3:1 >=app-accessibility/gnome-speech-0.4.25:1 >=app-accessibility/gok-2.30.1:1 >=app-accessibility/orca-2.32.1 >=gnome-extra/mousetweaks-2.32.1 ) cups? ( >=app-admin/system-config-printer-gnome-1.3.3 ) mono? ( >=dev-dotnet/gtk-sharp-2.12.10:2 >=app-misc/tomboy-1.4.2 ) policykit? ( gnome-extra/polkit-gnome )
2.0

@ -1,5 +1,5 @@
>=x11-libs/gtk+-2.20:2 >=dev-libs/glib-2.22:2 >=gnome-base/gconf-2.8:2 >=gnome-base/gnome-panel-2.31.2[bonobo] >=x11-libs/libxklavier-4.0 >=x11-libs/libwnck-2.9.3:1 >=gnome-base/gnome-desktop-2.11.1:2 >=x11-libs/libnotify-0.3.2 >=sys-apps/dbus-1.1.2 >=dev-libs/dbus-glib-0.74 >=dev-libs/libxml2-2.5.0:2 >=x11-themes/gnome-icon-theme-2.15.91 >=dev-libs/libgweather-2.22.1:2 x11-libs/libX11 gnome? ( gnome-base/gnome-settings-daemon gnome-base/libgnome >=gnome-extra/gucharmap-2.23 >=gnome-base/libgtop-2.11.92:2 >=dev-python/pygobject-2.6:2 >=dev-python/pygtk-2.6:2 >=dev-python/gconf-python-2.10:2 >=dev-python/gnome-applets-python-2.10 ) gstreamer? ( >=media-libs/gstreamer-0.10.2:0.10 >=media-libs/gst-plugins-base-0.10.14:0.10 || ( >=media-plugins/gst-plugins-alsa-0.10.14:0.10 >=media-plugins/gst-plugins-oss-0.10.14:0.10 ) ) networkmanager? ( >=net-misc/networkmanager-0.7.0 ) policykit? ( >=sys-auth/polkit-0.92 ) >=app-text/scrollkeeper-0.1.4 >=app-text/gnome-doc-utils-0.3.2 >=dev-util/pkgconfig-0.19 >=dev-util/intltool-0.35 dev-libs/libxslt ~app-text/docbook-xml-dtd-4.3 gnome-base/gnome-common >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
>=x11-libs/gtk+-2.20:2 >=dev-libs/glib-2.22:2 >=gnome-base/gconf-2.8:2 >=gnome-base/gnome-panel-2.31.2[bonobo] >=x11-libs/libxklavier-4.0 >=x11-libs/libwnck-2.9.3:1 >=gnome-base/gnome-desktop-2.11.1:2 >=x11-libs/libnotify-0.3.2 >=sys-apps/dbus-1.1.2 >=dev-libs/dbus-glib-0.74 >=dev-libs/libxml2-2.5.0:2 >=x11-themes/gnome-icon-theme-2.15.91 >=dev-libs/libgweather-2.22.1:2 x11-libs/libX11 gnome? ( gnome-base/gnome-settings-daemon gnome-base/libgnome >=gnome-extra/gucharmap-2.23 >=gnome-base/libgtop-2.11.92:2 >=dev-python/pygobject-2.6:2 >=dev-python/pygtk-2.6:2 >=dev-python/gconf-python-2.10:2 >=dev-python/gnome-applets-python-2.10 ) gstreamer? ( >=media-libs/gstreamer-0.10.2:0.10 >=media-libs/gst-plugins-base-0.10.14:0.10 || ( >=media-plugins/gst-plugins-alsa-0.10.14:0.10 >=media-plugins/gst-plugins-oss-0.10.14:0.10 ) ) networkmanager? ( >=net-misc/networkmanager-0.7.0 ) policykit? ( >=sys-auth/polkit-0.92 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=x11-libs/gtk+-2.20:2 >=dev-libs/glib-2.22:2 >=gnome-base/gconf-2.8:2 >=gnome-base/gnome-panel-2.31.2[bonobo] >=x11-libs/libxklavier-4.0 >=x11-libs/libwnck-2.9.3:1 >=gnome-base/gnome-desktop-2.11.1:2 >=x11-libs/libnotify-0.3.2 >=sys-apps/dbus-1.1.2 >=dev-libs/dbus-glib-0.74 >=dev-libs/libxml2-2.5.0:2 >=x11-themes/gnome-icon-theme-2.15.91 >=dev-libs/libgweather-2.22.1:2 <dev-libs/libgweather-2.91:2 x11-libs/libX11 gnome? ( gnome-base/gnome-settings-daemon gnome-base/libgnome >=gnome-extra/gucharmap-2.23 >=gnome-base/libgtop-2.11.92:2 >=dev-python/pygobject-2.6:2 >=dev-python/pygtk-2.6:2 >=dev-python/gconf-python-2.10:2 >=dev-python/gnome-applets-python-2.10 ) gstreamer? ( >=media-libs/gstreamer-0.10.2:0.10 >=media-libs/gst-plugins-base-0.10.14:0.10 || ( >=media-plugins/gst-plugins-alsa-0.10.14:0.10 >=media-plugins/gst-plugins-oss-0.10.14:0.10 ) ) networkmanager? ( >=net-misc/networkmanager-0.7.0 ) policykit? ( >=sys-auth/polkit-0.92 ) >=app-text/scrollkeeper-0.1.4 >=app-text/gnome-doc-utils-0.3.2 >=dev-util/pkgconfig-0.19 >=dev-util/intltool-0.35 dev-libs/libxslt ~app-text/docbook-xml-dtd-4.3 gnome-base/gnome-common >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
>=x11-libs/gtk+-2.20:2 >=dev-libs/glib-2.22:2 >=gnome-base/gconf-2.8:2 >=gnome-base/gnome-panel-2.31.2[bonobo] >=x11-libs/libxklavier-4.0 >=x11-libs/libwnck-2.9.3:1 >=gnome-base/gnome-desktop-2.11.1:2 >=x11-libs/libnotify-0.3.2 >=sys-apps/dbus-1.1.2 >=dev-libs/dbus-glib-0.74 >=dev-libs/libxml2-2.5.0:2 >=x11-themes/gnome-icon-theme-2.15.91 >=dev-libs/libgweather-2.22.1:2 <dev-libs/libgweather-2.91:2 x11-libs/libX11 gnome? ( gnome-base/gnome-settings-daemon gnome-base/libgnome >=gnome-extra/gucharmap-2.23 >=gnome-base/libgtop-2.11.92:2 >=dev-python/pygobject-2.6:2 >=dev-python/pygtk-2.6:2 >=dev-python/gconf-python-2.10:2 >=dev-python/gnome-applets-python-2.10 ) gstreamer? ( >=media-libs/gstreamer-0.10.2:0.10 >=media-libs/gst-plugins-base-0.10.14:0.10 || ( >=media-plugins/gst-plugins-alsa-0.10.14:0.10 >=media-plugins/gst-plugins-oss-0.10.14:0.10 ) ) networkmanager? ( >=net-misc/networkmanager-0.7.0 ) policykit? ( >=sys-auth/polkit-0.92 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
0
mirror://gnome/sources/gnome-applets/2.32/gnome-applets-2.32.1.1.tar.bz2

@ -1,5 +1,5 @@
>=gnome-base/gnome-desktop-2.26:2 >=x11-libs/pango-1.15.4[introspection?] >=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.22:2[introspection?] >=dev-libs/libgweather-2.27.90:2 dev-libs/libxml2:2 >=gnome-base/gconf-2.6.1:2[introspection?] >=media-libs/libcanberra-0.23[gtk] >=gnome-base/gnome-menus-2.27.92:0 gnome-base/librsvg:2 >=dev-libs/dbus-glib-0.80 >=sys-apps/dbus-1.1.2 >=x11-libs/cairo-1 x11-libs/libXau >=x11-libs/libXrandr-1.2 bonobo? ( >=gnome-base/libbonobo-2.20.4 >=gnome-base/libbonoboui-2.1.1 >=gnome-base/orbit-2.4 >=x11-libs/libwnck-2.19.5:1 ) eds? ( >=gnome-extra/evolution-data-server-1.6 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) networkmanager? ( >=net-misc/networkmanager-0.6.7 ) >=dev-lang/perl-5 >=app-text/gnome-doc-utils-0.3.2 >=dev-util/pkgconfig-0.9 >=dev-util/intltool-0.40 ~app-text/docbook-xml-dtd-4.1.2 doc? ( >=dev-util/gtk-doc-1 ) gnome-base/gnome-common dev-util/gtk-doc-am >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
>=gnome-base/gnome-desktop-2.26:2 >=x11-libs/pango-1.15.4[introspection?] >=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.22:2[introspection?] >=dev-libs/libgweather-2.27.90:2 dev-libs/libxml2:2 >=gnome-base/gconf-2.6.1:2[introspection?] >=media-libs/libcanberra-0.23[gtk] >=gnome-base/gnome-menus-2.27.92:0 gnome-base/librsvg:2 >=dev-libs/dbus-glib-0.80 >=sys-apps/dbus-1.1.2 >=x11-libs/cairo-1 x11-libs/libXau >=x11-libs/libXrandr-1.2 bonobo? ( >=gnome-base/libbonobo-2.20.4 >=gnome-base/libbonoboui-2.1.1 >=gnome-base/orbit-2.4 >=x11-libs/libwnck-2.19.5:1 ) eds? ( >=gnome-extra/evolution-data-server-1.6 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) networkmanager? ( >=net-misc/networkmanager-0.6.7 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=gnome-base/gnome-desktop-2.26:2 >=x11-libs/pango-1.15.4[introspection?] >=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.22:2[introspection?] >=dev-libs/libgweather-2.27.90:2 <dev-libs/libgweather-2.90.1:2 dev-libs/libxml2:2 >=gnome-base/gconf-2.6.1:2[introspection?] >=media-libs/libcanberra-0.23[gtk] >=gnome-base/gnome-menus-2.27.92:0 gnome-base/librsvg:2 >=dev-libs/dbus-glib-0.80 >=sys-apps/dbus-1.1.2 >=x11-libs/cairo-1 x11-libs/libXau >=x11-libs/libXrandr-1.2 bonobo? ( >=gnome-base/libbonobo-2.20.4 >=gnome-base/libbonoboui-2.1.1 >=gnome-base/orbit-2.4 >=x11-libs/libwnck-2.19.5:1 ) eds? ( >=gnome-extra/evolution-data-server-1.6 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) networkmanager? ( >=net-misc/networkmanager-0.6.7 ) >=dev-lang/perl-5 >=app-text/gnome-doc-utils-0.3.2 >=dev-util/pkgconfig-0.9 >=dev-util/intltool-0.40 ~app-text/docbook-xml-dtd-4.1.2 doc? ( >=dev-util/gtk-doc-1 ) gnome-base/gnome-common dev-util/gtk-doc-am >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
>=gnome-base/gnome-desktop-2.26:2 >=x11-libs/pango-1.15.4[introspection?] >=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.22:2[introspection?] >=dev-libs/libgweather-2.27.90:2 <dev-libs/libgweather-2.90.1:2 dev-libs/libxml2:2 >=gnome-base/gconf-2.6.1:2[introspection?] >=media-libs/libcanberra-0.23[gtk] >=gnome-base/gnome-menus-2.27.92:0 gnome-base/librsvg:2 >=dev-libs/dbus-glib-0.80 >=sys-apps/dbus-1.1.2 >=x11-libs/cairo-1 x11-libs/libXau >=x11-libs/libXrandr-1.2 bonobo? ( >=gnome-base/libbonobo-2.20.4 >=gnome-base/libbonoboui-2.1.1 >=gnome-base/orbit-2.4 >=x11-libs/libwnck-2.19.5:1 ) eds? ( >=gnome-extra/evolution-data-server-1.6 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) networkmanager? ( >=net-misc/networkmanager-0.6.7 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
0
mirror://gnome/sources/gnome-panel/2.32/gnome-panel-2.32.1.tar.bz2 mirror://gentoo/introspection-20110205.m4.tar.bz2

@ -1,5 +1,5 @@
>=gnome-base/gnome-desktop-2.26:2 >=x11-libs/pango-1.15.4[introspection?] >=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.22:2[introspection?] >=dev-libs/libgweather-2.27.90:2 dev-libs/libxml2:2 >=gnome-base/gconf-2.6.1:2[introspection?] >=media-libs/libcanberra-0.23[gtk] >=gnome-base/gnome-menus-2.27.92:0 gnome-base/librsvg:2 >=dev-libs/dbus-glib-0.80 >=sys-apps/dbus-1.1.2 >=x11-libs/cairo-1 x11-libs/libXau >=x11-libs/libXrandr-1.2 bonobo? ( >=gnome-base/libbonobo-2.20.4 >=gnome-base/libbonoboui-2.1.1 >=gnome-base/orbit-2.4 >=x11-libs/libwnck-2.19.5:1 ) eds? ( >=gnome-extra/evolution-data-server-1.6 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) networkmanager? ( >=net-misc/networkmanager-0.6.7 ) >=dev-lang/perl-5 >=app-text/gnome-doc-utils-0.3.2 >=dev-util/pkgconfig-0.9 >=dev-util/intltool-0.40 ~app-text/docbook-xml-dtd-4.1.2 doc? ( >=dev-util/gtk-doc-1 ) gnome-base/gnome-common dev-util/gtk-doc-am >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
>=gnome-base/gnome-desktop-2.26:2 >=x11-libs/pango-1.15.4[introspection?] >=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.22:2[introspection?] >=dev-libs/libgweather-2.27.90:2 dev-libs/libxml2:2 >=gnome-base/gconf-2.6.1:2[introspection?] >=media-libs/libcanberra-0.23[gtk] >=gnome-base/gnome-menus-2.27.92:0 gnome-base/librsvg:2 >=dev-libs/dbus-glib-0.80 >=sys-apps/dbus-1.1.2 >=x11-libs/cairo-1 x11-libs/libXau >=x11-libs/libXrandr-1.2 bonobo? ( >=gnome-base/libbonobo-2.20.4 >=gnome-base/libbonoboui-2.1.1 >=gnome-base/orbit-2.4 >=x11-libs/libwnck-2.19.5:1 ) eds? ( >=gnome-extra/evolution-data-server-1.6 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) networkmanager? ( >=net-misc/networkmanager-0.6.7 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=gnome-base/gnome-desktop-2.26:2 >=x11-libs/pango-1.15.4[introspection?] >=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.22:2[introspection?] >=dev-libs/libgweather-2.27.90:2 <dev-libs/libgweather-2.90.1:2 dev-libs/libxml2:2 >=gnome-base/gconf-2.6.1:2[introspection?] >=media-libs/libcanberra-0.23[gtk] >=gnome-base/gnome-menus-2.27.92:0 gnome-base/librsvg:2 >=dev-libs/dbus-glib-0.80 >=sys-apps/dbus-1.1.2 >=x11-libs/cairo-1 x11-libs/libXau >=x11-libs/libXrandr-1.2 bonobo? ( >=gnome-base/libbonobo-2.20.4 >=gnome-base/libbonoboui-2.1.1 >=gnome-base/orbit-2.4 >=x11-libs/libwnck-2.19.5:1 ) eds? ( >=gnome-extra/evolution-data-server-1.6 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) networkmanager? ( >=net-misc/networkmanager-0.6.7 ) >=dev-lang/perl-5 >=app-text/gnome-doc-utils-0.3.2 >=dev-util/pkgconfig-0.9 >=dev-util/intltool-0.40 ~app-text/docbook-xml-dtd-4.1.2 doc? ( >=dev-util/gtk-doc-1 ) gnome-base/gnome-common dev-util/gtk-doc-am >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
>=gnome-base/gnome-desktop-2.26:2 >=x11-libs/pango-1.15.4[introspection?] >=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.22:2[introspection?] >=dev-libs/libgweather-2.27.90:2 <dev-libs/libgweather-2.90.1:2 dev-libs/libxml2:2 >=gnome-base/gconf-2.6.1:2[introspection?] >=media-libs/libcanberra-0.23[gtk] >=gnome-base/gnome-menus-2.27.92:0 gnome-base/librsvg:2 >=dev-libs/dbus-glib-0.80 >=sys-apps/dbus-1.1.2 >=x11-libs/cairo-1 x11-libs/libXau >=x11-libs/libXrandr-1.2 bonobo? ( >=gnome-base/libbonobo-2.20.4 >=gnome-base/libbonoboui-2.1.1 >=gnome-base/orbit-2.4 >=x11-libs/libwnck-2.19.5:1 ) eds? ( >=gnome-extra/evolution-data-server-1.6 ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) networkmanager? ( >=net-misc/networkmanager-0.6.7 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
0
mirror://gnome/sources/gnome-panel/2.32/gnome-panel-2.32.1.tar.bz2 mirror://gentoo/introspection-20110205.m4.tar.bz2 http://dev.gentoo.org/~pacho/gnome/gnome-panel-2.32.1-patches.tar.bz2

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

Loading…
Cancel
Save