Sync with portage [Mon Jan 27 15:55:49 MSK 2014].

mhiretskiy
root 10 years ago
parent f7b4b5497f
commit aa66708146

@ -1,2 +1 @@
DIST lbzip2-2.2.tar.gz 622154 SHA256 b905f763a5859670e36b15d016fb6bb73d6718905fc0e2a9fa1dbc11f30b0d80 SHA512 9b194eee262e44d4665d97307f73f20075c301c2a8fbc0f989805359645387bb3ad0a6b7507edc5463a017eaf7002ee177e9fc00cf808c02c7a9c16e7b58b918 WHIRLPOOL 241c6cf473171be56b94efdc152eecb15482977ed47cb46ed47dad641bca9f73d7ec52f13947677aa619387707d5d17f7fa3421f9bc83fc28ced9e7c49b607d1
DIST lbzip2-2.3.tar.gz 630226 SHA256 d3110a2b9e19da277dec899f7a3f435cc130a518f6a43094ec4e31ca15f93eaa SHA512 4f694445cc90377bf8dac5046b952ff174db571f390c2d7b0aa001f73c76f3d3f048ff8e7297c2055ed1f7b210174496dc31d6628e1cbeff63146a36a442ad4c WHIRLPOOL 781c9e07eccb633eeb713a9e4f821e0a75102e182d6a6ea4dfba7e33aa96afbfd92fdd5d0e9818ec4c41cf86733fe0396bb42071aad7a47c5e4cdd6426812527

@ -1,107 +0,0 @@
From 57eeee36927f8a40ece1ca06c674e0bd56d0f21f Mon Sep 17 00:00:00 2001
Message-Id: <57eeee36927f8a40ece1ca06c674e0bd56d0f21f.1358019732.git.jlec@gentoo.org>
From: Mikolaj Izdebski <zurgunt@gmail.com>
Date: Sat, 20 Oct 2012 18:37:17 +0200
Subject: [PATCH] Fix assertion failure, closes #8
src/encode.c (generate_initial_trees): Rewrite from scratch.
---
src/encode.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++-------------
1 file changed, 48 insertions(+), 13 deletions(-)
diff --git a/src/encode.c b/src/encode.c
index 09cfacc..00a78dc 100644
--- a/src/encode.c
+++ b/src/encode.c
@@ -763,40 +763,75 @@ assign_codes(uint32_t C[], uint32_t L[], uint8_t B[], uint32_t n)
/* Create initial mapping of symbols to trees.
- The goal is to divide all as symbols [0,as) into nt equivalence classes
+ The goal is to divide all as symbols [0,as) into nt equivalence classes (EC)
[0,nt) such that standard deviation of symbol frequencies in classes is
minimal. We use a kind of a heuristic to achieve that. There might exist a
better way to achieve that, but this one seems to be good (and fast) enough.
If the symbol v belongs to the equivalence class t then set s->length[t][v]
to zero. Otherwise set it to 1.
-
- TODO: This piece of code really needs some R&D...
*/
static void
generate_initial_trees(struct encoder_state *s, unsigned nm, unsigned nt)
{
- unsigned a, b, c, t;
-
- /* Equivalence classes are empty. */
+ unsigned a, b; /* range [a,b) of symbols forming current EC */
+ unsigned freq; /* symbol frequency */
+ unsigned cum; /* cumulative frequency */
+ unsigned as; /* effective alphabet size (alphabet size minus number
+ of symbols with frequency equal to zero) */
+ unsigned t; /* current tree */
+
+ /* Equivalence classes are initially empty. */
memset(s->length, 1, sizeof(s->length));
+ /* Determine effective alphabet size. */
+ as = 0;
+ for (a = 0, cum = 0; cum < nm; a++) {
+ freq = s->lookup[0][a];
+ cum += freq;
+ as += min(freq, 1);
+ }
+ assert(cum == nm);
+
+ /* Bound number of EC by number of symbols. Each EC is non-empty, so number
+ of symbol EC must be <= number of symbols. */
+ nt = min(nt, as);
+
/* For each equivalence class: */
- for (a = 0, t = 0; t < nt; t++) {
+ a = 0;
+ for (t = 0; nt > 0; t++, nt--) {
+ assert(nm > 0);
+ assert(as >= nt);
+
/* Find a range of symbols which total count is roughly proportional to one
nt-th of all values. */
- for (c = 0, b = a; c * (nt-t) < nm; b++)
- c += s->lookup[0][b];
- assert(a < b);
- if (a < b-1 && (2*c - s->lookup[0][b-1]) * (nt-t) > 2*nm) {
- c -= s->lookup[0][--b];
+ freq = s->lookup[0][a];
+ cum = freq;
+ as -= min(freq, 1);
+ b = a+1;
+ while (as > nt-1 && cum * nt < nm) {
+ freq = s->lookup[0][b];
+ cum += freq;
+ as -= min(freq, 1);
+ b++;
}
- nm -= c;
+ if (cum > freq && (2*cum - freq) * nt > 2*nm) {
+ cum -= freq;
+ as += min(freq, 1);
+ b--;
+ }
+ assert(a < b);
+ assert(cum > 0);
+ assert(cum <= nm);
+ assert(as >= nt-1);
+ Trace(("Tree %u: EC=[%3u,%3u), |EC|=%3u, cum=%6u", t, a, b, b-a, cum));
/* Now [a,b) is our range -- assign it to equivalence class t. */
bzero(&s->length[t][a], b - a);
a = b;
+ nm -= cum;
}
+ assert(as == 0);
assert(nm == 0);
}
--
1.8.1

@ -1,16 +0,0 @@
src/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/main.c b/src/main.c
index f030fd5..5f8290e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -702,7 +702,7 @@ input_init(const struct arg *operand, struct stat *sbuf)
return -1;
}
- if (!S_ISREG(sbuf->st_mode)) {
+ if (!decompress && !S_ISREG(sbuf->st_mode)) {
warn("skipping \"%s\": not a regular file", operand->val);
return -1;
}

@ -1,38 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/lbzip2/lbzip2-2.2-r1.ebuild,v 1.12 2013/06/02 08:37:27 ago Exp $
EAPI=4
inherit autotools-utils
DESCRIPTION="Parallel bzip2 utility"
HOMEPAGE="https://github.com/kjn/lbzip2/"
SRC_URI="mirror://github/kjn/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug symlink"
PATCHES=(
"${FILESDIR}"/${P}-s_isreg.patch
"${FILESDIR}"/${P}-assertion.patch
)
RDEPEND="symlink? ( !app-arch/pbzip2[symlink] )"
DEPEND=""
src_configure() {
local myeconfargs=(
--disable-silent-rules
$(use_enable debug tracing)
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
use symlink && dosym ${PN} /usr/bin/bzip2
}

@ -1,35 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/lbzip2/lbzip2-2.3.ebuild,v 1.1 2013/09/23 11:18:45 jlec Exp $
EAPI=5
inherit autotools-utils
DESCRIPTION="Parallel bzip2 utility"
HOMEPAGE="https://github.com/kjn/lbzip2/"
SRC_URI="http://archive.lbzip2.org/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug symlink"
PATCHES=( "${FILESDIR}"/${P}-s_isreg.patch )
RDEPEND="symlink? ( !app-arch/pbzip2[symlink] )"
DEPEND=""
src_configure() {
local myeconfargs=(
--disable-silent-rules
$(use_enable debug tracing)
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
use symlink && dosym ${PN} /usr/bin/bzip2
}

@ -1,5 +1,5 @@
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
@ -8,7 +8,11 @@ depend() {
}
start() {
[ -x /run/xen ] || mkdir -p /run/xen
# create dir dynamically
for i in /var/lock/subsys /run/xen /run/xend/boot /run/xenstored; do
[ -x $i ] || mkdir -p $i
done
ebegin "Starting xenstored daemon"
start-stop-daemon --start --exec /usr/sbin/xenstored \
--pidfile /run/xenstored.pid \

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.2.2-r5.ebuild,v 1.2 2013/11/09 08:14:57 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.2.2-r5.ebuild,v 1.3 2014/01/27 08:58:09 dlan Exp $
EAPI=5
@ -241,6 +241,17 @@ src_prepare() {
# Bug 379537
epatch "${FILESDIR}"/fix-gold-ld.patch
# fix QA warning, create /var/run/, /var/lock dynamically
sed -i -e "/\$(INSTALL_DIR) \$(DESTDIR)\$(XEN_RUN_DIR)/d" \
tools/libxl/Makefile || die
sed -i -e "/\/var\/run\//d" \
tools/xenstore/Makefile \
tools/pygrub/Makefile || die
sed -i -e "/\/var\/lock\/subsys/d" \
tools/Makefile || die
epatch_user
}
@ -327,7 +338,7 @@ src_install() {
fi
# xend expects these to exist
keepdir /var/run/xenstored /var/lib/xenstored /var/xen/dump /var/lib/xen /var/log/xen
keepdir /var/lib/xenstored /var/xen/dump /var/lib/xen /var/log/xen
# for xendomains
keepdir /etc/xen/auto

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.3.1-r3.ebuild,v 1.4 2013/12/22 12:01:08 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.3.1-r3.ebuild,v 1.5 2014/01/27 08:58:09 dlan Exp $
EAPI=5
@ -238,6 +238,17 @@ src_prepare() {
sed -e 's:bl->argsspace = 7 + :bl->argsspace = 9 + :' \
-i tools/libxl/libxl_bootloader.c || die
# fix QA warning, create /var/run/, /var/lock dynamically
sed -i -e "/\$(INSTALL_DIR) \$(DESTDIR)\$(XEN_RUN_DIR)/d" \
tools/libxl/Makefile || die
sed -i -e "/\/var\/run\//d" \
tools/xenstore/Makefile \
tools/pygrub/Makefile || die
sed -i -e "/\/var\/lock\/subsys/d" \
tools/Makefile || die
epatch_user
}

@ -1,2 +1,2 @@
DIST LanguageTool-2.1.oxt 34648024 SHA256 ea3c7bf3134c28e75ecbb55a33149370f0234606b4be4acc5c54fc40cf462e32 SHA512 ab7abaa3138177e0def81737d9db361b2ff995be484a6883e3186e481743032aba0eec38d2e2cb2299b297feea0afdb0c56aa8b4b464dd21c4dc6bc5aaf69b10 WHIRLPOOL b3d595aa951a5962c3f88ba7a9bd6272ce95449fea8edce36a05b00b16dff38edb8133dcdd418d19d89168f0977a832fc04e36deec01bb8e31f6aaeaa021ffcc
DIST LanguageTool-2.2.oxt 35760989 SHA256 2a34804e7d4851646736e05853bcb2e5cc5ad60c7ab2e970efd326f5906ca738 SHA512 9d0f8ebd213b7fcbcad0aa2f87bfaf53ee829925fced9fad0cdc9cdc07772980cbf90a21ea712a81daac8e2e8ba16c062b7756719f33a47b4e2d8d10766f80d2 WHIRLPOOL be03789be5c3454a270cfb0cd37bd661ef76f44765bf18034d337398d60104f74375077af14995863ad0ee8b37f327bc2e457e58e1a3f9c77433870fecf8b95b
DIST LanguageTool-2.4.oxt 46832353 SHA256 3b52138e25da54ee184603755317bc093da0f527ce6eecd2edff760af3bd0bdd SHA512 1bc1852ee2c418c584e583c17d4cb5619e52735d2e834015f3ede788e7df7b60c4ad6cd6dea4eb6dcef5706409924ab783821df18bbe7bdde356ce90cf62ee6c WHIRLPOOL e93a6a9a4b5c33ce46d143cdb273995b7927c69291d99f6b1dfae6057b75c0f0344d1489ad886eae9aa389c2f35a374a756126be29db698023fbea400d54224e

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-officeext/languagetool/languagetool-2.2.ebuild,v 1.1 2013/09/15 11:09:34 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-officeext/languagetool/languagetool-2.2.ebuild,v 1.2 2014/01/27 09:38:20 scarabeus Exp $
EAPI=5
@ -20,5 +20,5 @@ SRC_URI="http://www.languagetool.org/download/${MY_P}.oxt"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-officeext/languagetool/languagetool-2.1.ebuild,v 1.2 2013/09/15 11:09:34 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-officeext/languagetool/languagetool-2.4.ebuild,v 1.1 2014/01/27 09:38:20 scarabeus Exp $
EAPI=5
@ -20,5 +20,7 @@ SRC_URI="http://www.languagetool.org/download/${MY_P}.oxt"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=virtual/jdk-1.7"

@ -1,3 +1,4 @@
DIST parrot-5.10.0.tar.gz 4595044 SHA256 417d504ccf557528d179c9f25df4f8430d5ec1e703ea63126d722452bfd38be3 SHA512 abd627545f85e42a9d20e13f73ef30595cea6ad252b1fd6d06982ec9afb0534520affc99a77bd2d648deb4090a22c818b03e30b5c5a7f99041da5b1776025f33 WHIRLPOOL 0f5b1fa6c4accea9ba6836b2be2db7478d61bf6f3f7d533e4aadb1cfc074547d08d8d506616d8f5d1216d8b2a2db92072476bd883e56eb828a8a606c6103bace
DIST parrot-5.6.0.tar.gz 4597748 SHA256 8e2d2ddaff36c2c960236c94f868f0eea28740e306345ee42df84bcd9aa146a6 SHA512 27823099bbcd75da56d7485da546f1baa6838322747c20cd79d6dce6bc32e10b0a84b299f7422031653e6a5adc04b4bda4d1f0209d45ab2ec50d55d64f82116b WHIRLPOOL 44f49a8b28451443cda75474ca17cea4075bd3c0d78a8d4caf198e3a79690c3d6271cb5c12db990df190fd5a0e6698c0da6332c55d6160cdf723947e6d2a6839
DIST parrot-5.7.0.tar.gz 4604326 SHA256 0d07c210a8b90d368cde600351173b8c90a28d376379836ba36edf83acf7a21f SHA512 6db01c4c092f64cb7dbaab99972ddcea73183bbca18a9005871992ca57035d0adca5408af944e40e84095cc35badc6ebf611177fc3d73112577a2f1b7745de75 WHIRLPOOL dac3f775d67fc4f6c3baffc0e8d5176f7466827e19b2a96e0f3ae8ac6e0ecce5de7aa66a93e0265ed8867341169f0bc332501b05bf3fa251f35be2dd2a8663e1
DIST parrot-6.0.0.tar.gz 4592131 SHA256 e150d4c5a3f12ae9d300f019bf03cca58d8e8051dd0b934222b4e4c91160cd54 SHA512 763f390948581e00cfc4bfec46bdc0ef19052c98db35fbf515a7ad2315e96db2f7a537fb0918e6edf16eb620b415d6bf14100f2a46de80893c9850c20509e81c WHIRLPOOL da676a49e7c4ebdf40ddc17387d7c7e6502a531816a7851c3fc46976da97ecd2aa817d3950cf77005d4d0d47283d58efc090f3f44c237f5e410b4ac391cc408f

@ -0,0 +1,87 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.0.0.ebuild,v 1.1 2014/01/27 05:40:13 patrick Exp $
EAPI=3
inherit eutils multilib
# weird failures
RESTRICT="test"
DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages"
HOMEPAGE="http://www.parrot.org/"
SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/supported/${PV}/${P}.tar.gz"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre"
RDEPEND="sys-libs/readline
opengl? ( media-libs/freeglut )
nls? ( sys-devel/gettext )
unicode? ( >=dev-libs/icu-2.6 )
gdbm? ( >=sys-libs/gdbm-1.8.3-r1 )
gmp? ( >=dev-libs/gmp-4.1.4 )
ssl? ( dev-libs/openssl )
pcre? ( dev-libs/libpcre )
doc? ( dev-perl/JSON )"
DEPEND="dev-lang/perl[doc?]
${RDEPEND}"
src_prepare() {
# Fix perldoc sandbox madness
epatch "${FILESDIR}/perldoc-5.10.patch" || die
}
src_configure() {
myconf="--disable-rpath"
use unicode || myconf+=" --without-icu"
use ssl || myconf+=" --without-crypto"
use gdbm || myconf+=" --without-gdbm"
use nls || myconf+=" --without-gettext"
use gmp || myconf+=" --without-gmp"
use opengl || myconf+=" --without-opengl"
use pcre || myconf+=" --without-pcre"
perl Configure.pl \
--ccflags="${CFLAGS}" \
--linkflags="${LDFLAGS}" \
--prefix="${EPREFIX}"/usr \
--libdir="${EPREFIX}"/usr/$(get_libdir) \
--mandir="${EPREFIX}"/usr/share/man \
--sysconfdir="${EPREFIX}"/etc \
--sharedstatedir="${EPREFIX}"/var/lib/parrot \
$myconf || die
}
src_compile() {
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib
# occasionally dies in parallel make
emake -j1 || die
if use doc ; then
emake -j1 html || die
fi
}
src_test() {
emake -j1 test || die
}
src_install() {
emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die
dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die
if use examples; then
insinto "/usr/share/doc/${PF}/examples"
doins -r examples/* || die
fi
if use doc; then
insinto "/usr/share/doc/${PF}/editor"
doins -r editor || die
cd docs/html
dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \
pmc.html tools.html docs src tools || die
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/crypto++/crypto++-5.6.2-r1.ebuild,v 1.3 2014/01/14 20:30:35 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/crypto++/crypto++-5.6.2-r1.ebuild,v 1.4 2014/01/27 07:23:01 jer Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/cryptopp/cryptopp${PV//.}.zip"
LICENSE="Boost-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
KEYWORDS="~alpha ~amd64 ~arm hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
IUSE="static-libs"
DEPEND="app-arch/unzip

@ -1,16 +1,3 @@
DIST libmemcached-0.22.tar.gz 409086 SHA256 fe50b085f915bb4203ec94a83c3208a24340b1cdc31bdfe13cafcdcfc741995d SHA512 bcfac6d3d126d9f0418908cca0d4c397b0de0c1dbd4eff47be37c40b4c02a568bc2d1bbe2accafc4f7691b81aaed05d9392a60fc5116179538b858d5887a5d44 WHIRLPOOL 73383acd790d1a491a7eb03f9e1e506502a557b25f31349daa3f667fdb3de27875a9b0dea279a66e0f1abc82cdfe9f7b298b3724ee31dc4ddb60006d4d96d2e7
DIST libmemcached-0.25.tar.gz 430174 SHA256 b55c554b5ba38e88637311c3fa332b5166514f9829b39345d1a1cf79f4b342f1 SHA512 93c773869a702059b34d00d106811b012608766bbe664a57368d7d2865ba2b337841adc23c3da5758076c5324b665504c7322909720deb343f75e902294f79e9 WHIRLPOOL 12dd60a36ea0fb162a5bde114744db43ba2f38595b7461daad3cabf3a483f90c04f88c222b44f02e1b9f02ea52ceeeb51ac14c2b7994ff755c02156f49f22db4
DIST libmemcached-0.26.tar.gz 443639 SHA256 aac6bdbe1cea98aa6fbcc3c6d7339180d96932b718a4a387aefbb56249a85cda SHA512 a1e58eea1a387cc81e677e0b0fd726080a80ca20756703d7a4e93849ce1b023c0ecbbd7400e7458b60732363f0ba0908f4114db159774f4f83c4834998924d01 WHIRLPOOL 5306ad0535748e6b15b178a95e293ad8d2b4033d9bb21589995f572b1e6602ef7251d584b14c10753ef91c8c4507809e0fdbee5801b7c70c45fd602a0fe985a7
DIST libmemcached-0.28.tar.gz 449919 SHA256 f0087fd05eded2247ca74d03eef26f9bfab3e165d02279d92f7bc22dd8da1bf4 SHA512 3bef3e7c7b57e77253fd1c8553592fa6638291f27442e8c5f29674fd7dcf73638820ef6c201e5acf77a86e8256db557752eebb41578794127bdece6852a4b402 WHIRLPOOL f95faee53061b3506f71c972af43e9dfeeebade1befae93a6162fa18459421aa01590281d50a35ca7345e646ae8a8c2f233ecc170db126737e7ffd7f23734253
DIST libmemcached-0.30.tar.gz 475185 SHA256 c6ec03b82b228daa5eba21b288741b8b768267bd5495a11975d8036f2affcd2d SHA512 3be2fae613548d2ea990a2c639dcab852a42beda1efc9aaaaaf7f02221cc85c31f5f7b41045be5289ea373e80a2af9a24739dae0044cc1b6196c4d37f8d2740d WHIRLPOOL 8f8773fd2bc4ac0ee9f764419e7622722e585719a64b99a4de04e7b135cd5f3141e9ea3ac704e0cec899dfbb0d3b9433ccbbe73ce5750c1669ef576b17fbdffc
DIST libmemcached-0.31.tar.gz 507156 SHA256 3999ee0c5950b19262db1057d6def676ff8bbf2efbae1df1e8a52dcbb4160e52 SHA512 3ffbbae7e9e18366c40f040b330c31229c4d3ae096348d4a366bb3b78cc17d5cb3e78f6a3dd8f95c0dbc08918bece225e1ae0b83acb9d0a67657690988297325 WHIRLPOOL 2ca2e5b4de198aff03c60e3380fdcbfeb4d8fc6572ae360e6c7f40ec6bb3bdfa48948093485cd8f8b9f564b7175eb8497af0b53748ba3ddea338ff10e2a3579b
DIST libmemcached-0.34.tar.gz 578845 SHA256 21439beba61c315c6ce8e2767fa3711ee889b63b850cd39be79049694ac3ee70 SHA512 d3df4c2a964b0d8530d0923c05c6e033351436d68c170b6cf31f95cef4a08f796fbff1d0cc05064b983c66d7d337e001719f60faab4c1598c9b55b5d84993cfe WHIRLPOOL bd0e706f67e4103f12421a1f4a5c906c5302ff7a796dbf4a4fd54bf053f78b16377afdc2b83e0b98a31d1b344a910b0cd271bdf9baa9a642394b74b2d25a42b0
DIST libmemcached-0.35.tar.gz 586058 SHA256 aeb08e334eb9f51d56a93119285f997c5f4fccc435be162e828ddb9fe65a5bb7 SHA512 6b9c839d33f2ae79a167a40d76f2dec1a12aab585713b04779e52550c1fb9a2206ad0bfb64e7b11559d1a1641e552a49902749bc61966e30b4c21b32cd824c6c WHIRLPOOL f8c39f000b026ffaeadbde72c4426fd47749457731bade1762d40d82eb36be09c6f58cff10ee75ec28cab1c0a4962340b9258683892b15e3423b0b5528b14846
DIST libmemcached-0.37.tar.gz 661959 SHA256 a10a0a4403f62591256cea838c5e40bd85f99bb798e0b3f5ff06a69249ad8da8 SHA512 91591c2db18a33695648b576054ecae203414eb9d199678d5648fcabaea7661a558ae794053934e5c0cb58e112750755232f95c78833038514e2ecb35e6ef1e9 WHIRLPOOL 487b3d32be00a6797e4156bf5ec9dd6f371f460654c97a059b6db98c4f89583e6a05e561ade242eb1637f5713f7e905347b18ab447e871f9dac4439b667476f2
DIST libmemcached-0.38.tar.gz 665073 SHA256 2c1ae3c05a70d518815c0220d3f0c3cf751371a32c95a2d36caf1a78ee63807a SHA512 f4f8a9dbb00eb3443ce88e91ee78d854a26d69373ec9fc4aa207a3d79c52f4f8752dcca83c5ded7700568caa805c8f54ee820a72e6a6017fb175b27de6fcdc40 WHIRLPOOL 1ae624afa9bc8f126b4a8e77cc0a290ab8f9f4ff49b26f434f576c8279f6898e7d445a7c89b6044c0743edeb7f239ad3e8b790e50f1bbeeb3fa8686551b84b32
DIST libmemcached-0.39.tar.gz 680742 SHA256 e604ba18d73817c6d449ac4834c223d0aec3f640e9a7efef72e2368a09c4497c SHA512 9ef5b2a45e21f395f181e0c57bc69d8a9ebe6ad8f8099ede48b00b6588438c9c9e33fdebd025983c2b233cab89d10820b349ca69b3f1c96bd84ccdde344928f4 WHIRLPOOL cac56fc772a5c49be2aa08c8edad714655d98980dc94285b57ed1f09b29434cfcf9a01dc1721e7780432b687d63332d02b7acaa4f8d5d949843cb0352c9cb339
DIST libmemcached-0.50.tar.gz 884272 SHA256 d3ed82f9c5cdfa816047ed6b7475b5708f9040b5cf3d9e2aed55de235e8b2f9a SHA512 f06a17b365779eb8fb0c94982e5141643ed17f91e5137565ff756912cf96b3f68b11a643f84d0cba1b474411f16a64086cc311ac5cea4bc3792da81b40d423b7 WHIRLPOOL fc1d3107772a45e844764c570261ccd2556ff11b770377c84788cc3d8a8ee946a8e5b3527c21e70c1c5aa1d9493270d9079f8a75cd5387835ccd7def1cab0f9e
DIST libmemcached-1.0.11.tar.gz 1032089 SHA256 d1bf75110fa9220c0c2287e6fc81ce70b83d91453ce09120553f8f531ffd2137 SHA512 96e0c02e2260930ff704cc600e6a400159af913f2c263beb25bfba169b6ec94bc199344ddc1929323af287f9a97431236c5f0684e3b4c8f3164a86c823bbe510 WHIRLPOOL 94e0c5064adf95b6b1b9f8d5534624bfb4543873839c50276c304a526ac6d7c614ae8792c911b974f499bf760547bee7c0c1747d66e9ad03e27aaf7497e06f3c
DIST libmemcached-1.0.14.tar.gz 1000929 SHA256 32eaea2c4b8965a12bd33fe1af043d7e20b7ec64977937973a3d97514f1e946b SHA512 4c0371cc4752eeee94baad6063b2413f096b5050166ce761ac26080559537dab32b69131a97703fdebf8f4886520d4bc29c7d4d8d1df6d0d681c81b88354c15b WHIRLPOOL be3760f75a6de33687272b5bf7be950edb0a3f96184c7f8f7e1cb47ff85479ea76c277f298d36f21a5f15c1ce8e04a0714f1bf73700711842bb4c0841959674a
DIST libmemcached-1.0.17.tar.gz 1023177 SHA256 7bb27b2589400f918df1cf5002cb01ef7ccac6e23f818604e2386de62c80bba5 SHA512 7cc2a836524a628f4617bad12e8ea3b0192a3f8530a3588a076daac56b3e773d7d36823091a81d6447da9fe9d017849c59dbbcc65190ff9817bb985dc6c11a3b WHIRLPOOL 34b57811750667bca59efa5a4356a15dd2bd0135534c1d157df4b3d9ff3575db1848f363914ee1b6b606a45dae3145985c791f11ae5890a7493207cb2e9eb3b4
DIST libmemcached-1.0.4.tar.gz 951310 SHA256 1dd0a9fb5823aa6f8337a3beaeb287bb92041005c136622b4d82622a9428e20c SHA512 254c3f0a1fcba68edd2a78953a6eb5053256ff8ab408a2167d495fc8c18ffbb347f1dc77218327fcf1ad81ee24d2fdec0a1e8de556ac6626dacfffbd4a905347 WHIRLPOOL 65d3b98f31849e2aed6378c9c6f82f085a7cac83e5b37f504023729deb4648f3d73da11a6a68a1d8c430660920a8750af3ab97b5e73f86487ca9c73bc9f8cb0a

@ -0,0 +1,183 @@
Description: Fix compilation with gcc-4.8
This patch fixes the error flags made incompatible with gcc-4.8:
g++: error: -fsanitize=address is incompatible with -fsanitize=thread
Author: Brian Aker
Last-Update: 2013-06-14
Bug: https://bugs.launchpad.net/libmemcached/+bug/1164442
--- a/libtest/run.gdb 2012-03-26 01:08:09 +0000
+++ b/libtest/run.gdb 2013-04-10 05:25:24 +0000
@@ -1,5 +1,6 @@
set logging on
set logging overwrite on
set environment LIBTEST_IN_GDB=1
+set ASAN_OPTIONS=abort_on_error=1
run
thread apply all bt
--- a/m4/ax_harden_compiler_flags.m4 2013-02-12 05:44:21 +0000
+++ b/m4/ax_harden_compiler_flags.m4 2013-04-10 05:25:24 +0000
@@ -53,7 +53,7 @@
# ? _APPEND_COMPILE_FLAGS_ERROR([-Wlong-long]) -- Don't turn on for
# compatibility issues memcached_stat_st
-#serial 8
+#serial 9
AC_DEFUN([_WARNINGS_AS_ERRORS],
[AC_CACHE_CHECK([if all warnings into errors],[ac_cv_warnings_as_errors],
@@ -92,9 +92,12 @@
_APPEND_COMPILE_FLAGS_ERROR([-H])
_APPEND_COMPILE_FLAGS_ERROR([-ggdb])
_APPEND_COMPILE_FLAGS_ERROR([-g])
- _APPEND_COMPILE_FLAGS_ERROR([-O0])],
- [_APPEND_COMPILE_FLAGS_ERROR([-g])
- _APPEND_COMPILE_FLAGS_ERROR([-O2])])
+ _APPEND_COMPILE_FLAGS_ERROR([-O0]),
+ _APPEND_COMPILE_FLAGS_ERROR([-fno-omit-frame-pointer])
+ ],[
+ _APPEND_COMPILE_FLAGS_ERROR([-g])
+ _APPEND_COMPILE_FLAGS_ERROR([-O2])
+ ])
AS_IF([test "x$ac_cv_vcs_checkout" = xyes],
[_APPEND_COMPILE_FLAGS_ERROR([-fstack-check])
@@ -155,26 +158,31 @@
_APPEND_COMPILE_FLAGS_ERROR([-Wundef])
_APPEND_COMPILE_FLAGS_ERROR([-Wunsafe-loop-optimizations])
_APPEND_COMPILE_FLAGS_ERROR([-funsafe-loop-optimizations])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=address])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=integer])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=thread])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=memory])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=alignment])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=bool])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=bounds])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=enum])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=float-cast-overflow])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=float-divide-by-zero])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=integer-divide-by-zero])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=null])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=object-size])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=return])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=shift])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=signed-integer-overflow])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=unreachable])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=unsigned-integer-overflow])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=vla-bound])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=vptr])
+ AS_IF([test "x$ac_cv_vcs_checkout" = xyes],[
+ _APPEND_COMPILE_FLAGS_ERROR([-fno-omit-frame-pointer])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=address])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=integer])
+ AS_IF([test "x$enable_shared" = "xyes"],[
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=thread])
+ ])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=memory])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=alignment])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=bool])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=bounds])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=enum])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=float-cast-overflow])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=float-divide-by-zero])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=integer-divide-by-zero])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=null])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=object-size])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=return])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=shift])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=signed-integer-overflow])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=unreachable])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=unsigned-integer-overflow])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=vla-bound])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=vptr])
+ ])
_APPEND_COMPILE_FLAGS_ERROR([-Wclobbered])
_APPEND_COMPILE_FLAGS_ERROR([-Wunused])
_APPEND_COMPILE_FLAGS_ERROR([-Wunused-result])
@@ -186,6 +194,7 @@
_APPEND_COMPILE_FLAGS_ERROR([-fwrapv])
_APPEND_COMPILE_FLAGS_ERROR([-fmudflapt])
_APPEND_COMPILE_FLAGS_ERROR([-pipe])
+ _APPEND_COMPILE_FLAGS_ERROR([-Wsizeof-pointer-memaccess])
AS_IF([test "x$ax_enable_debug" = xno],
[AS_IF([test "x$ac_cv_vcs_checkout" = xyes],
@@ -213,9 +222,12 @@
_APPEND_COMPILE_FLAGS_ERROR([-H])
_APPEND_COMPILE_FLAGS_ERROR([-ggdb])
_APPEND_COMPILE_FLAGS_ERROR([-g])
- _APPEND_COMPILE_FLAGS_ERROR([-O0])],
- [_APPEND_COMPILE_FLAGS_ERROR([-g])
- _APPEND_COMPILE_FLAGS_ERROR([-O2])])
+ _APPEND_COMPILE_FLAGS_ERROR([-O0]),
+ _APPEND_COMPILE_FLAGS_ERROR([-fno-omit-frame-pointer])
+ ],[
+ _APPEND_COMPILE_FLAGS_ERROR([-g])
+ _APPEND_COMPILE_FLAGS_ERROR([-O2])
+ ])
AS_IF([test "x$ac_cv_vcs_checkout" = xyes],
[_APPEND_COMPILE_FLAGS_ERROR([-fstack-check])
@@ -268,27 +280,32 @@
_APPEND_COMPILE_FLAGS_ERROR([-funsafe-loop-optimizations])
_APPEND_COMPILE_FLAGS_ERROR([-Wc++11-compat])
# _APPEND_COMPILE_FLAGS_ERROR([-Weffc++])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=address])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=integer])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=thread])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=memory])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=alignment])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=bool])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=bounds])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=enum])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=float-cast-overflow])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=float-divide-by-zero])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=integer-divide-by-zero])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=null])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=object-size])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=return])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=shift])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=signed-integer-overflow])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=unreachable])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=unsigned-integer-overflow])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=vla-bound])
- _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=vptr])
-# _APPEND_COMPILE_FLAGS_ERROR([-Wold-style-cast])
+ AS_IF([test "x$ac_cv_vcs_checkout" = xyes],[
+ _APPEND_COMPILE_FLAGS_ERROR([-fno-omit-frame-pointer])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=address])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=integer])
+ AS_IF([test "x$enable_shared" = "xyes"],[
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=thread])
+ ])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=memory])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=alignment])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=bool])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=bounds])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=enum])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=float-cast-overflow])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=float-divide-by-zero])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=integer-divide-by-zero])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=null])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=object-size])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=return])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=shift])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=signed-integer-overflow])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=unreachable])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=unsigned-integer-overflow])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=vla-bound])
+ _APPEND_COMPILE_FLAGS_ERROR([-fsanitize=vptr])
+ ])
+# _APPEND_COMPILE_FLAGS_ERROR([-Wold-style-cast])
_APPEND_COMPILE_FLAGS_ERROR([-Wclobbered])
_APPEND_COMPILE_FLAGS_ERROR([-Wunused])
_APPEND_COMPILE_FLAGS_ERROR([-Wunused-result])
@@ -301,6 +318,7 @@
_APPEND_COMPILE_FLAGS_ERROR([-fwrapv])
_APPEND_COMPILE_FLAGS_ERROR([-fmudflapt])
_APPEND_COMPILE_FLAGS_ERROR([-pipe])
+ _APPEND_COMPILE_FLAGS_ERROR([-Wsizeof-pointer-memaccess])
AS_IF([test "x$ax_enable_debug" = xno],
[AS_IF([test "x$ac_cv_vcs_checkout" = xyes],

@ -1,27 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.22.ebuild,v 1.2 2011/07/31 20:03:00 mattst88 Exp $
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd"
IUSE=""
RDEPEND=""
DEPEND="dev-lang/perl"
RESTRICT="test"
src_unpack() {
unpack ${A}
sed -i -e "s:-O3:${CFLAGS}:" "${S}"/configure
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}

@ -1,27 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.25.ebuild,v 1.2 2011/07/31 20:03:00 mattst88 Exp $
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd"
IUSE=""
RDEPEND=""
DEPEND="dev-lang/perl"
RESTRICT="test"
src_unpack() {
unpack ${A}
#sed -i -e "s:-O3:${CFLAGS}:" "${S}"/configure
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}

@ -1,28 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.26.ebuild,v 1.2 2011/07/31 20:03:00 mattst88 Exp $
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd"
IUSE=""
DEPEND="dev-lang/perl
net-misc/memcached"
RDEPEND="${DEPEND}"
RESTRICT="test"
src_unpack() {
unpack ${A}
#sed -i -e "s:-O3:${CFLAGS}:" "${S}"/configure
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}

@ -1,37 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.28.ebuild,v 1.4 2011/07/31 20:03:00 mattst88 Exp $
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd"
IUSE="test"
DEPEND="net-misc/memcached"
RDEPEND="${DEPEND}"
#RESTRICT="test"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.28-runtestsasuser.patch
epatch "${FILESDIR}"/${PN}-0.28-removebogustest.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
src_test() {
echo ">>> Test phase [test]: ${CATEGORY}/${PF}"
emake test || die "tests failed"
echo ">>> Test phase [none]: ${CATEGORY}/${PF}"
}

@ -1,37 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.30.ebuild,v 1.3 2011/07/31 20:03:00 mattst88 Exp $
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd"
IUSE="test"
DEPEND="net-misc/memcached"
RDEPEND="${DEPEND}"
#RESTRICT="test"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.28-runtestsasuser.patch
epatch "${FILESDIR}"/${PN}-0.28-removebogustest.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
src_test() {
echo ">>> Test phase [test]: ${CATEGORY}/${PF}"
emake test || die "tests failed"
echo ">>> Test phase [none]: ${CATEGORY}/${PF}"
}

@ -1,40 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.31.ebuild,v 1.8 2011/07/31 20:03:00 mattst88 Exp $
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~sparc-fbsd"
IUSE="debug hsieh"
DEPEND="net-misc/memcached"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.28-runtestsasuser.patch
epatch "${FILESDIR}"/${PN}-0.28-removebogustest.patch
}
src_compile() {
econf \
$(use_with debug debug) \
$(use_enable hsieh hsieh_hash)
emake || die "Build failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
src_test() {
emake test || die "Tests failed"
}

@ -1,39 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.34-r1.ebuild,v 1.3 2011/07/31 20:03:00 mattst88 Exp $
EAPI=2
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd"
IUSE="debug hsieh"
DEPEND="net-misc/memcached"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PN}-0.28-runtestsasuser.patch"
}
src_configure() {
econf \
$(use_with debug debug) \
$(use_enable hsieh hsieh_hash)
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
src_test() {
cd tests || die "Tests failed"
emake testapp testplus library_test || die "Tests failed"
}

@ -1,40 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.34.ebuild,v 1.2 2011/07/31 20:03:00 mattst88 Exp $
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd"
IUSE="debug hsieh"
DEPEND="net-misc/memcached"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.28-runtestsasuser.patch
}
src_compile() {
econf \
$(use_with debug debug) \
$(use_enable hsieh hsieh_hash)
emake || die "Build failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
src_test() {
cd tests || die "Tests failed"
emake testapp testplus library_test || die "Tests failed"
}

@ -1,39 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.35.ebuild,v 1.3 2011/07/31 20:03:00 mattst88 Exp $
EAPI=2
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug hsieh"
DEPEND="net-misc/memcached"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PN}-0.28-runtestsasuser.patch"
}
src_configure() {
econf \
$(use_with debug debug) \
$(use_enable hsieh hsieh_hash)
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
src_test() {
cd tests || die "Tests failed"
emake testapp testplus library_test || die "Tests failed"
}

@ -1,38 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.37.ebuild,v 1.2 2011/07/31 20:03:00 mattst88 Exp $
EAPI=2
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug hsieh"
DEPEND="net-misc/memcached"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PN}-0.28-runtestsasuser.patch"
}
src_configure() {
econf \
$(use_with debug debug) \
$(use_with hsieh hsieh_hash)
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
src_test() {
emake library_test libmhashkit_test || die "Tests failed"
}

@ -1,44 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.38.ebuild,v 1.3 2011/07/31 20:03:00 mattst88 Exp $
EAPI=2
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug hsieh"
DEPEND="net-misc/memcached"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PN}-0.28-runtestsasuser.patch"
sed -r -i \
-e 's,(context)(__attribute__),\1 \2,g' \
libhashkit/hsieh.c || die "Failed to fix upstream typo"
}
src_configure() {
econf \
$(use_with debug debug) \
$(use_enable hsieh hsieh_hash)
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
# remove manpage to avoid collision, see bug #299330
rm -f "${D}"/usr/share/man/man1/memdump.* || die "Install failed"
newman docs/memdump.1 memcached_memdump.1
}
src_test() {
emake -j1 test-docs test-mem test-hash test-plus || die "Tests failed"
}

@ -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/dev-libs/libmemcached/libmemcached-0.39.ebuild,v 1.11 2011/07/31 20:03:00 mattst88 Exp $
EAPI=2
inherit eutils
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://download.tangent.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug hsieh"
DEPEND="net-misc/memcached
virtual/perl-PodParser"
RDEPEND="${DEPEND}"
src_prepare() {
EPATCH_OPTS="-F 40" epatch "${FILESDIR}/${PN}-0.39-runtestsasuser.patch"
sed -r -i \
-e 's,(context)(__attribute__),\1 \2,g' \
libhashkit/hsieh.c || die "Failed to fix upstream typo"
}
src_configure() {
econf \
$(use_with debug debug) \
$(use_enable hsieh hsieh_hash)
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
# remove manpage to avoid collision, see bug #299330
rm -f "${D}"/usr/share/man/man1/memdump.* || die "Install failed"
newman docs/memdump.1 memcached_memdump.1
}
src_test() {
emake -j1 test-docs test-mem test-hash test-plus || die "Tests failed"
}

@ -1,68 +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/libmemcached/libmemcached-1.0.11.ebuild,v 1.1 2012/10/09 08:43:21 patrick Exp $
EAPI="3"
inherit eutils multilib
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://libmemcached.org/libMemcached.html"
SRC_URI="http://launchpad.net/${PN}/1.0/${PV}/+download/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug doc hsieh +libevent sasl static-libs tcmalloc"
DEPEND="net-misc/memcached
virtual/perl-PodParser
doc? ( dev-python/sphinx )
libevent? ( dev-libs/libevent )
tcmalloc? ( dev-util/google-perftools )
sasl? ( virtual/gsasl )"
RDEPEND="${DEPEND}"
src_prepare() {
# These tests freezes for me
sed -i \
-e "/connectionpool/d" \
-e "/lp:583031/d" \
tests/${P%.*}/mem_functions.cc || die
}
src_configure() {
econf \
--disable-dtrace \
--disable-libinnodb \
$(use_enable debug assert) \
$(use_with debug debug) \
$(use_enable hsieh hsieh_hash) \
$(use_enable libevent libevent) \
$(use_enable tcmalloc tcmalloc) \
$(use_with sasl libsasl-prefix) \
$(use_with sasl libsasl2-prefix) \
$(use_enable static-libs static)
}
src_compile() {
emake || die
if use doc; then
emake html-local || die
fi
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la
dodoc AUTHORS ChangeLog README THANKS TODO
# remove manpage to avoid collision, see bug #299330
rm -f "${D}"/usr/share/man/man1/memdump.* || die "Install failed"
newman docs/man/memdump.1 memcached_memdump.1
if use doc; then
dohtml -r docs/html/* || die
fi
}

@ -0,0 +1,47 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-1.0.17-r1.ebuild,v 1.1 2014/01/27 08:30:22 prometheanfire Exp $
EAPI=5
inherit eutils multilib
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://libmemcached.org/libMemcached.html"
SRC_URI="http://launchpad.net/${PN}/1.0/${PV}/+download/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug hsieh +libevent static-libs"
DEPEND="net-misc/memcached
dev-libs/cyrus-sasl
libevent? ( dev-libs/libevent )"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PN}-1.0.17-gcc4_8.patch"
}
src_configure() {
econf \
--disable-dtrace \
$(use_enable static-libs static) \
$(use_enable sasl sasl) \
$(use_enable debug debug) \
$(use_enable debug assert) \
$(use_enable hsieh hsieh_hash) \
${myconf}
}
src_install() {
emake DESTDIR="${D}" install
use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la
dodoc AUTHORS ChangeLog README THANKS TODO
# remove manpage to avoid collision, see bug #299330
rm -f "${D}"/usr/share/man/man1/memdump.*
newman man/memdump.1 memcached_memdump.1
}

@ -1,68 +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/libmemcached/libmemcached-1.0.4.ebuild,v 1.1 2012/02/21 08:43:28 robbat2 Exp $
EAPI="3"
inherit eutils multilib
DESCRIPTION="a C client library to the memcached server"
HOMEPAGE="http://tangent.org/552/libmemcached.html"
SRC_URI="http://launchpad.net/${PN}/1.0/${PV}/+download/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="debug doc hsieh +libevent sasl static-libs tcmalloc"
DEPEND="net-misc/memcached
virtual/perl-PodParser
doc? ( dev-python/sphinx )
libevent? ( dev-libs/libevent )
tcmalloc? ( dev-util/google-perftools )
sasl? ( virtual/gsasl )"
RDEPEND="${DEPEND}"
src_prepare() {
# These tests freezes for me
sed -i \
-e "/connectionpool/d" \
-e "/lp:583031/d" \
tests/${P%.*}/mem_functions.cc || die
}
src_configure() {
econf \
--disable-dtrace \
--disable-libinnodb \
$(use_enable debug assert) \
$(use_with debug debug) \
$(use_enable hsieh hsieh_hash) \
$(use_enable libevent libevent) \
$(use_enable tcmalloc tcmalloc) \
$(use_with sasl libsasl-prefix) \
$(use_with sasl libsasl2-prefix) \
$(use_enable static-libs static)
}
src_compile() {
emake || die
if use doc; then
emake html-local || die
fi
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la
dodoc AUTHORS ChangeLog README THANKS TODO
# remove manpage to avoid collision, see bug #299330
rm -f "${D}"/usr/share/man/man1/memdump.* || die "Install failed"
newman docs/man/memdump.1 memcached_memdump.1
if use doc; then
dohtml -r docs/html/* || die
fi
}

@ -15,5 +15,6 @@
<use>
<flag name='hsieh'>Use Hsieh hash algorithm.</flag>
<flag name='libevent'>Use the libevent event loop interface.</flag>
<flag name='sasl'>Use sasl auth for communications.</flag>
</use>
</pkgmetadata>

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.15.3.ebuild,v 1.1 2013/10/23 14:39:33 pesa Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-4.15.3.ebuild,v 1.2 2014/01/27 07:43:47 jer Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@ -28,7 +28,7 @@ fi
# Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h.in
SLOT="0/10"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="debug doc"
DEPEND="${PYTHON_DEPS}"

@ -1 +1,2 @@
DIST mysql2-0.3.14.gem 43520 SHA256 fd24dcf06165a3bd1c275eeef7d37b7dab617fa6e291f97d633adb772d6f0989 SHA512 b10475b98f60590e43f3cfc0ea111456ce10553265b14a2abb1c729f93b5d1ca9adcb03445d5f7fdcfd6a16c326d7e986936f4478c9f805d837d51acde6c20a8 WHIRLPOOL f230d58e6c360b3f23525d82ad29b972da709b8810fd8dbd4825529886db5b9e90cad4233c02d22afec962180c502a5f80149b64c0f10b5a3d3b2959f5ebf9bd
DIST mysql2-0.3.15.gem 47104 SHA256 26272d57bc02975145e952f5ba6d6b58fbf7a41ac92403f4f30e3f4938854a93 SHA512 9c3843eb19ba0c740379f658685f5860fa523fa209f22376d9395ad5289a416e916a51501961ad33d0ba8923a055243ab327c9ed38beddbb3701608848a547dd WHIRLPOOL 4a226c454c4173c853c3224d7fe09533d083c9f4c688615a05b5901a533f97f04a8be4bc2bfcfea7bf1c38b757be38b648fbcb3c332ba218a2496b6be8ecb4fc

@ -0,0 +1,35 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mysql2/mysql2-0.3.15.ebuild,v 1.1 2014/01/27 07:21:25 graaff Exp $
EAPI=5
USE_RUBY="ruby18 ruby19 ruby20 ruby21"
# Tests require a live MySQL database but should all pass.
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README.md"
inherit multilib ruby-fakegem
DESCRIPTION="A modern, simple and very fast Mysql library for Ruby - binding to libmysql."
HOMEPAGE="https://github.com/brianmario/mysql2"
LICENSE="MIT"
SLOT="0.3"
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
IUSE=""
DEPEND="${DEPEND} virtual/mysql[-static]"
RDEPEND="${RDEPEND} virtual/mysql[-static]"
each_ruby_configure() {
${RUBY} -Cext/mysql2 extconf.rb --with-mysql-config "${EPREFIX}/usr/bin/mysqlconfig" || die
}
each_ruby_compile() {
emake V=1 -Cext/mysql2 || die
cp ext/mysql2/mysql2$(get_modname) lib/mysql2/ || die
}

@ -1,2 +1 @@
DIST diffstat-1.57.tgz 245755 SHA256 cb9845839d695f178d6b5458b08d3e04773e400f35c0c062c4c0102220fba1e6 SHA512 1029be399f321d1d9a19b1039e27b10d5c4d4f01e17a20c8ab55246817af48810883f481a4762c31cb4bb0a0c076aa6ac0f6a79f079593faf5916a6fc63dd2ce WHIRLPOOL ba2ae24a9773c1f97149e161985a357dd005303e7016264cf6700abba663669e1f60ad05120e69996054705986890521a765f1eaaed4f8777f9ef5e04b4e5f1e
DIST diffstat-1.58.tgz 246826 SHA256 fad5135199c3b9aea132c5d45874248f4ce0ff35f61abb8d03c3b90258713793 SHA512 b2870a604e3e6fcde1929de763839c3b840575bc96f3816b215e102c670d65b73d40eececa41a01f385b9932b65d86005b4d478ecbf78623faa8cc34fec77cac WHIRLPOOL 2767e925235775604a784ddfa2d07eb6e665c036c51460c25d1195fa168ae00c5e5b6e3a3e821b19939d4aa20ac6bd74076beeee06572bd856f304155b4f7cc0

@ -1,13 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/diffstat/diffstat-1.57.ebuild,v 1.12 2013/06/02 08:37:49 ago Exp $
EAPI="5"
DESCRIPTION="Display a histogram of diff changes"
HOMEPAGE="http://invisible-island.net/diffstat/diffstat.html"
SRC_URI="ftp://invisible-island.net/diffstat/${P}.tgz"
LICENSE="HPND"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"

@ -1,5 +1,3 @@
DIST cuda_5.0.35_linux_32_fedora16-1.run 583244929 SHA256 11927b4c0fb23dbf98457b852914b8458ef41cc1b7ea67bce892f2cc6a77d34e SHA512 d1cda0d53fdc86ac6412c5c92a16efd761d3f15f08878e1aa1c17bdf3bad824a0cebb5c211ad89b8dd15a439eddd0f93efe82ed0850dc93adcd3dab529f6daca WHIRLPOOL 11bc905a4a63171009569d6655b40f0d49034f71c0a93a83e1b656e91a4250c813e0a16fdfda87e9fbe4d250a312beb0c9ad073bfb0420fb4e06fdd26faf3cc9
DIST cuda_5.0.35_linux_64_fedora16-1.run 701310481 SHA256 c2889c779215eea1c3cc6d4b092eb4208b7e1063704b6e5e8d48d04e961c3c0a SHA512 83903587d1715dd3a64db6bd676c0586edb81495da1bec22aac9995de31ca0b0db2460cccf4af0845befe0cee308ab019760c3c88eb351b6db0f255f7d93e546 WHIRLPOOL 33b998c66ebfa059d77eedb6b8465183f5ef4444ed5fe55f622efe6a2eeeef8e50e2cb09b0de4e61e15b5320495123ce46e1b47fc4cbbe96f3bde0ac93ff5dbc
DIST cuda_5.5.22_linux_32.run 686412076 SHA256 0e7aad303807bb0ede8f6f6e825cfcd0f9ddb677bc8cc898ec38990b8226778d SHA512 e2e4fbc78c2e6373b3f81778d8044b299429459e8e27632e86c0d97e6fe7f4db7cd5652044beb0ce7ee3c7abaa7dcec7d85639a2de4b9cc213ab52a2d204aa6b WHIRLPOOL e5df7de03aaec8488a7fa093e272d64b5d3adaedca1458c550d4ae9c6bf2a0ead71496c8a0c9aac966500aa01401e95cc57a951e3a2554e8d823b97c10336850
DIST cuda_5.5.22_linux_64.run 849417929 SHA256 b997e1dbe95704e0e806e0cedc5fd370a385351fef565c7bae0917baf3a29aa4 SHA512 25233b34a35fdb5ee3479a87c89484a00dcd760837436c263c3eb8731cbd24a9ed3fb57ce2d4e5bf7cd31abb9b0d990b45720a5f6a376b2488de4506a7c57c20 WHIRLPOOL 550594121a53feae4e74a4dc9ba40c4cd2ac91305f23397cd7ea421fcb801e3ce8fcf90f439c966accca44d586bc51d85ef3e211f35fd751dc9299dd07d65175
DIST cudatoolkit_4.2.9_linux_32_ubuntu11.04.run 209998124 SHA256 0c91d51e49c7cabc13fafa75cbf547c6902557cb5c3e19b4cf3c83c26172a03f SHA512 f1ca065e9cbe6273f165388d3579e28868c7b1330b341cabab9fdd6695fd3450dd8c77978a5aa3063617b371c68c37661b4f2d8fcbc4e585bb508254bef064ef WHIRLPOOL 9cbb668a1fba9748c0a42ce9a93ba0e7ff592c48155b0d87c22999f90aea29fc02120febcf4b07b8bd1ded96ca057ca0450261ea30ffdf5076e0991b10474a18

@ -1,130 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-4.2.9-r3.ebuild,v 1.3 2013/11/26 09:28:44 jlec Exp $
EAPI=5
inherit cuda unpacker versionator
MYD=$(get_version_component_range 1)_$(get_version_component_range 2)
DISTRO=ubuntu11.04
DESCRIPTION="NVIDIA CUDA Toolkit (compiler and friends)"
HOMEPAGE="http://developer.nvidia.com/cuda"
CURI="http://developer.download.nvidia.com/compute/cuda/${MYD}/rel/toolkit"
SRC_URI="
amd64? ( ${CURI}/cudatoolkit_${PV}_linux_64_${DISTRO}.run )
x86? ( ${CURI}/cudatoolkit_${PV}_linux_32_${DISTRO}.run )"
SLOT="0/${PV}"
LICENSE="NVIDIA-CUDA"
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debugger doc eclipse profiler"
DEPEND=""
RDEPEND="${DEPEND}
|| (
sys-devel/gcc:4.4
sys-devel/gcc:4.5
sys-devel/gcc:4.6
)
!<=x11-drivers/nvidia-drivers-270.41
debugger? ( sys-libs/libtermcap-compat )
profiler? ( >=virtual/jre-1.6 )"
S="${WORKDIR}"
QA_PREBUILT="opt/cuda/*"
pkg_setup() {
# We don't like to run cuda_pkg_setup as it depends on us
:
}
src_prepare() {
local cuda_supported_gcc dfiles files
cuda_supported_gcc="4.4 4.5 4.6"
sed \
-e "s:CUDA_SUPPORTED_GCC:${cuda_supported_gcc}:g" \
"${FILESDIR}"/cuda-config.in > "${T}"/cuda-config || die
dfiles="install-linux.pl libnvvp/jre run_files"
use amd64 && dfiles+=" cuda-installer.pl"
for files in ${dfiles}; do
if [[ -e ${files} ]]; then
find ${files} -delete || die
fi
done
}
src_install() {
local i
local remove="doc"
local cudadir=/opt/cuda
local ecudadir="${EPREFIX}"${cudadir}
if use doc; then
dodoc doc/*{txt,pdf}
dohtml -r doc/{*.html,html}
fi
use debugger || remove+=" bin/cuda-gdb extras/Debugger"
if use profiler; then
# hack found in install-linux.pl
cat > bin/nvvp <<- EOF
#!${EPREFIX}bin/sh
LD_LIBRARY_PATH=\${LD_LIBRARY_PATH}:${ecudadir}/lib:${ecudadir}/lib64 \
UBUNTU_MENUPROXY=0 LIBOVERLAY_SCROLLBAR=0 ${ecudadir}/libnvvp/nvvp
EOF
chmod a+x bin/nvvp
else
use eclipse || remove+=" libnvvp"
remove+=" extras/CUPTI"
fi
for i in ${remove}; do
if [[ -e ${i} ]]; then
find ${i} -delete || die
fi
done
dodir ${cudadir}
mv * "${ED}"${cudadir}
cat > "${T}"/99cuda <<- EOF
PATH=${ecudadir}/bin:${ecudadir}/libnvvp
ROOTPATH=${ecudadir}/bin
LDPATH=${ecudadir}/lib$(use amd64 && echo "64:${ecudadir}/lib")
EOF
doenvd "${T}"/99cuda
dobin "${T}"/cuda-config
}
pkg_postinst_check() {
local a b
a="$(version_sort $(cuda-config -s))"; a=( $a )
# greatest supported version
b=${a[${#a[@]}-1]}
# if gcc and if not gcc-version is at least greatesst supported
if [[ $(tc-getCC) == *gcc* ]] && \
! version_is_at_least $(gcc-version) ${b}; then
echo
ewarn "gcc >= ${b} will not work with CUDA"
ewarn "Make sure you set an earlier version of gcc with gcc-config"
ewarn "or append --compiler-bindir= pointing to a gcc bindir like"
ewarn "--compiler-bindir=${EPREFIX}/usr/*pc-linux-gnu/gcc-bin/gcc${b}"
ewarn "to the nvcc compiler flags"
echo
fi
}
pkg_postinst() {
if [[ ${MERGE_TYPE} != binary ]]; then
pkg_postinst_check
fi
}

@ -1,136 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-5.0.35-r2.ebuild,v 1.6 2013/11/26 09:28:44 jlec Exp $
EAPI=5
inherit cuda unpacker versionator
MYD=$(get_version_component_range 1)_$(get_version_component_range 2)
DISTRO=fedora16-1
DESCRIPTION="NVIDIA CUDA Toolkit (compiler and friends)"
HOMEPAGE="http://developer.nvidia.com/cuda"
CURI="http://developer.download.nvidia.com/compute/cuda/${MYD}/rel-update-1/installers/"
SRC_URI="
amd64? ( ${CURI}/cuda_${PV}_linux_64_${DISTRO}.run )
x86? ( ${CURI}/cuda_${PV}_linux_32_${DISTRO}.run )"
SLOT="0"
LICENSE="NVIDIA-CUDA"
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debugger doc eclipse profiler"
DEPEND=""
RDEPEND="${DEPEND}
sys-devel/gcc:4.6[cxx]
!<=x11-drivers/nvidia-drivers-270.41
debugger? (
sys-libs/libtermcap-compat
sys-libs/ncurses[tinfo]
)
profiler? ( >=virtual/jre-1.6 )"
S="${WORKDIR}"
QA_PREBUILT="opt/cuda/*"
pkg_setup() {
# We don't like to run cuda_pkg_setup as it depends on us
:
}
src_unpack() {
unpacker
unpacker run_files/cudatoolkit*run
}
src_prepare() {
local cuda_supported_gcc
cuda_supported_gcc="4.6"
sed \
-e "s:CUDA_SUPPORTED_GCC:${cuda_supported_gcc}:g" \
"${FILESDIR}"/cuda-config.in > "${T}"/cuda-config || die
}
src_install() {
local i j
local remove="doc jre run_files install-linux.pl "
local cudadir=/opt/cuda
local ecudadir="${EPREFIX}"${cudadir}
dodoc doc/*txt
if use doc; then
dodoc doc/pdf/*
dohtml -r doc/html/*
fi
use debugger || remove+=" bin/cuda-gdb extras/Debugger"
use eclipse || remove+=" libnsight"
use amd64 || remove+=" cuda-installer.pl"
if use profiler; then
# hack found in install-linux.pl
for j in nvpp nsight; do
cat > bin/${i} <<- EOF
#!${EPREFIX}bin/sh
LD_LIBRARY_PATH=\${LD_LIBRARY_PATH}:${ecudadir}/lib:${ecudadir}/lib64 \
UBUNTU_MENUPROXY=0 LIBOVERLAY_SCROLLBAR=0 ${ecudadir}/libnvvp/${i}
EOF
chmod a+x bin/${i}
done
else
use eclipse || remove+=" libnvvp"
remove+=" extras/CUPTI"
fi
for i in ${remove}; do
ebegin "Cleaning ${i}..."
if [[ -e ${i} ]]; then
find ${i} -delete || die
eend
else
eend $1
fi
done
dodir ${cudadir}
mv * "${ED}"${cudadir}
cat > "${T}"/99cuda <<- EOF
PATH=${ecudadir}/bin:${ecudadir}/libnvvp
ROOTPATH=${ecudadir}/bin
LDPATH=${ecudadir}/lib$(use amd64 && echo "64:${ecudadir}/lib")
EOF
doenvd "${T}"/99cuda
dobin "${T}"/cuda-config
}
pkg_postinst_check() {
local a b
a="$(version_sort $(cuda-config -s))"; a=( $a )
# greatest supported version
b=${a[${#a[@]}-1]}
# if gcc and if not gcc-version is at least greatesst supported
if [[ $(tc-getCC) == *gcc* ]] && \
! version_is_at_least $(gcc-version) ${b}; then
echo
ewarn "gcc >= ${b} will not work with CUDA"
ewarn "Make sure you set an earlier version of gcc with gcc-config"
ewarn "or append --compiler-bindir= pointing to a gcc bindir like"
ewarn "--compiler-bindir=${EPREFIX}/usr/*pc-linux-gnu/gcc-bin/gcc${b}"
ewarn "to the nvcc compiler flags"
echo
fi
}
pkg_postinst() {
if [[ ${MERGE_TYPE} != binary ]]; then
pkg_postinst_check
fi
}

@ -1,140 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-5.0.35-r3.ebuild,v 1.4 2013/11/26 09:28:44 jlec Exp $
EAPI=5
inherit cuda unpacker versionator
MYD=$(get_version_component_range 1)_$(get_version_component_range 2)
DISTRO=fedora16-1
DESCRIPTION="NVIDIA CUDA Toolkit (compiler and friends)"
HOMEPAGE="http://developer.nvidia.com/cuda"
CURI="http://developer.download.nvidia.com/compute/cuda/${MYD}/rel-update-1/installers/"
SRC_URI="
amd64? ( ${CURI}/cuda_${PV}_linux_64_${DISTRO}.run )
x86? ( ${CURI}/cuda_${PV}_linux_32_${DISTRO}.run )"
SLOT="0"
LICENSE="NVIDIA-CUDA"
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debugger doc eclipse profiler"
DEPEND=""
RDEPEND="${DEPEND}
sys-devel/gcc:4.6[cxx]
!<=x11-drivers/nvidia-drivers-270.41
debugger? (
sys-libs/libtermcap-compat
sys-libs/ncurses[tinfo]
)
eclipse? ( >=virtual/jre-1.6 )
profiler? ( >=virtual/jre-1.6 )"
S="${WORKDIR}"
QA_PREBUILT="opt/cuda/*"
pkg_setup() {
# We don't like to run cuda_pkg_setup as it depends on us
:
}
src_unpack() {
unpacker
unpacker run_files/cudatoolkit*run
}
src_prepare() {
local cuda_supported_gcc
cuda_supported_gcc="4.6"
sed \
-e "s:CUDA_SUPPORTED_GCC:${cuda_supported_gcc}:g" \
"${FILESDIR}"/cuda-config.in > "${T}"/cuda-config || die
}
src_install() {
local i j
local remove="doc jre run_files install-linux.pl "
local cudadir=/opt/cuda
local ecudadir="${EPREFIX}"${cudadir}
dodoc doc/*txt
if use doc; then
dodoc doc/pdf/*
dohtml -r doc/html/*
fi
use debugger || remove+=" bin/cuda-gdb extras/Debugger"
( use profiler || use eclipse ) || remove+=" libnsight"
use amd64 || remove+=" cuda-installer.pl"
if use profiler; then
# hack found in install-linux.pl
for j in nvvp nsight; do
cat > bin/${j} <<- EOF
#!${EPREFIX}/bin/sh
LD_LIBRARY_PATH=\${LD_LIBRARY_PATH}:${ecudadir}/lib:${ecudadir}/lib64 \
UBUNTU_MENUPROXY=0 LIBOVERLAY_SCROLLBAR=0 \
${ecudadir}/lib${j}/${j} -vm ${EPREFIX}/usr/bin/java
EOF
chmod a+x bin/${j}
done
else
use eclipse || remove+=" libnvvp"
remove+=" extras/CUPTI"
fi
for i in ${remove}; do
ebegin "Cleaning ${i}..."
if [[ -e ${i} ]]; then
find ${i} -delete || die
eend
else
eend $1
fi
done
dodir ${cudadir}
mv * "${ED}"${cudadir}
cat > "${T}"/99cuda <<- EOF
PATH=${ecudadir}/bin:${ecudadir}/libnvvp
ROOTPATH=${ecudadir}/bin
LDPATH=${ecudadir}/lib$(use amd64 && echo "64:${ecudadir}/lib")
EOF
doenvd "${T}"/99cuda
make_wrapper nvprof "${EPREFIX}"${cudadir}/bin/nvprof "." ${ecudadir}/lib$(use amd64 && echo "64:${ecudadir}/lib")
dobin "${T}"/cuda-config
}
pkg_postinst_check() {
local a b
a="$(version_sort $(cuda-config -s))"; a=( $a )
# greatest supported version
b=${a[${#a[@]}-1]}
# if gcc and if not gcc-version is at least greatesst supported
if [[ $(tc-getCC) == *gcc* ]] && \
! version_is_at_least $(gcc-version) ${b}; then
echo
ewarn "gcc >= ${b} will not work with CUDA"
ewarn "Make sure you set an earlier version of gcc with gcc-config"
ewarn "or append --compiler-bindir= pointing to a gcc bindir like"
ewarn "--compiler-bindir=${EPREFIX}/usr/*pc-linux-gnu/gcc-bin/gcc${b}"
ewarn "to the nvcc compiler flags"
echo
fi
}
pkg_postinst() {
if [[ ${MERGE_TYPE} != binary ]]; then
pkg_postinst_check
fi
}

@ -1,140 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-5.0.35-r4.ebuild,v 1.3 2013/11/26 09:28:44 jlec Exp $
EAPI=5
inherit cuda unpacker versionator
MYD=$(get_version_component_range 1)_$(get_version_component_range 2)
DISTRO=fedora16-1
DESCRIPTION="NVIDIA CUDA Toolkit (compiler and friends)"
HOMEPAGE="http://developer.nvidia.com/cuda"
CURI="http://developer.download.nvidia.com/compute/cuda/${MYD}/rel-update-1/installers/"
SRC_URI="
amd64? ( ${CURI}/cuda_${PV}_linux_64_${DISTRO}.run )
x86? ( ${CURI}/cuda_${PV}_linux_32_${DISTRO}.run )"
SLOT="0/${PV}"
LICENSE="NVIDIA-CUDA"
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debugger doc eclipse profiler"
DEPEND=""
RDEPEND="${DEPEND}
sys-devel/gcc:4.6[cxx]
!<=x11-drivers/nvidia-drivers-270.41
debugger? (
sys-libs/libtermcap-compat
sys-libs/ncurses[tinfo]
)
eclipse? ( >=virtual/jre-1.6 )
profiler? ( >=virtual/jre-1.6 )"
S="${WORKDIR}"
QA_PREBUILT="opt/cuda/*"
pkg_setup() {
# We don't like to run cuda_pkg_setup as it depends on us
:
}
src_unpack() {
unpacker
unpacker run_files/cudatoolkit*run
}
src_prepare() {
local cuda_supported_gcc
cuda_supported_gcc="4.6"
sed \
-e "s:CUDA_SUPPORTED_GCC:${cuda_supported_gcc}:g" \
"${FILESDIR}"/cuda-config.in > "${T}"/cuda-config || die
}
src_install() {
local i j
local remove="doc jre run_files install-linux.pl "
local cudadir=/opt/cuda
local ecudadir="${EPREFIX}"${cudadir}
dodoc doc/*txt
if use doc; then
dodoc doc/pdf/*
dohtml -r doc/html/*
fi
use debugger || remove+=" bin/cuda-gdb extras/Debugger"
( use profiler || use eclipse ) || remove+=" libnsight"
use amd64 || remove+=" cuda-installer.pl"
if use profiler; then
# hack found in install-linux.pl
for j in nvvp nsight; do
cat > bin/${j} <<- EOF
#!${EPREFIX}/bin/sh
LD_LIBRARY_PATH=\${LD_LIBRARY_PATH}:${ecudadir}/lib:${ecudadir}/lib64 \
UBUNTU_MENUPROXY=0 LIBOVERLAY_SCROLLBAR=0 \
${ecudadir}/lib${j}/${j} -vm ${EPREFIX}/usr/bin/java
EOF
chmod a+x bin/${j}
done
else
use eclipse || remove+=" libnvvp"
remove+=" extras/CUPTI"
fi
for i in ${remove}; do
ebegin "Cleaning ${i}..."
if [[ -e ${i} ]]; then
find ${i} -delete || die
eend
else
eend $1
fi
done
dodir ${cudadir}
mv * "${ED}"${cudadir}
cat > "${T}"/99cuda <<- EOF
PATH=${ecudadir}/bin:${ecudadir}/libnvvp
ROOTPATH=${ecudadir}/bin
LDPATH=${ecudadir}/lib$(use amd64 && echo "64:${ecudadir}/lib")
EOF
doenvd "${T}"/99cuda
make_wrapper nvprof "${EPREFIX}"${cudadir}/bin/nvprof "." ${ecudadir}/lib$(use amd64 && echo "64:${ecudadir}/lib")
dobin "${T}"/cuda-config
}
pkg_postinst_check() {
local a b
a="$(version_sort $(cuda-config -s))"; a=( $a )
# greatest supported version
b=${a[${#a[@]}-1]}
# if gcc and if not gcc-version is at least greatesst supported
if [[ $(tc-getCC) == *gcc* ]] && \
! version_is_at_least $(gcc-version) ${b}; then
echo
ewarn "gcc >= ${b} will not work with CUDA"
ewarn "Make sure you set an earlier version of gcc with gcc-config"
ewarn "or append --compiler-bindir= pointing to a gcc bindir like"
ewarn "--compiler-bindir=${EPREFIX}/usr/*pc-linux-gnu/gcc-bin/gcc${b}"
ewarn "to the nvcc compiler flags"
echo
fi
}
pkg_postinst() {
if [[ ${MERGE_TYPE} != binary ]]; then
pkg_postinst_check
fi
}

@ -1,6 +1,2 @@
DIST Cg-2.1_February2009_x86.tgz 13731609 SHA256 c3ecc3aaab517413ab10486b6b8725bac9c33ec09e6707c005e434aa93c29601
DIST Cg-2.1_February2009_x86_64.tgz 14339051 SHA256 dac226f138ebe768e37953c61a346772b85d10dc0221b152bdabd92d9e841e04 SHA512 1239d029a5461047adb2e7403d8e0324d6d7e8311ddca718602c30eef763b5ee122f3b506ef1962e0d76430fb7acb2512a71a2c000fb334c322d6a487956af9e WHIRLPOOL a43853a569a0ca189cfaad7170fcb71fe9ba1d0417cc69444cf5da54442d38b3d15f58df7d46a3cbcc2c050f50e097ec7d52d47503e9bf1ce8cf9dbc963add8e
DIST Cg-2.1_October2008_x86.tgz 13733234 SHA256 033ab5efb39617de65788e10d8e3a07c7ba2a3b97c59175061d4f298dfe293dd
DIST Cg-2.1_October2008_x86_64.tgz 14337305 SHA256 a43b0d009ad653d6f6b35b75488fe1dfa62d75ca4a2d87e147721a3411b783b7 SHA512 a376e33eec3221ee3a3870e119a0378284fb08fe4792a1961aabb139a87c196f31c63efe7a05526e5d249dc756319d76c87b73589931966dd3fe895ae864ddb6 WHIRLPOOL bac23c5ff3c413db24886f41cb2250d4ddf517481fcaeb9f345943c9f4f616b2045c99f87798c770bbc274b6a83b101a087b3c640526ae6fcb76ef79af24f6ef
DIST Cg-3.1_April2012_x86.tgz 23332348 SHA256 cef3591e436f528852db0e8c145d3842f920e0c89bcfb219c466797cb7b18879 SHA512 7b2addad157e151eb42b320aea31ccddfd53ec5640cb97bc86a3d461c1b08a2dff280bfc3f7859d124c311e1710e39d40405c387e5724ebc82d95303b250837a WHIRLPOOL f15f3e8f65310a47661a0473cdf7dc1ef195aff8422ad8a0ec26a2302a52d73f9f22922180482cb2724197037eb619cb9389f9732718a08dca8889d2be5dff1d
DIST Cg-3.1_April2012_x86_64.tgz 24829131 SHA256 e8ff01e6cc38d1b3fd56a083f5860737dbd2f319a39037528fb1a74a89ae9878 SHA512 591b51195193e7e3bbb9f1c2579336d24a179b0a88b955a01f4661bda55543fbccd73cac53033912f2eea8a1068e4c1394c6d286f195963cfb33a0d8b4428e27 WHIRLPOOL c4295473b82d67f6cf370e725a36189fbdbc3bfd02369e4afc0f510b6ab06a160a7de5e47931689dccc5ff52f95f0e10ebd03b32c8c30881d6d2f02183cad2a9

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>graphics</herd>
<longdescription>
<herd>graphics</herd>
<longdescription>
The Cg Toolkit provides a compiler for the Cg language, runtime libraries for
use with both leading graphics APIs, runtime libraries for CgFX, example
applications, and extensive documentation. Supporting over 20 different OpenGL

@ -1,56 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/nvidia-cg-toolkit/nvidia-cg-toolkit-2.1.0012.ebuild,v 1.9 2013/05/12 07:19:17 patrick Exp $
inherit versionator
MY_PV="$(get_version_component_range 1-2)"
MY_DATE="October2008"
DESCRIPTION="nvidia's c graphics compiler toolkit"
HOMEPAGE="http://developer.nvidia.com/object/cg_toolkit.html"
SRC_URI="
x86? ( http://developer.download.nvidia.com/cg/Cg_2.0/${PV}/Cg-${MY_PV}_${MY_DATE}_x86.tgz )
amd64? ( http://developer.download.nvidia.com/cg/Cg_2.0/${PV}/Cg-${MY_PV}_${MY_DATE}_x86_64.tgz )"
SLOT="0"
LICENSE="NVIDIA-r1"
KEYWORDS="amd64 x86"
IUSE=""
RESTRICT="strip"
RDEPEND="media-libs/freeglut"
DEPEND=""
S="${WORKDIR}"
src_install() {
dobin usr/bin/cgc || die
if use x86; then
dolib usr/lib/* || die
elif use amd64; then
dolib usr/lib64/* || die
fi
doenvd "${FILESDIR}"/80cgc || die
insinto /usr/include/Cg
doins usr/include/Cg/* || die
doman usr/share/man/man3/* || die
dodoc usr/local/Cg/MANIFEST usr/local/Cg/README \
usr/local/Cg/docs/*.pdf usr/local/Cg/docs/CgReferenceManual.chm || die
docinto html
dohtml usr/local/Cg/docs/html/* || die
# Copy all the example code.
dodir /usr/share/doc/${PF}/
mv usr/local/Cg/examples "${D}"/usr/share/doc/${PF}/
docinto include/GL
dodoc usr/local/Cg/include/GL/* || die
}

@ -1,78 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/nvidia-cg-toolkit/nvidia-cg-toolkit-2.1.0017-r1.ebuild,v 1.4 2013/05/12 07:19:17 patrick Exp $
EAPI=5
inherit multilib prefix versionator
MY_PV="$(get_version_component_range 1-2)"
MY_DATE="February2009"
DESCRIPTION="NVIDIA's C graphics compiler toolkit"
HOMEPAGE="http://developer.nvidia.com/object/cg_toolkit.html"
SRC_URI="
x86? ( http://developer.download.nvidia.com/cg/Cg_${MY_PV}/${PV}/Cg-${MY_PV}_${MY_DATE}_x86.tgz )
amd64? ( http://developer.download.nvidia.com/cg/Cg_${MY_PV}/${PV}/Cg-${MY_PV}_${MY_DATE}_x86_64.tgz )"
LICENSE="NVIDIA-r1"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc examples"
RESTRICT="strip"
RDEPEND="media-libs/freeglut"
DEPEND=""
S=${WORKDIR}
DEST=/opt/${PN}
QA_PREBUILT="${DEST}/*"
src_install() {
local ldpath=${DEST}/lib
into ${DEST}
dobin usr/bin/cgc
dosym ${DEST}/bin/cgc /opt/bin/cgc
exeinto ${DEST}/lib
if use x86 ; then
doexe usr/lib/*
elif use amd64 ; then
doexe usr/lib64/*
fi
sed \
-e "s|ELDPATH|${ldpath}|g" \
"${FILESDIR}"/80cgc-opt-2 > "${T}"/80cgc-opt || die
eprefixify "${T}"/80cgc-opt
doenvd "${T}"/80cgc-opt
insinto ${DEST}/include
doins -r usr/include/Cg
doman usr/share/man/man3/*
insinto ${DEST}
dodoc usr/local/Cg/README
if use doc; then
dodoc usr/local/Cg/docs/*.{txt,pdf}
dohtml -r usr/local/Cg/docs/html/*
fi
if use examples; then
insinto /usr/share/${PN}
doins -r usr/local/Cg/examples
fi
find usr/local/Cg/{docs,examples,README} -delete
}
pkg_postinst() {
if [[ ${REPLACING_VERSIONS} < 2.1.0016 ]]; then
einfo "Starting with ${CATEGORY}/${PN}-2.1.0016, ${PN} is installed in"
einfo "${DEST}. Packages might have to add something like:"
einfo " append-cppflags -I${DEST}/include"
fi
}

@ -1,60 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/nvidia-cg-toolkit/nvidia-cg-toolkit-2.1.0017.ebuild,v 1.7 2013/05/12 07:19:17 patrick Exp $
inherit versionator
MY_PV="$(get_version_component_range 1-2)"
MY_DATE="February2009"
DESCRIPTION="NVIDIA's C graphics compiler toolkit"
HOMEPAGE="http://developer.nvidia.com/object/cg_toolkit.html"
SRC_URI="
x86? ( http://developer.download.nvidia.com/cg/Cg_${MY_PV}/${PV}/Cg-${MY_PV}_${MY_DATE}_x86.tgz )
amd64? ( http://developer.download.nvidia.com/cg/Cg_${MY_PV}/${PV}/Cg-${MY_PV}_${MY_DATE}_x86_64.tgz )"
SLOT="0"
LICENSE="NVIDIA-r1"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RESTRICT="strip"
RDEPEND="media-libs/freeglut"
DEPEND=""
S=${WORKDIR}
DEST=/opt/${PN}
QA_PREBUILT="${DEST}/*"
src_install() {
into ${DEST}
dobin usr/bin/cgc || die
dosym ${DEST}/bin/cgc /opt/bin/cgc || die
exeinto ${DEST}/lib
if use x86 ; then
doexe usr/lib/* || die
elif use amd64 ; then
doexe usr/lib64/* || die
fi
doenvd "${FILESDIR}"/80cgc-opt
insinto ${DEST}/include/Cg
doins usr/include/Cg/* || die
insinto ${DEST}/man/man3
doins usr/share/man/man3/* || die
insinto ${DEST}
doins -r usr/local/Cg/{docs,examples,README} || die
}
pkg_postinst() {
einfo "Starting with ${CATEGORY}/${PN}-2.1.0016, ${PN} is installed in"
einfo "${DEST}. Packages might have to add something like:"
einfo " append-cppflags -I${DEST}/include"
}

@ -1,134 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/nvidia-cg-toolkit/nvidia-cg-toolkit-3.1.0013-r1.ebuild,v 1.3 2013/05/12 07:19:17 patrick Exp $
EAPI=5
inherit multilib prefix versionator
MY_PV="$(get_version_component_range 1-2)"
MY_DATE="April2012"
DESCRIPTION="NVIDIA's C graphics compiler toolkit"
HOMEPAGE="http://developer.nvidia.com/object/cg_toolkit.html"
X86_URI="http://developer.download.nvidia.com/cg/Cg_${MY_PV}/Cg-${MY_PV}_${MY_DATE}_x86.tgz"
SRC_URI="
amd64? (
http://developer.download.nvidia.com/cg/Cg_${MY_PV}/Cg-${MY_PV}_${MY_DATE}_x86_64.tgz
multilib? ( ${X86_URI} )
)
x86? ( ${X86_URI} )"
LICENSE="NVIDIA-r1"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples multilib"
RESTRICT="strip"
RDEPEND="
media-libs/freeglut
multilib? ( amd64? ( app-emulation/emul-linux-x86-xlibs ) )
x86? ( virtual/libstdc++:3.3 )"
DEPEND=""
S=${WORKDIR}
DEST=/opt/${PN}
QA_PREBUILT="${DEST}/*"
src_unpack() {
local i
if use multilib && use amd64; then
mkdir {32,64}bit || die
for i in $A; do
if [[ "$i" =~ .*x86_64.* ]]; then
pushd 64bit > /dev/null
unpack "$i"
popd > /dev/null
else
pushd 32bit > /dev/null
unpack "$i"
popd > /dev/null
fi
done
else
default
fi
}
install_pkgconfig() {
# Two args: .pc file + abi
local suffix
use amd64 && use multilib && [[ $2 == x86 ]] && suffix="-32"
insinto /usr/$(get_libdir)/pkgconfig
sed \
-e "s:GENTOO_LIBDIR:$(ABI=$2 get_libdir):g" \
-e "s:DESCRIPTION:${DESCRIPTION}:g" \
-e "s:VERSION:${PV}:g" \
-e "s|HOMEPAGE|${HOMEPAGE}|g" \
-e "s:SUFFIX:${suffix}:g" \
"${FILESDIR}/${1}.in" > "${T}/${1/.pc/${suffix}.pc}" || die
eprefixify "${T}/${1/.pc/${suffix}.pc}"
doins "${T}/${1/.pc/${suffix}.pc}"
}
src_install() {
local ldpath
into ${DEST}
if use multilib && use amd64; then
cd 64bit
fi
dobin usr/bin/{cgc,cgfxcat,cginfo}
if use x86; then
dolib usr/lib/*
ldpath="${EPREFIX}${DEST}/$(get_libdir)"
install_pkgconfig nvidia-cg-toolkit.pc x86
install_pkgconfig nvidia-cg-toolkit-gl.pc x86
elif use amd64; then
dolib usr/lib64/*
ldpath="${EPREFIX}${DEST}/$(get_libdir)"
install_pkgconfig nvidia-cg-toolkit.pc amd64
install_pkgconfig nvidia-cg-toolkit-gl.pc amd64
if use multilib; then
ldpath+=":${EPREFIX}${DEST}/lib32"
pushd ../32bit > /dev/null
ABI="x86" dolib usr/lib/*
popd > /dev/null
install_pkgconfig nvidia-cg-toolkit.pc x86
install_pkgconfig nvidia-cg-toolkit-gl.pc x86
fi
fi
sed \
-e "s|ELDPATH|${ldpath}|g" \
"${FILESDIR}"/80cgc-opt-3 > "${T}"/80cgc-opt || die
eprefixify "${T}"/80cgc-opt
doenvd "${T}"/80cgc-opt
insinto ${DEST}/include
doins -r usr/include/Cg
insinto ${DEST}
dodoc usr/local/Cg/README
if use doc; then
dodoc usr/local/Cg/docs/*.{txt,pdf}
dohtml -r usr/local/Cg/docs/html/*
fi
if use examples; then
insinto /usr/share/${PN}
doins -r usr/local/Cg/examples
fi
find usr/local/Cg/{docs,examples,README} -delete
}
pkg_postinst() {
if [[ ${REPLACING_VERSIONS} < 2.1.0016 ]]; then
einfo "Starting with ${CATEGORY}/${PN}-2.1.0016, ${PN} is installed in"
einfo "${DEST}. Packages might have to add something like:"
einfo " append-cppflags -I${DEST}/include"
fi
}

@ -1,113 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/nvidia-cg-toolkit/nvidia-cg-toolkit-3.1.0013.ebuild,v 1.2 2013/05/12 07:19:17 patrick Exp $
EAPI=5
inherit multilib prefix versionator
MY_PV="$(get_version_component_range 1-2)"
MY_DATE="April2012"
DESCRIPTION="NVIDIA's C graphics compiler toolkit"
HOMEPAGE="http://developer.nvidia.com/object/cg_toolkit.html"
X86_URI="http://developer.download.nvidia.com/cg/Cg_${MY_PV}/Cg-${MY_PV}_${MY_DATE}_x86.tgz"
SRC_URI="
amd64? (
http://developer.download.nvidia.com/cg/Cg_${MY_PV}/Cg-${MY_PV}_${MY_DATE}_x86_64.tgz
multilib? ( ${X86_URI} )
)
x86? ( ${X86_URI} )"
LICENSE="NVIDIA-r1"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples multilib"
RESTRICT="strip"
RDEPEND="
media-libs/freeglut
multilib? ( amd64? ( app-emulation/emul-linux-x86-xlibs ) )
x86? ( virtual/libstdc++:3.3 )"
DEPEND=""
S=${WORKDIR}
DEST=/opt/${PN}
QA_PREBUILT="${DEST}/*"
src_unpack() {
local i
if use multilib && use amd64; then
mkdir {32,64}bit || die
for i in $A; do
if [[ "$i" =~ .*x86_64.* ]]; then
pushd 64bit > /dev/null
unpack "$i"
popd > /dev/null
else
pushd 32bit > /dev/null
unpack "$i"
popd > /dev/null
fi
done
else
default
fi
}
src_install() {
local ldpath
into ${DEST}
if use multilib && use amd64; then
cd 64bit
fi
dobin usr/bin/{cgc,cgfxcat,cginfo}
if use x86; then
dolib usr/lib/*
ldpath="${EPREFIX}${DEST}/$(get_libdir)"
elif use amd64; then
dolib usr/lib64/*
ldpath="${EPREFIX}${DEST}/$(get_libdir)"
if use multilib && use amd64; then
ldpath+=":${EPREFIX}${DEST}/lib32"
pushd ../32bit > /dev/null
ABI="x86" dolib usr/lib/*
popd > /dev/null
fi
fi
sed \
-e "s|ELDPATH|${ldpath}|g" \
"${FILESDIR}"/80cgc-opt-2 > "${T}"/80cgc-opt || die
eprefixify "${T}"/80cgc-opt
doenvd "${T}"/80cgc-opt
insinto ${DEST}/include
doins -r usr/include/Cg
insinto ${DEST}
dodoc usr/local/Cg/README
if use doc; then
dodoc usr/local/Cg/docs/*.{txt,pdf}
dohtml -r usr/local/Cg/docs/html/*
fi
if use examples; then
insinto /usr/share/${PN}
doins -r usr/local/Cg/examples
fi
find usr/local/Cg/{docs,examples,README} -delete
}
pkg_postinst() {
if [[ ${REPLACING_VERSIONS} < 2.1.0016 ]]; then
einfo "Starting with ${CATEGORY}/${PN}-2.1.0016, ${PN} is installed in"
einfo "${DEST}. Packages might have to add something like:"
einfo " append-cppflags -I${DEST}/include"
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer2/mplayer2-2.0_p20130428-r1.ebuild,v 1.4 2014/01/23 19:49:47 swift Exp $
# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer2/mplayer2-2.0_p20130428-r1.ebuild,v 1.5 2014/01/27 07:31:13 jer Exp $
EAPI=5
@ -21,7 +21,7 @@ SRC_URI="http://rion-overlay.googlecode.com/files/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
[[ ${PV} == *9999* ]] || \
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
IUSE="+alsa aqua bluray bs2b cddb +cdio cpudetection debug directfb doc dvb +dvd
+dvdnav +enca ftp gif +iconv ipv6 jack joystick jpeg ladspa lcms +libass libcaca
lirc md5sum mng +mp3 +network +opengl oss png pnm portaudio +postproc pulseaudio

@ -1 +1 @@
Mon, 27 Jan 2014 04:07:00 +0000
Mon, 27 Jan 2014 10:07:01 +0000

@ -1 +1 @@
Mon, 27 Jan 2014 04:07:01 +0000
Mon, 27 Jan 2014 10:07:02 +0000

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Parallel bzip2 utility
EAPI=4
HOMEPAGE=https://github.com/kjn/lbzip2/
IUSE=debug symlink
KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux
LICENSE=GPL-3
RDEPEND=symlink? ( !app-arch/pbzip2[symlink] )
SLOT=0
SRC_URI=mirror://github/kjn/lbzip2/lbzip2-2.2.tar.gz
_eclasses_=autotools d76ee21296238133bd2df8dea7f33a05 autotools-utils 559ed17194292ec42d68145dcca2fa32 eutils 40081e8c7e7f7c4f9db349a1d6d52925 libtool b9b3340e3a19510f0d9f05cfccbf209f multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=3f0e29a10133135372c7378676acdff5

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Parallel bzip2 utility
EAPI=5
HOMEPAGE=https://github.com/kjn/lbzip2/
IUSE=debug symlink
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux
LICENSE=GPL-3
RDEPEND=symlink? ( !app-arch/pbzip2[symlink] )
SLOT=0
SRC_URI=http://archive.lbzip2.org/lbzip2-2.3.tar.gz
_eclasses_=autotools d76ee21296238133bd2df8dea7f33a05 autotools-utils 559ed17194292ec42d68145dcca2fa32 eutils 40081e8c7e7f7c4f9db349a1d6d52925 libtool b9b3340e3a19510f0d9f05cfccbf209f multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=f9742caa1e9004d2b5db1a3e2be2739d

@ -12,4 +12,4 @@ RESTRICT=test
SLOT=0
SRC_URI=http://bits.xensource.com/oss-xen/release/4.2.2/xen-4.2.2.tar.gz http://dev.gentoo.org/~idella4/tarballs/ipxe.tar.gz http://dev.gentoo.org/~idella4/tarballs/seabios-0-20121121.tar.bz2 http://dev.gentoo.org/~idella4//patches/XSA-55patches.tar.gz
_eclasses_=bash-completion-r1 db412e427e3317ffd3e15f17df269c5e eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c multilib fac675dcccf94392371a6abee62d909f python-single-r1 82a55861314bbcedaf1e08ed4dd651b3 python-utils-r1 ceb3e4c3ba203e28bb02eeb182d88acf toolchain-funcs 48b38a216afb92db6314d6c3187abea3 udev a9a8d051efb42bfe884c1db82ce161de
_md5_=7486151034ee333ecb685f6ad04ea5c7
_md5_=583bf52e414634158d2e89901d4ed358

@ -12,4 +12,4 @@ RESTRICT=test
SLOT=0
SRC_URI=http://bits.xensource.com/oss-xen/release/4.3.1/xen-4.3.1.tar.gz http://dev.gentoo.org/~idella4/tarballs/ipxe.tar.gz http://dev.gentoo.org/~idella4/tarballs/seabios-dir-remote-20130720.tar.gz
_eclasses_=bash-completion-r1 db412e427e3317ffd3e15f17df269c5e eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c multilib fac675dcccf94392371a6abee62d909f python-single-r1 82a55861314bbcedaf1e08ed4dd651b3 python-utils-r1 ceb3e4c3ba203e28bb02eeb182d88acf toolchain-funcs 48b38a216afb92db6314d6c3187abea3 udev a9a8d051efb42bfe884c1db82ce161de
_md5_=5799cf7de298d868790d1d53053ec72e
_md5_=2ac70368f04ea8aaf6b795184edabaa2

@ -4,11 +4,11 @@ DESCRIPTION=Style and Grammar Checker for libreoffice
EAPI=5
HOMEPAGE=http://www.languagetool.org/
IUSE=office_implementation_libreoffice office_implementation_openoffice
KEYWORDS=~amd64 ~x86
KEYWORDS=amd64 x86
LICENSE=LGPL-2
RDEPEND=office_implementation_libreoffice? ( || ( app-office/libreoffice[java] app-office/libreoffice-bin[java] ) ) office_implementation_openoffice? ( || ( app-office/openoffice[java] app-office/openoffice-bin[java] ) )
REQUIRED_USE=|| ( office_implementation_libreoffice office_implementation_openoffice )
SLOT=0
SRC_URI=http://www.languagetool.org/download/LanguageTool-2.2.oxt
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f office-ext-r1 370fdf6c0ffd835405efe2e8e16d1771 toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=cd093ef4d9c9f717ecf8cf58fbab7876
_md5_=93194b98db37f88da0acdda9a75fde72

@ -4,11 +4,11 @@ DESCRIPTION=Style and Grammar Checker for libreoffice
EAPI=5
HOMEPAGE=http://www.languagetool.org/
IUSE=office_implementation_libreoffice office_implementation_openoffice
KEYWORDS=amd64 x86
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-2
RDEPEND=office_implementation_libreoffice? ( || ( app-office/libreoffice[java] app-office/libreoffice-bin[java] ) ) office_implementation_openoffice? ( || ( app-office/openoffice[java] app-office/openoffice-bin[java] ) )
RDEPEND=>=virtual/jdk-1.7 office_implementation_libreoffice? ( || ( app-office/libreoffice[java] app-office/libreoffice-bin[java] ) ) office_implementation_openoffice? ( || ( app-office/openoffice[java] app-office/openoffice-bin[java] ) )
REQUIRED_USE=|| ( office_implementation_libreoffice office_implementation_openoffice )
SLOT=0
SRC_URI=http://www.languagetool.org/download/LanguageTool-2.1.oxt
SRC_URI=http://www.languagetool.org/download/LanguageTool-2.4.oxt
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f office-ext-r1 370fdf6c0ffd835405efe2e8e16d1771 toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=27267274bbd858394adc80200ca25158
_md5_=460db8de14c0fa7e0b1bd987478ff677

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=dev-lang/perl[doc?] sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6 ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON )
DESCRIPTION=Virtual machine designed to efficiently compile and execute bytecode for dynamic languages
EAPI=3
HOMEPAGE=http://www.parrot.org/
IUSE=opengl nls doc examples gdbm gmp ssl +unicode pcre
KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=Artistic-2
RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6 ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON )
RESTRICT=test
SLOT=0
SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/supported/6.0.0/parrot-6.0.0.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=bb952a9bde4d4f7e324bc829c61536f9

@ -4,9 +4,9 @@ DESCRIPTION=C++ class library of cryptographic schemes
EAPI=5
HOMEPAGE=http://cryptopp.com
IUSE=static-libs
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos
KEYWORDS=~alpha ~amd64 ~arm hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos
LICENSE=Boost-1.0
SLOT=0
SRC_URI=mirror://sourceforge/cryptopp/cryptopp562.zip
_eclasses_=autotools d76ee21296238133bd2df8dea7f33a05 eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c libtool b9b3340e3a19510f0d9f05cfccbf209f multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=f272404f7805e8c9835fe867b07e615d
_md5_=22088486f12585f990c92452bcaaf2d6

@ -1,10 +0,0 @@
DEFINED_PHASES=install unpack
DEPEND=dev-lang/perl
DESCRIPTION=a C client library to the memcached server
HOMEPAGE=http://tangent.org/552/libmemcached.html
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd
LICENSE=BSD
RESTRICT=test
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.22.tar.gz
_md5_=2a992d1e4afc712f080fcbeb33516932

@ -1,10 +0,0 @@
DEFINED_PHASES=install unpack
DEPEND=dev-lang/perl
DESCRIPTION=a C client library to the memcached server
HOMEPAGE=http://tangent.org/552/libmemcached.html
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd
LICENSE=BSD
RESTRICT=test
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.25.tar.gz
_md5_=a1c22516b38b0de8f91d6a13791e540e

@ -1,11 +0,0 @@
DEFINED_PHASES=install unpack
DEPEND=dev-lang/perl net-misc/memcached
DESCRIPTION=a C client library to the memcached server
HOMEPAGE=http://tangent.org/552/libmemcached.html
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd
LICENSE=BSD
RDEPEND=dev-lang/perl net-misc/memcached
RESTRICT=test
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.26.tar.gz
_md5_=5cbf1afedb70cf9136ecf67b46aa74cf

@ -1,12 +0,0 @@
DEFINED_PHASES=install test unpack
DEPEND=net-misc/memcached
DESCRIPTION=a C client library to the memcached server
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=test
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd
LICENSE=BSD
RDEPEND=net-misc/memcached
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.28.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=7919d5cd62cfd6870e9b869f8dda16a2

@ -1,12 +0,0 @@
DEFINED_PHASES=install test unpack
DEPEND=net-misc/memcached
DESCRIPTION=a C client library to the memcached server
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=test
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd
LICENSE=BSD
RDEPEND=net-misc/memcached
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.30.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=92d6c561b8e3e8f11802949748a7746d

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install test unpack
DEPEND=net-misc/memcached
DESCRIPTION=a C client library to the memcached server
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=debug hsieh
KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~sparc-fbsd
LICENSE=BSD
RDEPEND=net-misc/memcached
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.31.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=e647b1f5497f4cf10c7ae66bd8c61269

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install test unpack
DEPEND=net-misc/memcached
DESCRIPTION=a C client library to the memcached server
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=debug hsieh
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd
LICENSE=BSD
RDEPEND=net-misc/memcached
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.34.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=3e33f10706ecb4767c1bafa88afd672b

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install prepare test
DEPEND=net-misc/memcached
DESCRIPTION=a C client library to the memcached server
EAPI=2
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=debug hsieh
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd
LICENSE=BSD
RDEPEND=net-misc/memcached
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.34.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=3a84076ec81b88a8287a727bc4c312b7

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install prepare test
DEPEND=net-misc/memcached
DESCRIPTION=a C client library to the memcached server
EAPI=2
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=debug hsieh
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=BSD
RDEPEND=net-misc/memcached
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.35.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=63532403d67356698ef97a80bdaa1cec

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install prepare test
DEPEND=net-misc/memcached
DESCRIPTION=a C client library to the memcached server
EAPI=2
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=debug hsieh
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=BSD
RDEPEND=net-misc/memcached
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.37.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=c8f8bc679eedebb436fd8be66b6d4b59

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install prepare test
DEPEND=net-misc/memcached
DESCRIPTION=a C client library to the memcached server
EAPI=2
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=debug hsieh
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=BSD
RDEPEND=net-misc/memcached
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.38.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=e386bd6a2196b641cfde9643b43fef72

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install prepare test
DEPEND=net-misc/memcached virtual/perl-PodParser
DESCRIPTION=a C client library to the memcached server
EAPI=2
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=debug hsieh
KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=BSD
RDEPEND=net-misc/memcached virtual/perl-PodParser
SLOT=0
SRC_URI=http://download.tangent.org/libmemcached-0.39.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=2a2e0528b3f0a19e9a0718aa2a2c8d30

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=net-misc/memcached virtual/perl-PodParser doc? ( dev-python/sphinx ) libevent? ( dev-libs/libevent ) tcmalloc? ( dev-util/google-perftools ) sasl? ( virtual/gsasl )
DESCRIPTION=a C client library to the memcached server
EAPI=3
HOMEPAGE=http://libmemcached.org/libMemcached.html
IUSE=debug doc hsieh +libevent sasl static-libs tcmalloc
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=BSD
RDEPEND=net-misc/memcached virtual/perl-PodParser doc? ( dev-python/sphinx ) libevent? ( dev-libs/libevent ) tcmalloc? ( dev-util/google-perftools ) sasl? ( virtual/gsasl )
SLOT=0
SRC_URI=http://launchpad.net/libmemcached/1.0/1.0.11/+download/libmemcached-1.0.11.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=5da033f959d23bcdc24333cee345a9b1

@ -0,0 +1,13 @@
DEFINED_PHASES=configure install prepare
DEPEND=net-misc/memcached dev-libs/cyrus-sasl libevent? ( dev-libs/libevent )
DESCRIPTION=a C client library to the memcached server
EAPI=5
HOMEPAGE=http://libmemcached.org/libMemcached.html
IUSE=debug hsieh +libevent static-libs
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=BSD
RDEPEND=net-misc/memcached dev-libs/cyrus-sasl libevent? ( dev-libs/libevent )
SLOT=0
SRC_URI=http://launchpad.net/libmemcached/1.0/1.0.17/+download/libmemcached-1.0.17.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=56e8a65d1be594836e71c5d9c1c028eb

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=net-misc/memcached virtual/perl-PodParser doc? ( dev-python/sphinx ) libevent? ( dev-libs/libevent ) tcmalloc? ( dev-util/google-perftools ) sasl? ( virtual/gsasl )
DESCRIPTION=a C client library to the memcached server
EAPI=3
HOMEPAGE=http://tangent.org/552/libmemcached.html
IUSE=debug doc hsieh +libevent sasl static-libs tcmalloc
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=BSD
RDEPEND=net-misc/memcached virtual/perl-PodParser doc? ( dev-python/sphinx ) libevent? ( dev-libs/libevent ) tcmalloc? ( dev-util/google-perftools ) sasl? ( virtual/gsasl )
SLOT=0
SRC_URI=http://launchpad.net/libmemcached/1.0/1.0.4/+download/libmemcached-1.0.4.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=40611106f40954a7cd28bead7e4f9b64

@ -4,11 +4,11 @@ DESCRIPTION=Python extension module generator for C and C++ libraries
EAPI=5
HOMEPAGE=http://www.riverbankcomputing.co.uk/software/sip/intro http://pypi.python.org/pypi/SIP
IUSE=debug doc python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=|| ( GPL-2 GPL-3 sip )
RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 )
SLOT=0/10
SRC_URI=mirror://sourceforge/pyqt/sip-4.15.3.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multibuild 56d4120419072116417e8de1bd1040ff multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed python-r1 3bb814ab7959a36067101a6bef683b6f python-utils-r1 ceb3e4c3ba203e28bb02eeb182d88acf toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=0ef1278444cc3f57caaf1854cda20e59
_md5_=8217d5a63d8df94399b9aaad533485c6

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare setup test unpack
DEPEND=virtual/mysql[-static] ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) )
DESCRIPTION=A modern, simple and very fast Mysql library for Ruby - binding to libmysql.
EAPI=5
HOMEPAGE=https://github.com/brianmario/mysql2
IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test
KEYWORDS=~amd64 ~arm ~ppc64 ~x86
LICENSE=MIT
RDEPEND=virtual/mysql[-static] ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] )
REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 )
SLOT=0.3
SRC_URI=mirror://rubygems/mysql2-0.3.15.gem
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib fac675dcccf94392371a6abee62d909f ruby-fakegem 4021487250c740e3dc16b181228db818 ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 48b38a216afb92db6314d6c3187abea3 versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=24a9bce5cae1ce2faa0bbb08ce896367

@ -1,9 +0,0 @@
DEFINED_PHASES=-
DESCRIPTION=Display a histogram of diff changes
EAPI=5
HOMEPAGE=http://invisible-island.net/diffstat/diffstat.html
KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris
LICENSE=HPND
SLOT=0
SRC_URI=ftp://invisible-island.net/diffstat/diffstat-1.57.tgz
_md5_=49068ecf70ddcd3bad7ac7311cd748ec

@ -1,12 +0,0 @@
DEFINED_PHASES=install postinst prepare setup unpack
DESCRIPTION=NVIDIA CUDA Toolkit (compiler and friends)
EAPI=5
HOMEPAGE=http://developer.nvidia.com/cuda
IUSE=debugger doc eclipse profiler
KEYWORDS=-* ~amd64 ~x86 ~amd64-linux ~x86-linux
LICENSE=NVIDIA-CUDA
RDEPEND=|| ( sys-devel/gcc:4.4 sys-devel/gcc:4.5 sys-devel/gcc:4.6 ) !<=x11-drivers/nvidia-drivers-270.41 debugger? ( sys-libs/libtermcap-compat ) profiler? ( >=virtual/jre-1.6 )
SLOT=0/4.2.9
SRC_URI=amd64? ( http://developer.download.nvidia.com/compute/cuda/4_2/rel/toolkit/cudatoolkit_4.2.9_linux_64_ubuntu11.04.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/4_2/rel/toolkit/cudatoolkit_4.2.9_linux_32_ubuntu11.04.run )
_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3 unpacker 04385b0f181c42fa9c18ec0e31729d1f versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=4f73f94764442834cb800748b312418c

@ -1,12 +0,0 @@
DEFINED_PHASES=install postinst prepare setup unpack
DESCRIPTION=NVIDIA CUDA Toolkit (compiler and friends)
EAPI=5
HOMEPAGE=http://developer.nvidia.com/cuda
IUSE=debugger doc eclipse profiler
KEYWORDS=-* ~amd64 ~x86 ~amd64-linux ~x86-linux
LICENSE=NVIDIA-CUDA
RDEPEND=sys-devel/gcc:4.6[cxx] !<=x11-drivers/nvidia-drivers-270.41 debugger? ( sys-libs/libtermcap-compat sys-libs/ncurses[tinfo] ) profiler? ( >=virtual/jre-1.6 )
SLOT=0
SRC_URI=amd64? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_64_fedora16-1.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_32_fedora16-1.run )
_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3 unpacker 04385b0f181c42fa9c18ec0e31729d1f versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=9ff6ec1bce3377b60a48ec0a8caeebed

@ -1,12 +0,0 @@
DEFINED_PHASES=install postinst prepare setup unpack
DESCRIPTION=NVIDIA CUDA Toolkit (compiler and friends)
EAPI=5
HOMEPAGE=http://developer.nvidia.com/cuda
IUSE=debugger doc eclipse profiler
KEYWORDS=-* ~amd64 ~x86 ~amd64-linux ~x86-linux
LICENSE=NVIDIA-CUDA
RDEPEND=sys-devel/gcc:4.6[cxx] !<=x11-drivers/nvidia-drivers-270.41 debugger? ( sys-libs/libtermcap-compat sys-libs/ncurses[tinfo] ) eclipse? ( >=virtual/jre-1.6 ) profiler? ( >=virtual/jre-1.6 )
SLOT=0
SRC_URI=amd64? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_64_fedora16-1.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_32_fedora16-1.run )
_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3 unpacker 04385b0f181c42fa9c18ec0e31729d1f versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=ee140b5c706174872b024d7be99429e6

@ -1,12 +0,0 @@
DEFINED_PHASES=install postinst prepare setup unpack
DESCRIPTION=NVIDIA CUDA Toolkit (compiler and friends)
EAPI=5
HOMEPAGE=http://developer.nvidia.com/cuda
IUSE=debugger doc eclipse profiler
KEYWORDS=-* ~amd64 ~x86 ~amd64-linux ~x86-linux
LICENSE=NVIDIA-CUDA
RDEPEND=sys-devel/gcc:4.6[cxx] !<=x11-drivers/nvidia-drivers-270.41 debugger? ( sys-libs/libtermcap-compat sys-libs/ncurses[tinfo] ) eclipse? ( >=virtual/jre-1.6 ) profiler? ( >=virtual/jre-1.6 )
SLOT=0/5.0.35
SRC_URI=amd64? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_64_fedora16-1.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_32_fedora16-1.run )
_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3 unpacker 04385b0f181c42fa9c18ec0e31729d1f versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=3590c9c5a237654f6c3d90f15236a1eb

@ -1,11 +0,0 @@
DEFINED_PHASES=install
DESCRIPTION=nvidia's c graphics compiler toolkit
HOMEPAGE=http://developer.nvidia.com/object/cg_toolkit.html
KEYWORDS=amd64 x86
LICENSE=NVIDIA-r1
RDEPEND=media-libs/freeglut
RESTRICT=strip
SLOT=0
SRC_URI=x86? ( http://developer.download.nvidia.com/cg/Cg_2.0/2.1.0012/Cg-2.1_October2008_x86.tgz ) amd64? ( http://developer.download.nvidia.com/cg/Cg_2.0/2.1.0012/Cg-2.1_October2008_x86_64.tgz )
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3 versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=b744e7e2b2fcf0b5d48d90c463d04c74

@ -1,11 +0,0 @@
DEFINED_PHASES=install postinst
DESCRIPTION=NVIDIA's C graphics compiler toolkit
HOMEPAGE=http://developer.nvidia.com/object/cg_toolkit.html
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
LICENSE=NVIDIA-r1
RDEPEND=media-libs/freeglut
RESTRICT=strip
SLOT=0
SRC_URI=x86? ( http://developer.download.nvidia.com/cg/Cg_2.1/2.1.0017/Cg-2.1_February2009_x86.tgz ) amd64? ( http://developer.download.nvidia.com/cg/Cg_2.1/2.1.0017/Cg-2.1_February2009_x86_64.tgz )
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3 versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=987fd9f42e2e1d569fb70a2c8d79e18a

@ -1,13 +0,0 @@
DEFINED_PHASES=install postinst
DESCRIPTION=NVIDIA's C graphics compiler toolkit
EAPI=5
HOMEPAGE=http://developer.nvidia.com/object/cg_toolkit.html
IUSE=doc examples
KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux
LICENSE=NVIDIA-r1
RDEPEND=media-libs/freeglut
RESTRICT=strip
SLOT=0
SRC_URI=x86? ( http://developer.download.nvidia.com/cg/Cg_2.1/2.1.0017/Cg-2.1_February2009_x86.tgz ) amd64? ( http://developer.download.nvidia.com/cg/Cg_2.1/2.1.0017/Cg-2.1_February2009_x86_64.tgz )
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f prefix 21058c21ca48453d771df15500873ede toolchain-funcs 48b38a216afb92db6314d6c3187abea3 versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=5f4592a6d6528105173e41ab24544048

@ -1,13 +0,0 @@
DEFINED_PHASES=install postinst unpack
DESCRIPTION=NVIDIA's C graphics compiler toolkit
EAPI=5
HOMEPAGE=http://developer.nvidia.com/object/cg_toolkit.html
IUSE=doc examples multilib
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
LICENSE=NVIDIA-r1
RDEPEND=media-libs/freeglut multilib? ( amd64? ( app-emulation/emul-linux-x86-xlibs ) ) x86? ( virtual/libstdc++:3.3 )
RESTRICT=strip
SLOT=0
SRC_URI=amd64? ( http://developer.download.nvidia.com/cg/Cg_3.1/Cg-3.1_April2012_x86_64.tgz multilib? ( http://developer.download.nvidia.com/cg/Cg_3.1/Cg-3.1_April2012_x86.tgz ) ) x86? ( http://developer.download.nvidia.com/cg/Cg_3.1/Cg-3.1_April2012_x86.tgz )
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f prefix 21058c21ca48453d771df15500873ede toolchain-funcs 48b38a216afb92db6314d6c3187abea3 versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=7054480083141300c2d3f6c016504738

@ -1,13 +0,0 @@
DEFINED_PHASES=install postinst unpack
DESCRIPTION=NVIDIA's C graphics compiler toolkit
EAPI=5
HOMEPAGE=http://developer.nvidia.com/object/cg_toolkit.html
IUSE=doc examples multilib
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
LICENSE=NVIDIA-r1
RDEPEND=media-libs/freeglut multilib? ( amd64? ( app-emulation/emul-linux-x86-xlibs ) ) x86? ( virtual/libstdc++:3.3 )
RESTRICT=strip
SLOT=0
SRC_URI=amd64? ( http://developer.download.nvidia.com/cg/Cg_3.1/Cg-3.1_April2012_x86_64.tgz multilib? ( http://developer.download.nvidia.com/cg/Cg_3.1/Cg-3.1_April2012_x86.tgz ) ) x86? ( http://developer.download.nvidia.com/cg/Cg_3.1/Cg-3.1_April2012_x86.tgz )
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f prefix 21058c21ca48453d771df15500873ede toolchain-funcs 48b38a216afb92db6314d6c3187abea3 versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=e98c09a0b3cc8201dea5006a6d9e3fb2

@ -4,11 +4,11 @@ DESCRIPTION=Media Player for Linux
EAPI=5
HOMEPAGE=http://www.mplayer2.org/
IUSE=+alsa aqua bluray bs2b cddb +cdio cpudetection debug directfb doc dvb +dvd +dvdnav +enca ftp gif +iconv ipv6 jack joystick jpeg ladspa lcms +libass libcaca lirc md5sum mng +mp3 +network +opengl oss png pnm portaudio +postproc pulseaudio pvr +quvi radio samba selinux +shm tga +threads +unicode v4l vcd vdpau +X xinerama +xscreensaver +xv yuv4mpeg symlink 3dnow 3dnowext altivec +mmx mmxext sse sse2 ssse3
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux
KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux
LICENSE=GPL-3
RDEPEND=sys-libs/ncurses sys-libs/zlib X? ( x11-libs/libXext x11-libs/libXxf86vm opengl? ( virtual/opengl ) lcms? ( media-libs/lcms:2 ) vdpau? ( x11-libs/libvdpau ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) ) alsa? ( media-libs/alsa-lib ) bluray? ( media-libs/libbluray ) bs2b? ( media-libs/libbs2b ) cdio? ( || ( dev-libs/libcdio-paranoia <dev-libs/libcdio-0.90[-minimal] ) ) directfb? ( dev-libs/DirectFB ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) ) enca? ( app-i18n/enca ) gif? ( media-libs/giflib ) iconv? ( virtual/libiconv ) jack? ( media-sound/jack-audio-connection-kit ) jpeg? ( virtual/jpeg ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10[enca?,fontconfig] virtual/ttf-fonts ) libcaca? ( media-libs/libcaca ) lirc? ( app-misc/lirc ) mng? ( media-libs/libmng ) mp3? ( media-sound/mpg123 ) png? ( media-libs/libpng ) pnm? ( media-libs/netpbm ) portaudio? ( >=media-libs/portaudio-19_pre20111121 ) postproc? ( || ( media-libs/libpostproc media-video/ffmpeg:0 ) ) pulseaudio? ( media-sound/pulseaudio ) quvi? ( >=media-libs/libquvi-0.4.1 ) samba? ( net-fs/samba ) selinux? ( sec-policy/selinux-mplayer ) >=virtual/ffmpeg-9[threads?,vdpau?] symlink? ( !media-video/mplayer )
REQUIRED_USE=cddb? ( cdio network ) dvdnav? ( dvd ) enca? ( iconv ) lcms? ( opengl ) opengl? ( || ( aqua X ) ) portaudio? ( threads ) pvr? ( v4l ) radio? ( v4l || ( alsa oss ) ) v4l? ( threads ) vdpau? ( X ) xinerama? ( X ) xscreensaver? ( X ) xv? ( X )
SLOT=0
SRC_URI=http://rion-overlay.googlecode.com/files/mplayer2-2.0_p20130428.tar.xz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c multilib fac675dcccf94392371a6abee62d909f python-any-r1 08d3455b23110d650f173ab0a090818b python-utils-r1 ceb3e4c3ba203e28bb02eeb182d88acf toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=f93e8ca21b7348f2994c6fa45ff5f95b
_md5_=d190c912600277759c0cc908898fb820

@ -4,10 +4,10 @@ DESCRIPTION=bind tools: dig, nslookup, host, nsupdate, dnssec-keygen
EAPI=4
HOMEPAGE=http://www.isc.org/software/bind
IUSE=doc gssapi idn ipv6 readline ssl urandom xml
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=ISC BSD BSD-2 HPND JNIC RSA openssl
RDEPEND=ssl? ( dev-libs/openssl:0 ) xml? ( dev-libs/libxml2 ) idn? ( net-dns/idnkit ) gssapi? ( virtual/krb5 ) readline? ( sys-libs/readline )
SLOT=0
SRC_URI=ftp://ftp.isc.org/isc/bind9/9.9.4/bind-9.9.4.tar.gz
_eclasses_=autotools d76ee21296238133bd2df8dea7f33a05 eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c libtool b9b3340e3a19510f0d9f05cfccbf209f multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=e0064fe7bf4d4b82823c29fbefae8ba1
_md5_=38f4ad49f608acb3074ba24a5b89c9e5

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=>=dev-libs/libevent-1.4 dev-lang/perl sasl? ( dev-libs/cyrus-sasl ) test? ( virtual/perl-Test-Harness >=dev-perl/Cache-Memcached-1.24 ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=High-performance, distributed memory object caching system
EAPI=5
HOMEPAGE=http://code.google.com/p/memcached/
IUSE=test slabs-reassign debug sasl
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=BSD
RDEPEND=>=dev-libs/libevent-1.4 dev-lang/perl sasl? ( dev-libs/cyrus-sasl )
SLOT=0
SRC_URI=http://www.memcached.org/files/memcached-1.4.17.tar.gz
_eclasses_=autotools d76ee21296238133bd2df8dea7f33a05 eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c libtool b9b3340e3a19510f0d9f05cfccbf209f multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed toolchain-funcs 48b38a216afb92db6314d6c3187abea3 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=58151ac460fd87f1c377ae4339c98d09

@ -4,10 +4,10 @@ DESCRIPTION=TLS/SSL - Port Wrapper
EAPI=5
HOMEPAGE=http://stunnel.mirt.net/
IUSE=ipv6 selinux tcpd xforward listen-queue ssl
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos
KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=GPL-2
RDEPEND=tcpd? ( sys-apps/tcp-wrappers ) >=dev-libs/openssl-0.9.8k selinux? ( sec-policy/selinux-stunnel )
SLOT=0
SRC_URI=ftp://ftp.stunnel.org/stunnel/stunnel-4.56.tar.gz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f ssl-cert 0b45da48a22fda62c57c1809b8b55315 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 48b38a216afb92db6314d6c3187abea3 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ebfd163263e0e136c41a388962be85e2
_md5_=c9fa162bbd3ca8996eac4e8d2f898b1e

@ -4,9 +4,9 @@ DESCRIPTION=Network Information Service tools
EAPI=5
HOMEPAGE=http://www.linux-nis.org/nis/
IUSE=nls
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86
KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86
LICENSE=GPL-2
SLOT=0
SRC_URI=ftp://ftp.kernel.org/pub/linux/utils/net/NIS/yp-tools-2.12.tar.bz2
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=f2ddaadedf7e2b9ed970f9f14454bef3
_md5_=628f82a5ddfebda082a1958dae41390c

@ -4,10 +4,10 @@ DESCRIPTION=Multithreaded NIS bind service (ypbind-mt)
EAPI=5
HOMEPAGE=http://www.linux-nis.org/nis/ypbind-mt/index.html
IUSE=debug dbus nls slp systemd
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86
KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86
LICENSE=GPL-2
RDEPEND=debug? ( dev-libs/dmalloc ) dbus? ( dev-libs/dbus-glib ) slp? ( net-libs/openslp ) systemd? ( net-nds/rpcbind >=net-nds/yp-tools-2.12-r1 sys-apps/systemd ) !systemd? ( net-nds/yp-tools || ( net-nds/portmap net-nds/rpcbind ) )
SLOT=0
SRC_URI=http://www.linux-nis.org/download/ypbind-mt/ypbind-mt-1.37.1.tar.bz2
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 multilib fac675dcccf94392371a6abee62d909f readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=0adc2abb21a3bb6cabf67e7767d7353b
_md5_=fbd4a96c5b34a12b8fa2fb692b7e4d03

@ -1,9 +0,0 @@
DEFINED_PHASES=compile install unpack
DESCRIPTION=General purpose multiple alignment program for DNA and proteins
HOMEPAGE=http://www.embl-heidelberg.de/~seqanal/
KEYWORDS=alpha amd64 ppc ppc64 sparc x86
LICENSE=clustalw
SLOT=1
SRC_URI=ftp://ftp.ebi.ac.uk/pub/software/unix/clustalw/clustalw1.83.UNIX.tar.gz
_eclasses_=multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=9c2912120a665c7b58f715c83fc58595

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=sys-libs/readline fltk? ( x11-libs/fltk:1 ) gmp? ( dev-libs/gmp ) X? ( x11-libs/libX11 ) doc? ( X? ( x11-misc/xdg-utils ) ) doc? ( virtual/latex-base )
DESCRIPTION=A software package for computer-aided number theory
EAPI=2
HOMEPAGE=http://pari.math.u-bordeaux.fr/
IUSE=doc data fltk gmp static-libs X
KEYWORDS=alpha amd64 hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd
LICENSE=GPL-2
RDEPEND=sys-libs/readline fltk? ( x11-libs/fltk:1 ) gmp? ( dev-libs/gmp ) X? ( x11-libs/libX11 ) doc? ( X? ( x11-misc/xdg-utils ) )
SLOT=0
SRC_URI=http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.3.4.tar.gz data? ( http://pari.math.u-bordeaux.fr/pub/pari/packages/elldata.tgz http://pari.math.u-bordeaux.fr/pub/pari/packages/galdata.tgz http://pari.math.u-bordeaux.fr/pub/pari/packages/seadata.tgz http://pari.math.u-bordeaux.fr/pub/pari/packages/nftables.tgz )
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3
_md5_=5599d3830a0c3e0ab18aa9f0e3f3f71a

@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) || ( kvm xen ) || ( python_targets_pyt
SLOT=0
SRC_URI=http://launchpad.net/nova/grizzly/2013.1.4/+download/nova-2013.1.4.tar.gz
_eclasses_=distutils-r1 364122897f9dc771167ee5ff362e54e1 eutils 40081e8c7e7f7c4f9db349a1d6d52925 multibuild 56d4120419072116417e8de1bd1040ff multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed python-r1 3bb814ab7959a36067101a6bef683b6f python-utils-r1 ceb3e4c3ba203e28bb02eeb182d88acf toolchain-funcs 48b38a216afb92db6314d6c3187abea3 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=c7fc6ecf149bfc788803844aa12adc8b
_md5_=9c7447a89c40a316230e376fb01e0106

@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) || ( kvm xen ) || ( python_targets_pyt
SLOT=0
SRC_URI=http://launchpad.net/nova/havana/2013.2.1/+download/nova-2013.2.1.tar.gz
_eclasses_=distutils-r1 364122897f9dc771167ee5ff362e54e1 eutils 40081e8c7e7f7c4f9db349a1d6d52925 multibuild 56d4120419072116417e8de1bd1040ff multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed python-r1 3bb814ab7959a36067101a6bef683b6f python-utils-r1 ceb3e4c3ba203e28bb02eeb182d88acf toolchain-funcs 48b38a216afb92db6314d6c3187abea3 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=05e3bbfcc0ab1b827f15e703eba2d7ea
_md5_=d64032008c5d651704fd8d72d120327d

@ -1,10 +0,0 @@
DEFINED_PHASES=compile configure install unpack
DESCRIPTION=Another set of autoconf macros for compiling against boost
EAPI=4
HOMEPAGE=http://github.com/tsuna/boost.m4
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux
LICENSE=GPL-3
SLOT=0
SRC_URI=http://dev.gentoo.org/~jlec/distfiles/boost-m4-0.3_pre121130.tar.gz
_eclasses_=vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66
_md5_=59c37c9765118d4ac4f71fbd2ea4fc6a

@ -0,0 +1,13 @@
DEFINED_PHASES=compile install postinst postrm preinst prepare setup
DEPEND=dev-util/patchutils dev-vcs/git kernel_linux? ( virtual/modutils ) sys-apps/sed kernel_linux? ( virtual/linux-sources )
DESCRIPTION=An entirely re-designed and re-implemented Unionfs
EAPI=5
HOMEPAGE=http://aufs.sourceforge.net/
IUSE=debug doc fuse hfs inotify kernel-patch nfs pax_kernel ramfs kernel_linux
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=sys-fs/aufs-util !sys-fs/aufs !sys-fs/aufs2 kernel_linux? ( virtual/modutils )
SLOT=0
SRC_URI=http://dev.gentoo.org/~jlec/distfiles/aufs3-standalone-3_p20140121.tar.xz
_eclasses_=eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c linux-info a9cbd6bbe2b28166e403321882f3c73c linux-mod 101302d4b7b694ea9622bbffb187d0de multilib fac675dcccf94392371a6abee62d909f toolchain-funcs 48b38a216afb92db6314d6c3187abea3 versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=763e95eb8a41f4b75dfcd87ff15bba1d

@ -11,4 +11,4 @@ RESTRICT=test
SLOT=0
SRC_URI=https://github.com/zfsonlinux/zfs/archive/zfs-0.6.2.tar.gz http://dev.gentoo.org/~ryao/dist/zfs-kmod-0.6.2-p2.tar.xz
_eclasses_=autotools d76ee21296238133bd2df8dea7f33a05 autotools-utils 559ed17194292ec42d68145dcca2fa32 bash-completion-r1 db412e427e3317ffd3e15f17df269c5e eutils 40081e8c7e7f7c4f9db349a1d6d52925 flag-o-matic 62e05953761097ae84a70d6c7a3e2c9c libtool b9b3340e3a19510f0d9f05cfccbf209f linux-info a9cbd6bbe2b28166e403321882f3c73c linux-mod 101302d4b7b694ea9622bbffb187d0de multilib fac675dcccf94392371a6abee62d909f multiprocessing c2d96fb38f2596209e98fceda58ba1ed toolchain-funcs 48b38a216afb92db6314d6c3187abea3 versionator a8a3963967d6140be9a14b08bb8f047f
_md5_=c588b102519c0421b151924723c0f75c
_md5_=a9f561dcb27812958339f7fde545602a

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

Loading…
Cancel
Save