Sync with portage [Wed Dec 7 12:25:35 MSK 2011].

mhiretskiy
root 13 years ago
parent c9c7cf82d5
commit 4a9a3694c2

@ -1,160 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-9999-r1.ebuild,v 1.3 2011/11/30 10:15:28 scarabeus Exp $
EAPI=4
[[ ${PV} == 9999 ]] && MY_PV="3.4.4" || MY_PV="${PV}"
RC_VERSION="rc2" # CHECK ME WITH EVERY BUMP!
BASE_SRC_URI="http://download.documentfoundation.org/${PN/-l10n/}/stable/${MY_PV}/rpm/"
OO_EXTENSIONS=(
"472ffb92d82cf502be039203c606643d-Sun-ODF-Template-Pack-en-US_1.0.0.oxt"
"53ca5e56ccd4cab3693ad32c6bd13343-Sun-ODF-Template-Pack-de_1.0.0.oxt"
"4ad003e7bbda5715f5f38fde1f707af2-Sun-ODF-Template-Pack-es_1.0.0.oxt"
"a53080dc876edcddb26eb4c3c7537469-Sun-ODF-Template-Pack-fr_1.0.0.oxt"
"09ec2dac030e1dcd5ef7fa1692691dc0-Sun-ODF-Template-Pack-hu_1.0.0.oxt"
"b33775feda3bcf823cad7ac361fd49a6-Sun-ODF-Template-Pack-it_1.0.0.oxt"
)
inherit rpm eutils versionator office-ext
DESCRIPTION="Translations for the Libreoffice suite."
HOMEPAGE="http://www.libreoffice.org"
LICENSE="LGPL-3"
SLOT="0"
[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="offlinehelp templates"
LANGUAGES_HELP="bg bn bo bs ca_XV ca cs da de dz el en_GB en en_ZA eo es et eu
fi fr gl gu he hi hr hu id is it ja ka km ko mk nb ne nl nn om pl pt_BR pt ru si
sk sl sq sv tg tr ug uk vi zh_CN zh_TW"
LANGUAGES="${LANGUAGES_HELP} af ar as ast be br brx cy dgo fa ga gd kk kn kok ks
ku lo lt lv mai ml mn mni mr my nr nso oc or pa_IN ro rw sa_IN sat sd sh sr ss
st sw_TZ ta te th tn ts uz ve xh zu"
for lang in ${LANGUAGES}; do
helppack=""
langpack=""
if [[ "${LANGUAGES_HELP}" =~ "${lang}" ]]; then
[[ ${lang} == en ]] && lang2=${lang/en/en_US} || lang2=${lang}
helppack=" offlinehelp? ( ${BASE_SRC_URI}/x86/LibO_${MY_PV}_Linux_x86_helppack-rpm_${lang2/_/-}.tar.gz ) "
fi
[[ ${lang} == en ]] \
|| langpack=" ${BASE_SRC_URI}/x86/LibO_${MY_PV}_Linux_x86_langpack-rpm_${lang/_/-}.tar.gz "
SRC_URI+=" linguas_${lang}? (
${langpack}
${helppack}
)"
IUSE+=" linguas_${lang}"
done
unset lang helppack langpack lang2
# dictionaries
SPELL_DICTS="af bg ca cs cy da de el en eo es et fr ga gl he hr hu it ku lt mk
nb nl nn pl pt ru sk sl sv tn zu"
for X in ${SPELL_DICTS} ; do
SPELL_DICTS_DEPEND+=" linguas_${X}? ( app-dicts/myspell-${X} )"
done
RDEPEND="${SPELL_DICTS_DEPEND}"
unset X SPELL_DICTS SPELL_DICTS_DEPEND
# no need for iuse here as this needs to be written out and is subset
# of lignuas anyway
EXT_URI="http://ooo.itc.hu/oxygenoffice/download/libreoffice"
TDEPEND=""
for i in ${OO_EXTENSIONS[@]}; do
lingua=${i/_*.oxt/}
lingua=${lingua/*Pack-/}
if [[ ${lingua} == en-US ]]; then
TDEPEND+=" ${EXT_URI}/${i}"
else
TDEPEND+=" linguas_${lingua}? ( ${EXT_URI}/${i} )"
fi
done
SRC_URI+=" templates? ( ${TDEPEND} )"
unset i lingua TDEPEND EXT_URI
# blockers for old libreoffice with bundled linguas
RDEPEND+="
!=app-office/libreoffice-3.4.9999-r1
!=app-office/libreoffice-9999-r1
|| (
>=app-office/libreoffice-3.4.4.2-r1
>=app-office/libreoffice-bin-3.4.4.2-r1
)
"
RESTRICT="strip"
S="${WORKDIR}"
src_unpack() {
default
local lang dir rpmdir i
local ooextused=()
for lang in ${LANGUAGES}; do
# break away if not enabled; paludis support
use_if_iuse linguas_${lang} || continue
dir=${lang/_/-}
# for english we provide just helppack, as translation is always there
if [[ ${lang} != en ]]; then
rpmdir="LibO_${MY_PV}${RC_VERSION}_Linux_x86_langpack-rpm_${dir}/RPMS/"
[[ -d ${rpmdir} ]] || die "Missing directory: \"${rpmdir}\""
# First remove dictionaries, we want to use system ones.
rm -rf "${S}/${rpmdir}/"*dict*.rpm
rpm_unpack "./${rpmdir}/"*.rpm
fi
if [[ "${LANGUAGES_HELP}" =~ "${lang}" ]] && use offlinehelp; then
[[ ${lang} == en ]] && dir="en-US"
rpmdir="LibO_${MY_PV}${RC_VERSION}_Linux_x86_helppack-rpm_${dir}/RPMS/"
[[ -d ${rpmdir} ]] || die "Missing directory: \"${rpmdir}\""
rpm_unpack ./"${rpmdir}/"*.rpm
fi
if use templates; then
for i in ${OO_EXTENSIONS[@]}; do
lingua=${i/_*.oxt/}
lingua=${lingua/*Pack-/}
if [[ ${lang} == ${lingua} || ${lingua} == en-US ]]; then
if [[ ! -f "${S}/${i}" ]]; then
cp -v "${DISTDIR}/${i}" "${S}"
ooextused+=( "${i}" )
fi
fi
done
fi
done
OO_EXTENSIONS=()
for i in ${ooextused[@]}; do
OO_EXTENSIONS+=( ${i} )
done
}
src_prepare() { :; }
src_configure() { :; }
src_compile() { :; }
src_install() {
local dir="${S}"/opt/${PN/-l10n/}$(get_version_component_range 1-2 ${MY_PV})/basis$(get_version_component_range 1-2 ${MY_PV})/
# Condition required for people that do not install anything eg no linguas
# or just english with no offlinehelp.
if [[ -d "${dir}" ]] ; then
insinto /usr/$(get_libdir)/${PN/-l10n/}/
doins -r "${dir}"/*
fi
echo "${OO_EXTENSIONS[@]}"
office-ext_src_install
}
pkg_postinst() {
office-ext_pkg_postinst
}
pkg_prerm() {
office-ext_pkg_prerm
}

@ -0,0 +1,498 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-3.5.9999.ebuild,v 1.2 2011/12/06 16:04:36 scarabeus Exp $
EAPI=4
KDE_REQUIRED="optional"
KDE_SCM="git"
CMAKE_REQUIRED="never"
PYTHON_DEPEND="2"
PYTHON_USE_WITH="threads,xml"
# experimental ; release ; old
# Usually the tarballs are moved a lot so this should make
# everyone happy.
DEV_URI="
http://dev-builds.libreoffice.org/pre-releases/src
http://download.documentfoundation.org/libreoffice/src
http://download.documentfoundation.org/libreoffice/old/src
"
EXT_URI="http://ooo.itc.hu/oxygenoffice/download/libreoffice"
ADDONS_URI="http://dev-www.libreoffice.org/src/"
BRANDING="${PN}-branding-gentoo-0.3.tar.xz"
# PATCHSET="${P}-patchset-01.tar.xz"
[[ ${PV} == *9999* ]] && SCM_ECLASS="git-2"
inherit base autotools bash-completion-r1 check-reqs eutils java-pkg-opt-2 kde4-base pax-utils prefix python multilib toolchain-funcs flag-o-matic nsplugins ${SCM_ECLASS}
unset SCM_ECLASS
DESCRIPTION="LibreOffice, a full office productivity suite."
HOMEPAGE="http://www.libreoffice.org"
SRC_URI="branding? ( http://dev.gentooexperimental.org/~scarabeus/${BRANDING} )"
[[ -n ${PATCHSET} ]] && SRC_URI+=" http://dev.gentooexperimental.org/~scarabeus/${PATCHSET}"
# Split modules following git/tarballs
# Core MUST be first!
MODULES="core binfilter"
# Only release has the tarballs
if [[ ${PV} != *9999* ]]; then
for i in ${DEV_URI}; do
for mod in ${MODULES}; do
if [[ ${mod} == binfilter ]]; then
SRC_URI+=" binfilter? ( ${i}/${PN}-${mod}-${PV}.tar.bz2 )"
else
SRC_URI+=" ${i}/${PN}-${mod}-${PV}.tar.bz2"
fi
done
unset mod
done
unset i
fi
unset DEV_URI
# Really required addons
# These are bundles that can't be removed for now due to huge patchsets.
# If you want them gone, patches are welcome.
ADDONS_SRC+=" ${ADDONS_URI}/ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz"
ADDONS_SRC+=" xmlsec? ( ${ADDONS_URI}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz )"
ADDONS_SRC+=" java? ( ${ADDONS_URI}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip )"
ADDONS_SRC+=" java? ( ${ADDONS_URI}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip )"
ADDONS_SRC+=" java? ( ${ADDONS_URI}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip )"
ADDONS_SRC+=" java? ( ${ADDONS_URI}/ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip )"
ADDONS_SRC+=" odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll )"
SRC_URI+=" ${ADDONS_SRC}"
unset ADDONS_URI
unset EXT_URI
unset ADDONS_SRC
IUSE="binfilter +branding dbus debug eds gnome +graphite gstreamer +gtk gtk3
+jemalloc kde mysql +nsplugin odk opengl pdfimport postgres svg test +vba
+webdav +xmlsec"
LICENSE="LGPL-3"
SLOT="0"
[[ ${PV} == *9999* ]] || KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
NSS_DEPEND="
>=dev-libs/nspr-4.8.8
>=dev-libs/nss-3.12.9
"
COMMON_DEPEND="
app-arch/zip
app-arch/unzip
>=app-text/hunspell-1.3.2-r3
app-text/mythes
>=app-text/libexttextcat-3.2
app-text/libwpd:0.9[tools]
app-text/libwpg:0.2
>=app-text/libwps-0.2.2
dev-cpp/libcmis
dev-db/unixODBC
dev-libs/expat
>=dev-libs/glib-2.28
>=dev-libs/hyphen-2.7.1
>=dev-libs/icu-4.8.1-r1
>=dev-lang/perl-5.0
>=dev-libs/openssl-1.0.0d
>=dev-libs/redland-1.0.14[ssl]
>=media-libs/fontconfig-2.8.0
media-libs/freetype:2
>=media-libs/libpng-1.4
media-libs/libvisio
net-print/cups
sci-mathematics/lpsolve
>=sys-libs/db-4.8
virtual/jpeg
>=x11-libs/cairo-1.10.0
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXrender
dbus? ( >=dev-libs/dbus-glib-0.92 )
eds? ( gnome-extra/evolution-data-server )
gnome? (
gnome-base/gconf:2
gnome-base/orbit
)
gtk? ( >=x11-libs/gtk+-2.24:2 )
gtk3? ( >=x11-libs/gtk+-3.2:3 )
graphite? ( media-gfx/graphite2 )
gstreamer? (
>=media-libs/gstreamer-0.10
>=media-libs/gst-plugins-base-0.10
)
java? (
>=dev-java/bsh-2.0_beta4
dev-java/lucene:2.9
dev-java/lucene-analyzers:2.3
)
jemalloc? ( dev-libs/jemalloc )
mysql? ( >=dev-db/mysql-connector-c++-1.1.0 )
opengl? ( virtual/opengl )
pdfimport? ( >=app-text/poppler-0.16[xpdf-headers,cxx] )
postgres? ( >=dev-db/postgresql-base-8.4.0 )
svg? ( gnome-base/librsvg )
webdav? ( net-libs/neon )
xmlsec? ( ${NSS_DEPEND} )
"
RDEPEND="${COMMON_DEPEND}
!app-office/libreoffice-bin
!app-office/openoffice-bin
!app-office/openoffice
media-fonts/libertine-ttf
media-fonts/liberation-fonts
java? ( >=virtual/jre-1.6 )
"
PDEPEND="
>=app-office/libreoffice-l10n-3.5.0
"
# FIXME: cppunit should be moved to test conditional
# after everything upstream is under gbuild
# as dmake execute tests right away
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.46
>=dev-libs/libxml2-2.7.8
dev-libs/libxslt
dev-perl/Archive-Zip
dev-util/cppunit
>=dev-util/gperf-3
dev-util/intltool
dev-util/mdds
>=dev-util/pkgconfig-0.26
media-libs/sampleicc
>=net-misc/curl-7.21.4
net-misc/npapi-sdk
>=sys-apps/findutils-4.4.2
sys-devel/bison
sys-apps/coreutils
sys-devel/flex
sys-devel/gettext
>=sys-devel/make-3.82
sys-libs/zlib
x11-libs/libXtst
x11-proto/randrproto
x11-proto/xextproto
x11-proto/xineramaproto
x11-proto/xproto
java? (
=virtual/jdk-1.6*
>=dev-java/ant-core-1.7
test? ( dev-java/junit:4 )
)
"
PATCHES=(
)
REQUIRED_USE="
nsplugin? ( gtk )
gnome? ( gtk )
eds? ( gnome )
"
S="${WORKDIR}/${PN}-core-${PV}"
pkg_pretend() {
local pgslot
if [[ ${MERGE_TYPE} != binary ]]; then
CHECKREQS_MEMORY="1G"
use debug && CHECKREQS_DISK_BUILD="15G" || CHECKREQS_DISK_BUILD="9G"
check-reqs_pkg_pretend
if [[ $(gcc-major-version) -lt 4 ]]; then
eerror "Compilation with gcc older than 4.0 is not supported"
die "Too old gcc found."
fi
fi
# ensure pg version
if use postgres; then
pgslot=$(postgresql-config show)
if [[ ${pgslot//.} < 90 ]] ; then
eerror "PostgreSQL slot must be set to 9.0 or higher."
eerror " postgresql-config set 9.0"
die "PostgreSQL slot is not set to 9.0 or higher."
fi
fi
}
pkg_setup() {
java-pkg-opt-2_pkg_setup
kde4-base_pkg_setup
python_set_active_version 2
python_pkg_setup
if ! use gtk; then
ewarn "If you want the LibreOffice systray quickstarter to work"
ewarn "activate the 'gtk' use flag."
ewarn
fi
}
src_unpack() {
local mod dest tmplfile tmplname mypv
[[ -n ${PATCHSET} ]] && unpack ${PATCHSET}
if use branding; then
unpack "${BRANDING}"
fi
if [[ ${PV} != *9999* ]]; then
for mod in ${MODULES}; do
if [[ ${mod} == binfilter ]] && ! use binfilter; then
continue
fi
unpack "${PN}-${mod}-${PV}.tar.bz2"
if [[ ${mod} != core ]]; then
mv -n "${WORKDIR}/${PN}-${mod}-${PV}"/* "${S}"
rm -rf "${WORKDIR}/${PN}-${mod}-${PV}"
fi
done
else
for mod in ${MODULES}; do
if [[ ${mod} == binfilter ]] && ! use binfilter; then
continue
fi
mypv=${PV/.9999}
[[ ${mypv} != ${PV} ]] && EGIT_BRANCH="${PN}-${mypv/./-}"
EGIT_PROJECT="${PN}/${mod}"
EGIT_SOURCEDIR="${WORKDIR}/${PN}-${mod}-${PV}"
EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}/${mod}"
EGIT_NOUNPACK="true"
git-2_src_unpack
if [[ ${mod} != core ]]; then
mv -n "${WORKDIR}/${PN}-${mod}-${PV}"/* "${S}"
rm -rf "${WORKDIR}/${PN}-${mod}-${PV}"
fi
done
unset EGIT_PROJECT EGIT_SOURCEDIR EGIT_REPO_URI EGIT_BRANCH
fi
}
src_prepare() {
# optimization flags
export ARCH_FLAGS="${CXXFLAGS}"
export LINKFLAGSOPTIMIZE="${LDFLAGS}"
# patchset
if [[ -n ${PATCHSET} ]]; then
EPATCH_FORCE="yes" \
EPATCH_SOURCE="${WORKDIR}/${PATCHSET/.tar.xz/}" \
EPATCH_SUFFIX="patch" \
epatch
fi
base_src_prepare
eautoreconf
# hack in the autogen.sh
touch autogen.lastrun
}
src_configure() {
local java_opts
local internal_libs
local themes="default"
local jbs=$(sed -ne 's/.*\(-j[[:space:]]*\|--jobs=\)\([[:digit:]]\+\).*/\2/;T;p' <<< "${MAKEOPTS}")
# recheck that there is some value in jobs
[[ -z ${jbs} ]] && jbs="1"
# expand themes we are going to build based on DE useflags
use gnome && themes+=" tango"
use kde && themes+=" oxygen"
# sane: just sane.h header that is used for scan in writer, not
# linked or anything else, worthless to depend on
# vigra: just uses templates from there
# it is serious pain in the ass for packaging
# should be replaced by boost::gil if someone interested
internal_libs+="
--without-system-sane
--without-system-vigra
"
if use java; then
# hsqldb: system one is too new
# saxon: system one does not work properly
java_opts="
--without-system-hsqldb
--without-system-saxon
--with-ant-home="${ANT_HOME}"
--with-jdk-home=$(java-config --jdk-home 2>/dev/null)
--with-java-target-version=$(java-pkg_get-target)
--with-jvm-path="${EPREFIX}/usr/$(get_libdir)/"
--with-beanshell-jar=$(java-pkg_getjar bsh bsh.jar)
--with-lucene-core-jar=$(java-pkg_getjar lucene-2.9 lucene-core.jar)
--with-lucene-analyzers-jar=$(java-pkg_getjar lucene-analyzers-2.3 lucene-analyzers.jar)
"
if use test; then
java_opts+=" --with-junit=$(java-pkg_getjar junit-4 junit.jar)"
else
java_opts+=" --without-junit"
fi
fi
if use branding; then
internal_libs+="
--with-about-bitmap="${WORKDIR}/branding-about.png"
--with-intro-bitmap="${WORKDIR}/branding-intro.png"
"
fi
# system headers/libs/...: enforce using system packages
# --enable-unix-qstart-libpng: use libpng splashscreen that is faster
# --enable-cairo: ensure that cairo is always required
# --enable-*-link: link to the library rather than just dlopen on runtime
# --enable-release-build: build the libreoffice as release
# --disable-fetch-external: prevent dowloading during compile phase
# --disable-gnome-vfs: old gnome virtual fs support
# --disable-kdeab: kde3 adressbook
# --disable-kde: kde3 support
# --disable-ldap: ldap requires internal mozilla stuff, same like mozab
# --disable-mozilla: disable mozilla build that is used for adresbook, not
# affecting the nsplugin that is always ON
# --disable-pch: precompiled headers cause build crashes
# --disable-rpath: relative runtime path is not desired
# --disable-static-gtk: ensure that gtk is linked dynamically
# --disable-ugly: disable ugly pieces of code
# --disable-zenity: disable build icon
# --enable-extension-integration: enable any extension integration support
# --with-{max-jobs,num-cpus}: ensuring parallel building
# --without-{afms,fonts,myspell-dicts,ppsd}: prevent install of sys pkgs
# --without-stlport: disable deprecated extensions framework
# --disable-ext-report-builder: too much java packages pulled in
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}/" \
--with-system-headers \
--with-system-libs \
--with-system-jars \
--with-system-dicts \
--enable-cairo-canvas \
--enable-largefile \
--enable-python=system \
--enable-randr \
--enable-randr-link \
--enable-release-build \
--enable-unix-qstart-libpng \
--disable-crashdump \
--disable-dependency-tracking \
--disable-epm \
--disable-fetch-external \
--disable-gnome-vfs \
--disable-ext-report-builder \
--disable-kdeab \
--disable-kde \
--disable-ldap \
--disable-mozilla \
--disable-online-update \
--disable-pch \
--disable-rpath \
--disable-static-gtk \
--disable-strip-solver \
--disable-ugly \
--disable-zenity \
--with-alloc=$(use jemalloc && echo "jemalloc" || echo "system") \
--with-build-version="Gentoo official package" \
--enable-extension-integration \
--with-external-dict-dir="${EPREFIX}/usr/share/myspell" \
--with-external-hyph-dir="${EPREFIX}/usr/share/myspell" \
--with-external-thes-dir="${EPREFIX}/usr/share/myspell" \
--with-external-tar="${DISTDIR}" \
--with-lang="" \
--with-max-jobs=${jbs} \
--with-num-cpus=${jbs} \
--with-theme="${themes}" \
--with-unix-wrapper=libreoffice \
--with-vendor="Gentoo Foundation" \
--with-x \
--without-afms \
--without-fonts \
--without-myspell-dicts \
--without-ppds \
--without-stlport \
--without-system-mozilla \
--without-help \
--without-helppack-integration \
--without-sun-templates \
$(use_enable binfilter) \
$(use_enable dbus) \
$(use_enable debug crashdump) \
$(use_enable eds evolution2) \
$(use_enable gnome gconf) \
$(use_enable gnome gio) \
$(use_enable gnome lockdown) \
$(use_enable graphite) \
$(use_enable gstreamer) \
$(use_enable gtk) \
$(use_enable gtk3) \
$(use_enable gtk systray) \
$(use_enable java ext-scripting-beanshell) \
$(use_enable kde kde4) \
$(use_enable mysql ext-mysql-connector) \
$(use_enable nsplugin) \
$(use_enable odk) \
$(use_enable opengl) \
$(use_enable pdfimport ext-pdfimport) \
$(use_enable postgres ext-postgresql-sdbc) \
$(use_enable svg librsvg system) \
$(use_enable test linkoo) \
$(use_enable vba) \
$(use_enable vba activex-component) \
$(use_enable webdav neon) \
$(use_enable xmlsec) \
$(use_with java) \
$(use_with mysql system-mysql-cppconn) \
${internal_libs} \
${java_opts}
}
src_compile() {
# this is not a proper make script and the jobs are passed during configure
make build || die
}
src_test() {
make check || die
}
src_install() {
# This is not Makefile so no buildserver
make DESTDIR="${D}" distro-pack-install -o build -o check || die
# Fix bash completion placement
newbashcomp "${ED}"/etc/bash_completion.d/libreoffice.sh ${PN}
rm -rf "${ED}"/etc/
# symlink the nsplugin to system location
if use nsplugin; then
inst_plugin /usr/$(get_libdir)/libreoffice/program/libnpsoplugin.so
fi
if use branding; then
insinto /usr/$(get_libdir)/${PN}/program
newins "${WORKDIR}/branding-sofficerc" sofficerc
fi
}
pkg_preinst() {
# Cache updates - all handled by kde eclass for all environments
kde4-base_pkg_preinst
}
pkg_postinst() {
kde4-base_pkg_postinst
pax-mark -m "${EPREFIX}"/usr/$(get_libdir)/libreoffice/program/soffice.bin
}
pkg_postrm() {
kde4-base_pkg_postrm
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-9999-r2.ebuild,v 1.12 2011/12/04 15:53:40 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-9999-r2.ebuild,v 1.13 2011/12/06 16:04:36 scarabeus Exp $
EAPI=4
@ -149,7 +149,7 @@ RDEPEND="${COMMON_DEPEND}
"
PDEPEND="
=app-office/libreoffice-l10n-$(get_version_component_range 1-3)*
>=app-office/libreoffice-l10n-3.5
"
# FIXME: cppunit should be moved to test conditional

@ -1,5 +1,2 @@
DIST eix-0.22.11.tar.xz 438672 RMD160 8b6496d7409bf2347f736acc998142aee4397165 SHA1 94e9a9c290ef4e6d4668b165a52bddd3860d6a4c SHA256 48e78234b4c0233b1e4532f77f941300b41dba892835738ad3c17a463564606d
DIST eix-0.22.5.tar.xz 425508 RMD160 aae4b9d433b0d8359119744013953bdc85a07da4 SHA1 455de81092b0bf336792c4c0832eed58686c523a SHA256 f7905688eea16ed48e864ec59bafbcfb7cfce17b38a06e0824d1e2598b842c49
DIST eix-0.23.1.tar.xz 440472 RMD160 cb2831b4c5f54fb223d707efe725cdc1bd0d424b SHA1 6604e40a27e745d9d58bd26d2a6f28e35f6cc0c6 SHA256 22079a4e844208a267f3f47f5c6934b2fddf4d00dd65f6867d52a9a7973ed0ff
DIST eix-0.23.2.tar.xz 443336 RMD160 02a20f0c5a11a1555de4eb866e1d8a63a9de5041 SHA1 0872022ea2ec8babe2c05b993731610c66ec01ab SHA256 1e5612ad91739c9e4290075da82a66b29dda07e7d970118319a23660cb72f0e2
DIST eix-0.23.3.tar.xz 443364 RMD160 ad7b6842ceeaa4d93bdf7fa6fcdc85f773b54970 SHA1 55d9a6ef2ebf07ba4293b9b2b78443658c47b12f SHA256 c9525a4f8605250469600667e364e2d9325d7964b3476653bb8908f28cccb828

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.22.11.ebuild,v 1.9 2011/09/06 08:33:45 chainsaw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.22.11.ebuild,v 1.10 2011/12/06 19:55:30 darkside Exp $
EAPI="4"
@ -12,7 +12,7 @@ SRC_URI="mirror://berlios/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="bzip2 debug doc hardened nls optimization strong-optimization sqlite tools zsh-completion"
RDEPEND="sqlite? ( >=dev-db/sqlite-3 )

@ -1,41 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.22.5.ebuild,v 1.10 2011/02/13 13:19:07 armin76 Exp $
EAPI=3
inherit multilib
DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://eix.berlios.de"
SRC_URI="mirror://berlios/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="+bzip2 debug doc hardened nls optimization strong-optimization sqlite tools"
RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
nls? ( virtual/libintl )
bzip2? ( app-arch/bzip2 )"
DEPEND="${RDEPEND}
app-arch/xz-utils
doc? ( dev-python/docutils )
nls? ( sys-devel/gettext )"
src_configure() {
econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \
$(use_enable nls) $(use_enable tools separate-tools) \
$(use_enable hardened security) $(use_enable optimization) \
$(use_enable strong-optimization) $(use_enable debug debugging) \
--with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
--with-portage-rootpath="${ROOTPATH}" \
--with-eprefix-default="${EPREFIX}" \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
prepalldocs
}

@ -1,42 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.23.1.ebuild,v 1.1 2011/09/13 16:37:51 darkside Exp $
EAPI=4
inherit multilib bash-completion-r1
DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://eix.berlios.de"
SRC_URI="mirror://berlios/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="debug doc nls optimization security strong-optimization sqlite tools zsh-completion"
RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
nls? ( virtual/libintl )
zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 )"
DEPEND="${RDEPEND}
app-arch/xz-utils
nls? ( sys-devel/gettext )"
src_configure() {
econf $(use_with sqlite) $(use_with doc extra-doc) \
$(use_with zsh-completion) \
$(use_enable nls) $(use_enable tools separate-tools) \
$(use_enable security) $(use_enable optimization) \
$(use_enable strong-optimization) $(use_enable debug debugging) \
$(use_with prefix always-accept-keywords) \
--with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
--with-portage-rootpath="${ROOTPATH}" \
--with-eprefix-default="${EPREFIX}" \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
}
src_install() {
default
dobashcomp bash/eix
}

@ -1,42 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.23.2.ebuild,v 1.1 2011/10/21 21:01:36 darkside Exp $
EAPI=4
inherit multilib bash-completion-r1
DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://eix.berlios.de"
SRC_URI="mirror://berlios/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="debug doc nls optimization security strong-optimization sqlite tools zsh-completion"
RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
nls? ( virtual/libintl )
zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 )"
DEPEND="${RDEPEND}
app-arch/xz-utils
nls? ( sys-devel/gettext )"
src_configure() {
econf $(use_with sqlite) $(use_with doc extra-doc) \
$(use_with zsh-completion) \
$(use_enable nls) $(use_enable tools separate-tools) \
$(use_enable security) $(use_enable optimization) \
$(use_enable strong-optimization) $(use_enable debug debugging) \
$(use_with prefix always-accept-keywords) \
--with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
--with-portage-rootpath="${ROOTPATH}" \
--with-eprefix-default="${EPREFIX}" \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
}
src_install() {
default
dobashcomp bash/eix
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.23.3.ebuild,v 1.1 2011/11/06 21:00:52 darkside Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.23.3-r1.ebuild,v 1.1 2011/12/06 19:59:28 darkside Exp $
EAPI=4
@ -29,6 +29,7 @@ src_configure() {
$(use_enable security) $(use_enable optimization) \
$(use_enable strong-optimization) $(use_enable debug debugging) \
$(use_with prefix always-accept-keywords) \
--without-bzip2 \
--with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
--with-portage-rootpath="${ROOTPATH}" \
--with-eprefix-default="${EPREFIX}" \

@ -1,3 +1 @@
DIST webgen-0.4.7.gem 3247616 RMD160 598e037dffc3f8b35fba4d740a8a6fa5a9b9ce53 SHA1 cc4fb4015132f530ccff320603e5084e43f3e65a SHA256 d8c1cd85a9ab0acdf05b4d0d8c8a32d02b638bc9ed9e586d16a5954b76caf60a
DIST webgen-0.5.13.gem 429056 RMD160 c0d512c916f996aefe45f34f12526eb14d301b54 SHA1 e537dc2bf9c75b100e848058cd8cfbfc069670c1 SHA256 a00ddf7a502a6b9c363f432c0c0eb7f80897faf8dea7679db1e5181d7369b7cc
DIST webgen-0.5.14.gem 429056 RMD160 975bf37535ddf90de665e304080f523c74e07dc7 SHA1 b757d2f3684e873b45c2d41d9ddb90cc28e8939a SHA256 a0a5d871df27ae47a170bee04dc83e89706d85ef3815c474f6c491a42fce0fb7

@ -1,22 +0,0 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/webgen/webgen-0.4.7.ebuild,v 1.2 2008/04/11 18:46:18 coldwind Exp $
inherit ruby gems
DESCRIPTION="A template-based static website generator."
HOMEPAGE="http://webgen.rubyforge.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="builder exif highlight markdown thumbnail"
DEPEND=">=dev-ruby/cmdparse-2.0.0
>=dev-ruby/redcloth-2.0.10
builder? ( >=dev-ruby/builder-2.0.0 )
exif? ( >=dev-ruby/exifr-0.10 )
highlight? ( >=dev-ruby/coderay-0.7.4.215 )
markdown? ( || ( >=dev-ruby/bluecloth-1.0.0 dev-ruby/maruku ) )
thumbnail? ( >=dev-ruby/rmagick-1.7.1 )"
RDEPEND="${DEPEND}"

@ -1,42 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/webgen/webgen-0.5.13.ebuild,v 1.2 2010/07/21 08:32:41 graaff Exp $
EAPI=2
USE_RUBY="ruby18"
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
RUBY_FAKEGEM_EXTRADOC="AUTHORS ChangeLog THANKS"
RUBY_FAKEGEM_EXTRAINSTALL="data misc"
inherit ruby-fakegem
DESCRIPTION="A template-based static website generator."
HOMEPAGE="http://webgen.rubyforge.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="builder highlight markdown"
# Some tests are broken now, partly due to missing dependencies that
# are optional for the package as a whole. Other broken tests have
# been reported upstream:
# http://rubyforge.org/tracker/index.php?func=detail&aid=28392&group_id=296&atid=1207
# http://rubyforge.org/tracker/index.php?func=detail&aid=28393&group_id=296&atid=1207
RESTRICT="test"
ruby_add_bdepend "doc? ( dev-ruby/rdoc )"
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
ruby_add_rdepend ">=dev-ruby/cmdparse-2.0.0
>=dev-ruby/redcloth-4.1.9
builder? ( >=dev-ruby/builder-2.1.0 )
highlight? ( >=dev-ruby/coderay-0.8.312 )
markdown? ( dev-ruby/maruku )"
all_ruby_install() {
all_fakegem_install
doman man/man1/webgen.1 || die
}

@ -1,5 +1,6 @@
DIST v8-3.5.10.24.tar.bz2 9378560 RMD160 5d6be86af37aed9e7a227fec817e76980f9802d7 SHA1 a20b0ff0baff46b75289c30016e1744457399208 SHA256 4fa2c6cc996463db122fc73267a64d0c00b17e0cddf11aa02bfab6b126b797ee
DIST v8-3.6.6.6.tar.bz2 9619754 RMD160 8d8af502c4b90a534e302850349cc62c64e330b1 SHA1 25b65a7246731b5f91db3a0a8a0c6bd377b1fff5 SHA256 f51de4710c547373df546810e8d51c60cc90dd07881bf575191ade065964d6d6
DIST v8-3.6.6.9.tar.bz2 9622646 RMD160 94a99d7e1179b2c377b9a55ce4d69eea0b022609 SHA1 5c65e4b8ef5273de48772a143c5b413037edb537 SHA256 2730f4601fd90a3b90916ecb07fc621ebc9eddd8d7e21799a906f6eec4c985ba
DIST v8-3.7.12.6.tar.bz2 9828973 RMD160 762b60985494614ba2357def94dc23d931d6d9e7 SHA1 fe11464955665676df8e2d86ff8b655cd5c25673 SHA256 37d4e885efd90d47598a8821d8d99941ae586ff1b5f29832da497732e5f7bca4
DIST v8-3.7.6.tar.bz2 9794134 RMD160 8ad53560e1a2b55e720c36bbcc19f08f888d5abc SHA1 7d8f81876164f7f0d28dbc8616f2a0afcccd3bec SHA256 5cdbd893c41f552a33d6fabcc2df88c9610a410d2993f3791cdeef318ff25189
DIST v8-3.7.7.tar.bz2 9796280 RMD160 bf58f21e6b422fe82ab90e281b29947d5c969f85 SHA1 ebb1c5a454fc375fac4d7075b91b387f5c4b6e48 SHA256 83e08194789bf3226a7fc20a98438b30a28eaecd6bf937796e30dc8a8c50d301

@ -0,0 +1,129 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.7.12.6.ebuild,v 1.1 2011/12/07 04:43:06 floppym Exp $
EAPI="4"
PYTHON_DEPEND="2:2.6"
inherit eutils multilib pax-utils python toolchain-funcs
DESCRIPTION="Google's open source JavaScript engine"
HOMEPAGE="http://code.google.com/p/v8"
SRC_URI="http://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~x64-macos ~x86-macos"
IUSE=""
pkg_pretend() {
local gccver=$(gcc-fullversion)
if [[ ${gccver} = 4.5.2 ]]; then
eerror "The currently selected version of gcc is known to segfault when building this"
eerror "version of V8. Please use at least gcc-4.5.3."
die "gcc-${gccver} detected."
fi
}
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_compile() {
tc-export AR CC CXX RANLIB
export LINK="${CXX}"
# Use target arch detection logic from bug #354601.
case ${CHOST} in
i?86-*) myarch=ia32 ;;
x86_64-*)
if [[ $ABI = x86 ]] ; then
myarch=ia32
else
myarch=x64
fi ;;
arm*-*) myarch=arm ;;
*) die "Unrecognized CHOST: ${CHOST}"
esac
mytarget=${myarch}.release
soname_version="${PV}"
local snapshot=on
host-is-pax && snapshot=off
# TODO: Add console=readline option once implemented upstream
# http://code.google.com/p/v8/issues/detail?id=1781
emake V=1 \
library=shared \
werror=no \
soname_version=${soname_version} \
snapshot=${snapshot} \
${mytarget} || die
pax-mark m out/${mytarget}/{cctest,d8,shell} || die
}
src_test() {
local arg testjobs
for arg in ${MAKEOPTS}; do
case ${arg} in
-j*) testjobs=${arg#-j} ;;
--jobs=*) testjobs=${arg#--jobs=} ;;
esac
done
tools/test-wrapper-gypbuild.py \
-j${testjobs:-1} \
--arch-and-mode=${mytarget} \
--no-presubmit \
--progress=dots || die
}
src_install() {
insinto /usr
doins -r include || die
dobin out/${mytarget}/d8 || die
if [[ ${CHOST} == *-darwin* ]] ; then
install_name_tool \
-id "${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname).${soname_version} \
out/${mytarget}/lib.target/libv8$(get_libname).${soname_version} || die
fi
dolib out/${mytarget}/lib.target/libv8$(get_libname).${soname_version} || die
dosym libv8$(get_libname).${soname_version} /usr/$(get_libdir)/libv8$(get_libname) || die
dodoc AUTHORS ChangeLog || die
}
pkg_preinst() {
preserved_libs=()
local baselib candidate
eshopts_push -s nullglob
for candidate in "${EROOT}usr/$(get_libdir)"/libv8-*$(get_libname) \
"${EROOT}usr/$(get_libdir)"/libv8$(get_libname).*; do
baselib=${candidate##*/}
if [[ ! -e "${ED}usr/$(get_libdir)/${baselib}" ]]; then
preserved_libs+=( "${EPREFIX}/usr/$(get_libdir)/${baselib}" )
fi
done
eshopts_pop
if [[ ${#preserved_libs[@]} -gt 0 ]]; then
preserve_old_lib "${preserved_libs[@]}"
fi
}
pkg_postinst() {
if [[ ${#preserved_libs[@]} -gt 0 ]]; then
preserve_old_lib_notify "${preserved_libs[@]}"
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-0.1.12-r5.ebuild,v 1.9 2009/06/01 00:00:46 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-0.1.12-r5.ebuild,v 1.10 2011/12/06 19:33:32 robbat2 Exp $
inherit eutils libtool autotools toolchain-funcs
@ -31,13 +31,6 @@ src_unpack() {
epatch "${FILESDIR}"/${PN}-0.1.12-no-infinite-bulk.patch
eautoreconf
elibtoolize
# Ensure that the documentation actually finds the DTD it needs
docbookdtd="/usr/share/sgml/docbook/sgml-dtd-4.2/docbook.dtd"
sysid='"-//OASIS//DTD DocBook V4.2//EN"'
sed -r -i -e \
"s,(${sysid}) \[\$,\1 \"${docbookdtd}\" \[,g" \
"${S}"/doc/manual.sgml
}
src_compile() {

@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-0.1.12-r6.ebuild,v 1.1 2009/11/11 08:02:02 robbat2 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-0.1.12-r6.ebuild,v 1.2 2011/12/06 19:33:32 robbat2 Exp $
inherit eutils libtool autotools toolchain-funcs
@ -32,13 +32,6 @@ src_unpack() {
epatch "${FILESDIR}"/${PN}-0.1-ansi.patch # 273752
eautoreconf
elibtoolize
# Ensure that the documentation actually finds the DTD it needs
docbookdtd="/usr/share/sgml/docbook/sgml-dtd-4.2/docbook.dtd"
sysid='"-//OASIS//DTD DocBook V4.2//EN"'
sed -r -i -e \
"s,(${sysid}) \[\$,\1 \"${docbookdtd}\" \[,g" \
"${S}"/doc/manual.sgml
}
src_compile() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-0.1.12-r7.ebuild,v 1.10 2011/12/03 18:26:03 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-0.1.12-r7.ebuild,v 1.11 2011/12/06 19:33:32 robbat2 Exp $
EAPI="3"
@ -31,11 +31,6 @@ src_prepare() {
epatch "${FILESDIR}"/${PN}-0.1.12-no-infinite-bulk.patch
epatch "${FILESDIR}"/${PN}-0.1-ansi.patch # 273752
eautoreconf
# Ensure that the documentation actually finds the DTD it needs
sed -i \
-e '1s|\[$|"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [|' \
doc/manual.sgml || die
}
src_configure() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capybara/capybara-1.1.2.ebuild,v 1.1 2011/12/06 14:41:51 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capybara/capybara-1.1.2.ebuild,v 1.2 2011/12/06 16:53:34 graaff Exp $
EAPI="2"
USE_RUBY="ruby18 ree18"
@ -23,7 +23,7 @@ IUSE="test"
# Restrict tests until launchy is part of the main tree. With it
# installed all tests should pass.
#RESTRICT="test"
RESTRICT="test"
#ruby_add_bdepend "test? ( dev-ruby/rspec:2 dev-ruby/launchy www-client/firefox )"

@ -1,7 +1,3 @@
DIST gherkin-1.0.30.gem 583168 RMD160 433b82f49717137818261af7c1874a816b73b9dd SHA1 55d8007017ae2afe0906682d530298ec5ce8c3fe SHA256 0f8839fc096726ae149182dd8db54b65c7e70dc63f67ee24356288d03cd3b46d
DIST gherkin-2.3.10.tgz 121534 RMD160 07b7c1286e394c03b6bdf2f3253a3221ab0ee950 SHA1 d2c4ebd1ffeef2ccad0e6df84e42b4a44e18ba8a SHA256 c46ceee2af6c552467a58ebe8945b09fa3d0ba19efd251f96202d20e6aa6e36f
DIST gherkin-2.4.11.tgz 130153 RMD160 521414a557ae1dedef3191d34118226b67c04b7c SHA1 72b6362756edd4e1ab742561f9f94ee49757a601 SHA256 0e139f7fb214f6ba15a32140d8da300da2359ea5807b04e3a2f92cfa79c608cc
DIST gherkin-2.4.14.tgz 130611 RMD160 14d8389e4431579f34f9692b3c2d4d194c5a4134 SHA1 bc7a38393d463c2e941d6d47d5d7f837c1b1ba84 SHA256 51666c07c1be3ebfbab886c6197c5a6b99c20612da764e68ca85a0c49390eebe
DIST gherkin-2.4.15.tgz 131026 RMD160 a6a53c83f1b50ad915446727c624e1bc317f610b SHA1 5161ec361551360be77b77ff35358969214cabe9 SHA256 5bd64ac4857aad9da0c4393bbf54271772d32d44985a25c324c5ad5bf16faf0d
DIST gherkin-2.4.18.tgz 131778 RMD160 917e548a2c82f5030579df26ef694c22e487465a SHA1 621086ddc4646635583c46968a51b8f61b4864e1 SHA256 c582c8e15e1c6b86e63de03932bf751841169a6745a2638ca26bc9aa645fa94a
DIST gherkin-2.4.21.tgz 132376 RMD160 959f462b276e33e3631bd7abb5088603bc0927de SHA1 5c3dc98d2b954748d1ab723d755fcd36e05da49b SHA256 268bd322431eafddfa7ea068588a300c8d1aace6af81a4ff20902a113e6fe3c9

@ -1,72 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.4.11.ebuild,v 1.1 2011/08/20 08:41:57 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC="yard"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_DOCDIR="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.md README.md"
inherit ruby-fakegem
DESCRIPTION="Fast Gherkin lexer and parser based on Ragel."
HOMEPAGE="http://wiki.github.com/aslakhellesoy/cucumber/gherkin"
LICENSE="MIT"
SRC_URI="https://github.com/cucumber/gherkin/tarball/v${PV} -> ${P}.tgz"
KEYWORDS="~amd64"
SLOT="0"
IUSE="doc test"
DEPEND="${DEPEND} dev-util/ragel"
RDEPEND="${RDEPEND}"
RUBY_S="cucumber-gherkin-*"
ruby_add_bdepend "
dev-ruby/rake-compiler
test? (
>=dev-ruby/awesome_print-0.4.0
>=dev-ruby/builder-2.1.2
>=dev-util/cucumber-1.0.0
>=dev-ruby/rspec-2.6.0
>=dev-ruby/term-ansicolor-1.0.5
)
doc? ( >=dev-ruby/yard-0.7.2 )"
ruby_add_rdepend ">=dev-ruby/json-1.4.6"
all_ruby_prepare() {
# Remove Bundler-related things.
sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb features/support/env.rb || die
rm Gemfile || die
# Don't use compile dependencies to avoid building again for specs.
sed -i -e '/:compile/d' Rakefile
# Remove feature that depends on direct access to the cucumber
# source. We could probably set this up by downloading the source
# and unpacking it, but skipping this now in the interest of time.
rm features/pretty_formatter.feature || die
# We need to remove these tasks during bootstrapping since it tries
# to load cucumber already but we can be sure it isn't installed
# yet. Also remove other rake tasks for which we may not yet have
# dependencies.
if ! use test ; then
rm tasks/cucumber.rake tasks/rspec.rake || die "Unable to remove rake tasks."
fi
}
each_ruby_compile() {
${RUBY} -I lib -S rake -rrake/clean -f tasks/compile.rake compile || die
}
each_ruby_test() {
${RUBY} -I lib -S rake spec || die "Specs failed"
CUCUMBER_HOME="${HOME}" RUBYLIB=lib ${RUBY} -S cucumber features || die "Cucumber features failed"
}

@ -1,72 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.4.14.ebuild,v 1.1 2011/08/21 06:50:35 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC="yard"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_DOCDIR="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.md README.md"
inherit ruby-fakegem
DESCRIPTION="Fast Gherkin lexer and parser based on Ragel."
HOMEPAGE="http://wiki.github.com/aslakhellesoy/cucumber/gherkin"
LICENSE="MIT"
SRC_URI="https://github.com/cucumber/gherkin/tarball/v${PV} -> ${P}.tgz"
KEYWORDS="~amd64"
SLOT="0"
IUSE="doc test"
DEPEND="${DEPEND} dev-util/ragel"
RDEPEND="${RDEPEND}"
RUBY_S="cucumber-gherkin-*"
ruby_add_bdepend "
dev-ruby/rake-compiler
test? (
>=dev-ruby/awesome_print-0.4.0
>=dev-ruby/builder-2.1.2
>=dev-util/cucumber-1.0.0
>=dev-ruby/rspec-2.6.0
>=dev-ruby/term-ansicolor-1.0.5
)
doc? ( >=dev-ruby/yard-0.7.2 )"
ruby_add_rdepend ">=dev-ruby/json-1.4.6"
all_ruby_prepare() {
# Remove Bundler-related things.
sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb features/support/env.rb || die
rm Gemfile || die
# Don't use compile dependencies to avoid building again for specs.
sed -i -e '/:compile/d' Rakefile
# Remove feature that depends on direct access to the cucumber
# source. We could probably set this up by downloading the source
# and unpacking it, but skipping this now in the interest of time.
rm features/pretty_formatter.feature || die
# We need to remove these tasks during bootstrapping since it tries
# to load cucumber already but we can be sure it isn't installed
# yet. Also remove other rake tasks for which we may not yet have
# dependencies.
if ! use test ; then
rm tasks/cucumber.rake tasks/rspec.rake || die "Unable to remove rake tasks."
fi
}
each_ruby_compile() {
${RUBY} -I lib -S rake -rrake/clean -f tasks/compile.rake compile || die
}
each_ruby_test() {
${RUBY} -I lib -S rake spec || die "Specs failed"
CUCUMBER_HOME="${HOME}" RUBYLIB=lib ${RUBY} -S cucumber features || die "Cucumber features failed"
}

@ -1,72 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.4.15.ebuild,v 1.1 2011/08/26 06:07:26 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC="yard"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_DOCDIR="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.md README.md"
inherit ruby-fakegem
DESCRIPTION="Fast Gherkin lexer and parser based on Ragel."
HOMEPAGE="http://wiki.github.com/aslakhellesoy/cucumber/gherkin"
LICENSE="MIT"
SRC_URI="https://github.com/cucumber/gherkin/tarball/v${PV} -> ${P}.tgz"
KEYWORDS="~amd64"
SLOT="0"
IUSE="doc test"
DEPEND="${DEPEND} dev-util/ragel"
RDEPEND="${RDEPEND}"
RUBY_S="cucumber-gherkin-*"
ruby_add_bdepend "
dev-ruby/rake-compiler
test? (
>=dev-ruby/awesome_print-0.4.0
>=dev-ruby/builder-2.1.2
>=dev-util/cucumber-1.0.0
>=dev-ruby/rspec-2.6.0
>=dev-ruby/term-ansicolor-1.0.5
)
doc? ( >=dev-ruby/yard-0.7.2 )"
ruby_add_rdepend ">=dev-ruby/json-1.4.6"
all_ruby_prepare() {
# Remove Bundler-related things.
sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb features/support/env.rb || die
rm Gemfile || die
# Don't use compile dependencies to avoid building again for specs.
sed -i -e '/:compile/d' Rakefile
# Remove feature that depends on direct access to the cucumber
# source. We could probably set this up by downloading the source
# and unpacking it, but skipping this now in the interest of time.
rm features/pretty_formatter.feature || die
# We need to remove these tasks during bootstrapping since it tries
# to load cucumber already but we can be sure it isn't installed
# yet. Also remove other rake tasks for which we may not yet have
# dependencies.
if ! use test ; then
rm tasks/cucumber.rake tasks/rspec.rake || die "Unable to remove rake tasks."
fi
}
each_ruby_compile() {
${RUBY} -I lib -S rake -rrake/clean -f tasks/compile.rake compile || die
}
each_ruby_test() {
${RUBY} -I lib -S rake spec || die "Specs failed"
CUCUMBER_HOME="${HOME}" RUBYLIB=lib ${RUBY} -S cucumber features || die "Cucumber features failed"
}

@ -1,72 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.4.18.ebuild,v 1.1 2011/09/10 09:42:39 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC="yard"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_DOCDIR="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.md README.md"
inherit ruby-fakegem
DESCRIPTION="Fast Gherkin lexer and parser based on Ragel."
HOMEPAGE="http://wiki.github.com/aslakhellesoy/cucumber/gherkin"
LICENSE="MIT"
SRC_URI="https://github.com/cucumber/gherkin/tarball/v${PV} -> ${P}.tgz"
KEYWORDS="~amd64"
SLOT="0"
IUSE="doc test"
DEPEND="${DEPEND} dev-util/ragel"
RDEPEND="${RDEPEND}"
RUBY_S="cucumber-gherkin-*"
ruby_add_bdepend "
dev-ruby/rake-compiler
test? (
>=dev-ruby/awesome_print-0.4.0
>=dev-ruby/builder-2.1.2
>=dev-util/cucumber-1.0.0
>=dev-ruby/rspec-2.6.0
>=dev-ruby/term-ansicolor-1.0.5
)
doc? ( >=dev-ruby/yard-0.7.2 )"
ruby_add_rdepend ">=dev-ruby/json-1.4.6"
all_ruby_prepare() {
# Remove Bundler-related things.
sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb features/support/env.rb || die
rm Gemfile || die
# Don't use compile dependencies to avoid building again for specs.
sed -i -e '/:compile/d' Rakefile
# Remove feature that depends on direct access to the cucumber
# source. We could probably set this up by downloading the source
# and unpacking it, but skipping this now in the interest of time.
rm features/pretty_formatter.feature || die
# We need to remove these tasks during bootstrapping since it tries
# to load cucumber already but we can be sure it isn't installed
# yet. Also remove other rake tasks for which we may not yet have
# dependencies.
if ! use test ; then
rm tasks/cucumber.rake tasks/rspec.rake || die "Unable to remove rake tasks."
fi
}
each_ruby_compile() {
${RUBY} -I lib -S rake -rrake/clean -f tasks/compile.rake compile || die
}
each_ruby_test() {
${RUBY} -I lib -S rake spec || die "Specs failed"
CUCUMBER_HOME="${HOME}" RUBYLIB=lib ${RUBY} -S cucumber features || die "Cucumber features failed"
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.0.ebuild,v 1.1 2011/11/02 08:30:26 djc Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.0.ebuild,v 1.2 2011/12/06 20:31:59 jer Exp $
EAPI=3
PYTHON_DEPEND="2"
@ -16,7 +16,7 @@ SRC_URI="http://mercurial.selenic.com/release/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~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 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="bugzilla emacs gpg test tk zsh-completion"
RDEPEND="bugzilla? ( dev-python/mysql-python )

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.502 2011/12/06 05:22:24 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.506 2011/12/07 00:29:38 dirtyepic Exp $
#
# Maintainer: Toolchain Ninjas <toolchain@gentoo.org>
@ -243,11 +243,12 @@ S=$(
# HTB_GCC_VER to that version of gcc.
#
gentoo_urls() {
local devspace="HTTP~lv/GCC/URI HTTP~eradicator/gcc/URI HTTP~vapier/dist/URI
HTTP~halcy0n/patches/URI HTTP~zorry/patches/gcc/URI HTTP~dirtyepic/dist/URI"
local devspace="HTTP~vapier/dist/URI HTTP~dirtyepic/dist/URI
HTTP~halcy0n/patches/URI HTTP~zorry/patches/gcc/URI"
devspace=${devspace//HTTP/http:\/\/dev.gentoo.org\/}
echo mirror://gentoo/$1 ${devspace//URI/$1}
}
get_gcc_src_uri() {
export PATCH_GCC_VER=${PATCH_GCC_VER:-${GCC_RELEASE_VER}}
export UCLIBC_GCC_VER=${UCLIBC_GCC_VER:-${PATCH_GCC_VER}}
@ -468,39 +469,21 @@ create_gcc_env_entry() {
echo "ROOTPATH=\"${BINPATH}\"" >> ${gcc_envd_file}
echo "GCC_PATH=\"${BINPATH}\"" >> ${gcc_envd_file}
if is_multilib ; then
LDPATH="${LIBPATH}"
for path in 32 64 ; do
[[ -d ${D}${LIBPATH}/${path} ]] && LDPATH="${LDPATH}:${LIBPATH}/${path}"
done
else
local MULTIDIR
LDPATH="${LIBPATH}"
# We want to list the default ABI's LIBPATH first so libtool
# searches that directory first. This is a temporary
# workaround for libtool being stupid and using .la's from
# conflicting ABIs by using the first one in the search path
local abi=${DEFAULT_ABI}
local MULTIDIR=$($(XGCC) $(get_abi_CFLAGS ${abi}) --print-multi-directory)
if [[ ${MULTIDIR} == "." ]] ; then
LDPATH=${LIBPATH}
else
LDPATH=${LIBPATH}/${MULTIDIR}
fi
for abi in $(get_all_abis) ; do
[[ ${abi} == ${DEFAULT_ABI} ]] && continue
# We want to list the default ABI's LIBPATH first so libtool
# searches that directory first. This is a temporary
# workaround for libtool being stupid and using .la's from
# conflicting ABIs by using the first one in the search path
local abi=${DEFAULT_ABI}
local MULTIDIR=$($(XGCC) $(get_abi_CFLAGS ${abi}) --print-multi-directory)
local LDPATH=${LIBPATH}
[[ ${MULTIDIR} != "." ]] && LDPATH+=/${MULTIDIR}
for abi in $(get_all_abis) ; do
[[ ${abi} == ${DEFAULT_ABI} ]] && continue
MULTIDIR=$($(XGCC) $(get_abi_CFLAGS ${abi}) --print-multi-directory)
if [[ ${MULTIDIR} == "." ]] ; then
LDPATH=${LDPATH}:${LIBPATH}
else
LDPATH=${LDPATH}:${LIBPATH}/${MULTIDIR}
fi
done
fi
MULTIDIR=$($(XGCC) $(get_abi_CFLAGS ${abi}) --print-multi-directory)
LDPATH+=:${LIBPATH}
[[ ${MULTIDIR} != "." ]] && LDPATH+=/${MULTIDIR}
done
echo "LDPATH=\"${LDPATH}\"" >> ${gcc_envd_file}
echo "MANPATH=\"${DATAPATH}/man\"" >> ${gcc_envd_file}
@ -843,7 +826,14 @@ gcc-multilib-configure() {
# translate our notion of multilibs into gcc's
local abi map=() list
case ${CTARGET} in
x86_64*) tc_version_is_at_least 4.7 && map=(amd64:m64 x86:m32 x32:mx32) ;;
x86_64*)
# drop the 4.6.2 stuff once 4.7 goes stable
if tc_version_is_at_least 4.7 ||
( tc_version_is_at_least 4.6.2 && has x32 $(get_all_abis) )
then
map=(amd64:m64 x86:m32 x32:mx32)
fi
;;
esac
for abi in $(get_all_abis) ; do
local m a l
@ -1381,6 +1371,7 @@ gcc_do_filter_flags() {
}
toolchain_src_compile() {
multilib_env ${CTARGET}
gcc_do_filter_flags
einfo "CFLAGS=\"${CFLAGS}\""
einfo "CXXFLAGS=\"${CXXFLAGS}\""
@ -1552,9 +1543,10 @@ toolchain_src_install() {
doexe "${GCC_FILESDIR}"/c{89,99} || die
fi
# use gid of 0 because some stupid ports don't have
# the group 'root' set to gid 0
chown -R root:0 "${D}"${LIBPATH}
# Use gid of 0 because some stupid ports don't have
# the group 'root' set to gid 0. Send to /dev/null
# for people who are testing as non-root.
chown -R root:0 "${D}"${LIBPATH} 2>/dev/null
# Move pretty-printers to gdb datadir to shut ldconfig up
local py gdbdir=/usr/share/gdb/auto-load${LIBPATH/\/lib\//\/$(get_libdir)\/}
@ -1904,7 +1896,10 @@ setup_multilib_osdirnames() {
if [[ ${SYMLINK_LIB} == "yes" ]] ; then
einfo "updating multilib directories to be: ${libdirs}"
if tc_version_is_at_least 4.7 && [[ ${CTARGET} == x86_64*-linux* ]] ; then
# drop the 4.6.2 stuff once 4.7 goes stable
if tc_version_is_at_least 4.7 ||
( tc_version_is_at_least 4.6.2 && has x32 $(get_all_abis) )
then
set -- -e '/^MULTILIB_OSDIRNAMES.*lib32/s:[$][(]if.*):../lib32:'
else
set -- -e "/^MULTILIB_OSDIRNAMES/s:=.*:= ${libdirs}:"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-light/gnome-light-3.2.1.ebuild,v 1.1 2011/11/07 07:50:00 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-light/gnome-light-3.2.1.ebuild,v 1.2 2011/12/06 19:06:33 tetromino Exp $
EAPI="4"
@ -45,7 +45,7 @@ PDEPEND=">=gnome-base/gvfs-1.10.1"
S=${WORKDIR}
pkg_pretend() {
if ! use fallback && ! use shell; then
if ! use fallback && ! use gnome-shell; then
# Users probably want to use e16, sawfish, etc
ewarn "You're installing neither GNOME Shell nor GNOME Fallback!"
ewarn "You will have to install and manage a window manager by yourself"

@ -1,3 +1,4 @@
DIST imapfilter-2.2.2.tar.bz2 45670 RMD160 c80dfa41af55fd7968f0c018825af4c6ba385397 SHA1 f201d166f5a483a2d8117bf2cbd0678b94e4753d SHA256 b3d56edc443d46ac711c44f286bfd3649483f686155faaa016dfa1f5a576c1f9
DIST imapfilter-2.2.3.tar.gz 55503 RMD160 8bb83015225257131199f8bc0a92d09967cb87b6 SHA1 8d71dbb5f67494c27706400ba8d89c29cb4914de SHA256 7ed19d91f0e01f53d443b03de0b1c465407aad1b7c4886ef7a078896ccf63cd9
DIST imapfilter-2.3.tar.gz 53086 RMD160 0ff0d32bb8bd12b0f73dabeec06c8966949fe361 SHA1 c913a05948e55b5eb3c647ee3327074b86eae2e5 SHA256 b5012c43169d56a2809a6c1a524aee479eb50ca9fb363798794c45b28a679710
DIST imapfilter-2.4.tar.gz 54610 RMD160 687fc1a089a5ca58f97f1b4b4e88e8b52742aeca SHA1 7dbd331b67136f459f3753cb4d962c82f91df1af SHA256 9e0cbe1b307938edf982a0361cc1ba2aa63b4a493f5e7366ff37c6188488cc06

@ -0,0 +1,39 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/imapfilter/imapfilter-2.4.ebuild,v 1.1 2011/12/06 22:50:40 radhermit Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="An IMAP mail filtering utility"
HOMEPAGE="http://imapfilter.hellug.gr"
SRC_URI="https://github.com/downloads/lefcha/imapfilter/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="dev-libs/openssl
dev-libs/libpcre
>=dev-lang/lua-5.1"
DEPEND="${RDEPEND}"
src_prepare() {
sed -i -e "/^PREFIX/s:/local::" \
-e "/^MANDIR/s:man:share/man:" \
-e "/^CFLAGS/s:CFLAGS =:CFLAGS +=:" \
-e "/^CFLAGS/s/-O//" \
src/Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS NEWS README samples/*
doman doc/imapfilter.1 doc/imapfilter_config.5
}

@ -1,2 +1,3 @@
DIST rawtherapee-4.0.4.tar.xz 25302652 RMD160 75fbc1d002f08f070a2a4e12eabb6b649973be42 SHA1 8cc540291a387010f62888414c131924420684c7 SHA256 498be81967d115197c1b9882624828723b29a6bae2d2d428bf7d9c6fdb21b361
DIST rawtherapee-4.0.5.tar.xz 38119752 RMD160 ccaad4a257ccf912cd32da70e46b10536b102c74 SHA1 0823e03bb64dc3fe9783afd5e52fa51ff9dc86ba SHA256 cf22a1693e80d9f893849114908a28fb1ea295d628ff48da769fc8a26e06cf6f
DIST rawtherapee-4.0.6.tar.xz 35391836 RMD160 10a3d9d6abbc29d0298cca7c85cfd8e3f2501a6c SHA1 e2ef0315c4b2516bb6ec442af816b94aec1723f4 SHA256 cdafe77ce4fbef28820f28c20c78bbbd837a14bb7115c8db0c8b1621505b3d36

@ -0,0 +1,49 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawtherapee/rawtherapee-4.0.6.ebuild,v 1.1 2011/12/07 03:49:27 radhermit Exp $
EAPI="4"
inherit cmake-utils toolchain-funcs
DESCRIPTION="Digital photo editing tool focused on RAW image file manipulation and conversion"
HOMEPAGE="http://www.rawtherapee.com/"
SRC_URI="http://dev.gentoo.org/~radhermit/distfiles/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bzip2 doc openmp"
RDEPEND="bzip2? ( app-arch/bzip2 )
>=dev-cpp/gtkmm-2.12:2.4
>=dev-cpp/glibmm-2.16:2
dev-libs/libsigc++:2
media-libs/tiff
media-libs/libpng
media-libs/libiptcdata
media-libs/lcms:2
sys-libs/zlib
virtual/jpeg"
DEPEND="${RDEPEND}
app-arch/xz-utils
dev-util/pkgconfig"
PATCHES=( "${FILESDIR}"/${PN}-4.0.4-nohg.patch )
pkg_setup() {
if use openmp ; then
tc-has-openmp || die "Please switch to an openmp compatible compiler"
fi
mycmakeargs=(
$(cmake-utils_use openmp OPTION_OMP)
$(cmake-utils_use_with bzip2 BZIP)
-DCREDITSDIR=/usr/share/doc/${PF}
)
}
src_install() {
cmake-utils_src_install
use doc && dodoc doc/built/pdf/en/RawTherapeeManual_4.0.pdf
}

@ -1,3 +1 @@
DIST scantailor-0.9.10.tar.gz 1124348 RMD160 548681bbca511e90c52ab3ade6ff6d32729774b6 SHA1 37ed3a4db17e2eaca9f4ada8cc29137df657e5fb SHA256 0b574eabfb65e4dcf3915d00ad3da31d464060458ffaeb49e4257e97301f93a0
DIST scantailor-0.9.9.2.tar.gz 969691 RMD160 39286377d1b328286c8c35543fb97c1a5695bf73 SHA1 7bdd390a32355685af53160aa5b9bd3b280a0c1a SHA256 b65f45697c196a05ea12910ffb47ad728f98b18937c8c42033865bbdd40211c7
DIST scantailor-0.9.9.tar.gz 783134 RMD160 99104d310afa56bba8f4fd4e8c5820e8fbc34c02 SHA1 0fc61441cef7a538061a5ee94bd0d8361007e0ec SHA256 0db8a4d32decaaa2cf9442ae1204d504d27a21f64fab42704eb3c5cc0e559be2

@ -0,0 +1,121 @@
From a25036fbf37941e241da520fa7fab45e13c9c4a4 Mon Sep 17 00:00:00 2001
From: Joseph Artsimovich <joseph.artsimovich@gmail.com>
Date: Sat, 1 Oct 2011 19:37:10 +0100
Subject: [PATCH] Fix build issues with certain version combinations of boost
and gcc.
---
ProjectWriter.cpp | 1 +
compat/boost_multi_index_foreach_fix.h | 46 ++++++++++++++++++++++++++++++++
zones/EditableZoneSet.h | 18 ++++++++++++-
3 files changed, 64 insertions(+), 1 deletions(-)
create mode 100644 compat/boost_multi_index_foreach_fix.h
diff --git a/ProjectWriter.cpp b/ProjectWriter.cpp
index e6e519b..44329d7 100644
--- a/ProjectWriter.cpp
+++ b/ProjectWriter.cpp
@@ -25,6 +25,7 @@
#include "ImageMetadata.h"
#include "AbstractFilter.h"
#include "FileNameDisambiguator.h"
+#include "compat/boost_multi_index_foreach_fix.h"
#include <QtXml>
#include <QFile>
#include <QTextStream>
diff --git a/compat/boost_multi_index_foreach_fix.h b/compat/boost_multi_index_foreach_fix.h
new file mode 100644
index 0000000..7800c79
--- /dev/null
+++ b/compat/boost_multi_index_foreach_fix.h
@@ -0,0 +1,46 @@
+/*
+ Scan Tailor - Interactive post-processing tool for scanned pages.
+ Copyright (C) Joseph Artsimovich <joseph.artsimovich@gmail.com>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef BOOST_MULTI_INDEX_FOREACH_FIX_H_
+#define BOOST_MULTI_INDEX_FOREACH_FIX_H_
+
+#include <boost/foreach.hpp>
+#include <boost/mpl/bool.hpp>
+#include <boost/multi_index/sequenced_index.hpp>
+
+// BOOST_FOREACH() in boost >= 1.47 has problems with gcc >= 4.6
+// These problems aren't specific to boost::multi_index,
+// but the code below only deals with it.
+// In future versions of boost, they might include equivalent
+// code in boost::multi_index itself, which will lead to build problems.
+// If / when this happens, conditional compilation will be necessary.
+
+namespace boost
+{
+namespace foreach
+{
+
+template<typename SuperMeta, typename TagList>
+struct is_noncopyable<boost::multi_index::detail::sequenced_index<SuperMeta, TagList> > : mpl::true_
+{
+};
+
+} // namespace foreach
+} // namespace boost
+
+#endif
diff --git a/zones/EditableZoneSet.h b/zones/EditableZoneSet.h
index 153693d..4ecfd0d 100644
--- a/zones/EditableZoneSet.h
+++ b/zones/EditableZoneSet.h
@@ -1,7 +1,7 @@
/*
Scan Tailor - Interactive post-processing tool for scanned pages.
- Copyright (C) 2007-2009 Joseph Artsimovich <joseph_a@mail.ru>
+ Copyright (C) Joseph Artsimovich <joseph.artsimovich@gmail.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -24,6 +24,8 @@
#include "PropertySet.h"
#include "IntrusivePtr.h"
#include <QObject>
+#include <boost/mpl/bool.hpp>
+#include <boost/foreach.hpp>
#include <boost/iterator/iterator_facade.hpp>
#include <map>
@@ -102,4 +104,18 @@ private:
PropertySet m_defaultProps;
};
+namespace boost
+{
+namespace foreach
+{
+
+// Make BOOST_FOREACH work with the above class (necessary for boost >= 1.46 with gcc >= 4.6)
+template<>
+struct is_noncopyable<EditableZoneSet> : public boost::mpl::true_
+{
+};
+
+} // namespace foreach
+} // namespace boost
+
#endif
--
1.7.8.rc4

@ -2,7 +2,4 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>graphics</herd>
<use>
<flag name='dewarping'>Enable experimental dewarping support</flag>
</use>
</pkgmetadata>

@ -1,9 +1,9 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/scantailor/scantailor-0.9.10.ebuild,v 1.1 2011/07/31 18:31:24 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/scantailor/scantailor-0.9.10.ebuild,v 1.4 2011/12/07 03:16:41 radhermit Exp $
EAPI=4
inherit cmake-utils eutils
inherit cmake-utils eutils virtualx
DESCRIPTION="A interactive post-processing tool for scanned pages"
HOMEPAGE="http://scantailor.sourceforge.net/"
@ -24,7 +24,10 @@ RDEPEND=">=media-libs/libpng-1.2.43
DEPEND="${RDEPEND}
dev-libs/boost"
PATCHES=( "${FILESDIR}/${PN}-0.9.9-environment_flags.patch" )
PATCHES=(
"${FILESDIR}"/${PN}-0.9.9-environment_flags.patch
"${FILESDIR}"/${PN}-gcc46.patch
)
src_configure() {
mycmakeargs=(
@ -34,6 +37,11 @@ src_configure() {
cmake-utils_src_configure
}
src_test() {
cd "${CMAKE_BUILD_DIR}" || die
Xemake test
}
src_install() {
cmake-utils_src_install

@ -1,43 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/scantailor/scantailor-0.9.9.2.ebuild,v 1.1 2011/07/21 19:19:29 radhermit Exp $
EAPI=4
inherit cmake-utils eutils
DESCRIPTION="A interactive post-processing tool for scanned pages"
HOMEPAGE="http://scantailor.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 GPL-3 public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dewarping opengl"
RDEPEND=">=media-libs/libpng-1.2.43
>=media-libs/tiff-3.9.4
sys-libs/zlib
virtual/jpeg
x11-libs/libXrender
x11-libs/qt-gui:4
opengl? ( x11-libs/qt-opengl:4 )"
DEPEND="${RDEPEND}
dev-libs/boost"
PATCHES=( "${FILESDIR}/${PN}-0.9.9-environment_flags.patch" )
src_configure() {
mycmakeargs=(
$(cmake-utils_use_enable dewarping)
$(cmake-utils_use_enable opengl)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
newicon resources/appicon.svg ${PN}.svg
make_desktop_entry ${PN} "Scan Tailor"
}

@ -1,43 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/scantailor/scantailor-0.9.9.ebuild,v 1.3 2010/11/08 23:01:00 maekke Exp $
EAPI=2
inherit cmake-utils eutils
DESCRIPTION="A interactive post-processing tool for scanned pages"
HOMEPAGE="http://scantailor.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 GPL-3 public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dewarping opengl"
RDEPEND=">=media-libs/libpng-1.2.43
>=media-libs/tiff-3.9.4
sys-libs/zlib
virtual/jpeg
x11-libs/libXrender
x11-libs/qt-gui:4
opengl? ( x11-libs/qt-opengl:4 )"
DEPEND="${RDEPEND}
dev-libs/boost"
PATCHES=( "${FILESDIR}/${P}-environment_flags.patch" )
src_configure() {
mycmakeargs=(
$(cmake-utils_use_enable dewarping)
$(cmake-utils_use_enable opengl)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
newicon resources/appicon.svg ${PN}.svg
make_desktop_entry ${PN} "Scan Tailor"
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libaacplus/libaacplus-2.0.2.ebuild,v 1.1 2011/09/27 18:09:06 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libaacplus/libaacplus-2.0.2.ebuild,v 1.2 2011/12/06 20:27:45 jer Exp $
EAPI=4
@ -20,7 +20,7 @@ SRC_URI="http://dev.gentoo.org/~aballier/${P}.tar.gz
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~hppa"
IUSE="bindist fftw static-libs"
RESTRICT="mirror"
REQUIRED_USE="!bindist"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/bombono-dvd/bombono-dvd-1.2.0.ebuild,v 1.2 2011/12/02 19:36:13 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/media-video/bombono-dvd/bombono-dvd-1.2.0-r1.ebuild,v 1.1 2011/12/06 20:40:26 dilfridge Exp $
EAPI=4
@ -18,7 +18,6 @@ KEYWORDS="~amd64 ~x86"
IUSE="gnome"
COMMONDEPEND="
app-cdr/cdrkit
app-i18n/enca
app-cdr/dvd+rw-tools
dev-cpp/gtkmm:2.4
@ -27,6 +26,7 @@ COMMONDEPEND="
media-libs/libdvdread
media-sound/twolame
media-video/dvdauthor
virtual/cdrtools
virtual/ffmpeg
>=media-video/mjpegtools-1.8.0
x11-libs/gtk+:2
@ -38,7 +38,10 @@ DEPEND="${COMMONDEPEND}
>=dev-util/scons-0.96.1
"
PATCHES=( "${FILESDIR}/${PN}-1.0.1-cflags.patch" )
PATCHES=(
"${FILESDIR}/${PN}-1.0.1-cflags.patch"
"${FILESDIR}/${PN}-1.2.0-cdrtools.patch"
)
src_compile() {
append-flags -DBOOST_FILESYSTEM_VERSION=2

@ -0,0 +1,73 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/bombono-dvd/bombono-dvd-1.2.0-r2.ebuild,v 1.1 2011/12/06 22:34:58 dilfridge Exp $
EAPI=4
SCONS_MIN_VERSION="0.96.1"
inherit base scons-utils toolchain-funcs flag-o-matic virtualx
DESCRIPTION="GUI DVD authoring program"
HOMEPAGE="http://www.bombono.org/"
SRC_URI="mirror://sourceforge/bombono/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome"
COMMONDEPEND="
app-i18n/enca
app-cdr/dvd+rw-tools
dev-cpp/gtkmm:2.4
dev-cpp/libxmlpp:2.6
>=dev-libs/boost-1.47
media-libs/libdvdread
media-sound/twolame
media-video/dvdauthor
virtual/cdrtools
virtual/ffmpeg
>=media-video/mjpegtools-1.8.0
x11-libs/gtk+:2
"
RDEPEND="${COMMONDEPEND}
gnome? ( gnome-base/gvfs )
"
DEPEND="${COMMONDEPEND}
dev-util/pkgconfig
"
PATCHES=(
"${FILESDIR}/${PN}-1.0.1-cflags.patch"
"${FILESDIR}/${PN}-1.2.0-cdrtools.patch"
"${FILESDIR}/${PN}-1.2.0-libav.patch"
)
src_configure() {
append-flags -DBOOST_SYSTEM_NO_DEPRECATED -DBOOST_FILESYSTEM_VERSION=2
myesconsargs=(
CC="$(tc-getCC)"
CXX="$(tc-getCXX)"
CFLAGS="${CFLAGS}"
CXXFLAGS="${CXXFLAGS}"
DESTDIR="${D}"
LDFLAGS="${LDFLAGS}"
USE_EXT_BOOST=1
PREFIX="${EPREFIX}/usr"
)
}
src_compile() {
nonfatal escons \
|| die 'Please add "${S}/config.opts" when filing bugs reports!'
}
src_test() {
VIRTUALX_COMMAND="escons TEST=1" virtualmake
}
src_install() {
nonfatal escons install || die 'Please add "${S}/config.opts" when filing bugs reports!'
}

@ -0,0 +1,21 @@
diff --git a/src/mgui/author/script.h b/src/mgui/author/script.h
index fe80307..a96fb54 100644
--- a/src/mgui/author/script.h
+++ b/src/mgui/author/script.h
@@ -115,9 +115,14 @@ ExitData AsyncOFCall(const std::string& cmd, const std::string& out_dir, OutputF
// POSIX-народ бесповоротно ушел на cdrkit (genisoimage), но с Win32
// у cdrkit хреново (только cygwin, нет собранного с growisofs с cdrkit под Win32) => потому - "вилка"
#ifdef _WIN32
-#define MK_ISO_CMD "mkisofs"
+ #define MK_ISO_CMD "mkisofs"
#else
-#define MK_ISO_CMD "genisoimage"
+ #define USE_CDRTOOLS
+ #ifdef USE_CDRTOOLS
+ #define MK_ISO_CMD "mkisofs"
+ #else // !USE_CDRTOOLS
+ #define MK_ISO_CMD "genisoimage"
+ #endif // !USE_CDRTOOLS
#endif
#endif // #ifndef __MGUI_AUTHOR_SCRIPT_H__

@ -0,0 +1,83 @@
From b3e5482083d71e9913e12b038b329e36c2bbb130 Mon Sep 17 00:00:00 2001
From: Ilya Murav'jov <muravev@yandex.ru>
Date: Fri, 18 Nov 2011 22:31:18 +0300
Subject: [PATCH] fix for ArchLinux: new ffmpeg hides ff_codec_bmp_tags etc
---
src/mgui/ffviewer.cpp | 32 +++++++++++++++++++++++++-------
1 files changed, 25 insertions(+), 7 deletions(-)
diff --git a/src/mgui/ffviewer.cpp b/src/mgui/ffviewer.cpp
index 3d8e9d9..9e6d31c 100644
--- a/src/mgui/ffviewer.cpp
+++ b/src/mgui/ffviewer.cpp
@@ -32,7 +32,15 @@
#include <mlib/read_stream.h> // ReadAllStream()
#include <mlib/string.h>
-/////////////////////////////////////////
+// Прямой доступ к ff_codec_bmp_tags, в частности, закрыл, некий
+// Anton Khirnov, см. libavformat/libavformat.v (из него генерится скрипт
+// для опции --version-script=<script_file> линковщика ld)
+// Вообще, можно воспользоваться av_codec_get_tag(), а доступ к ff_codec_bmp_tags
+// получить через ff_avi_muxer->codec_tag (самого же найти по имени "avi") или подобный объект,
+// но это сейчас неактуально (никто не попадается на ошибку отсутствия кодека) => игра не стоит свеч
+//#define CALC_FF_TAG
+
+#ifdef CALC_FF_TAG
// :KLUDGE: потому что riff.h не копируют
C_LINKAGE_BEGIN
@@ -62,7 +70,7 @@ static uint FFCodecID2Tag(CodecID codec_id)
#endif
C_LINKAGE_END
-/////////////////////////////////////////
+#endif // CALC_FF_TAG
static AVStream* VideoStream(FFData& ffv)
{
@@ -287,11 +295,6 @@ static bool IsFFError(int av_res)
return av_res < 0;
}
-static unsigned char GetChar(uint tag, int bit_begin)
-{
- return (tag>>bit_begin) & 0xFF;
-}
-
static bool SetIndex(int& idx, int i, bool b)
{
bool res = (idx == -1) && b;
@@ -300,6 +303,12 @@ static bool SetIndex(int& idx, int i, bool b)
return res;
}
+#ifdef CALC_FF_TAG
+static unsigned char GetChar(uint tag, int bit_begin)
+{
+ return (tag>>bit_begin) & 0xFF;
+}
+
static std::string CodecID2Str(CodecID codec_id)
{
#ifdef _MSC_VER
@@ -316,6 +325,15 @@ static std::string CodecID2Str(CodecID codec_id)
return tag_str;
}
+#else // CALC_FF_TAG
+
+static std::string CodecID2Str(CodecID codec_id)
+{
+ return Int2Str(codec_id);
+}
+
+#endif // CALC_FF_TAG
+
bool OpenInfo(FFData& ffi, const char* fname, FFDiagnosis& diag)
{
std::string& err_str = diag.errStr;
--
1.7.3.4

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-0.8.7.ebuild,v 1.3 2011/12/02 18:22:15 beandog Exp $
# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-0.8.7.ebuild,v 1.4 2011/12/06 20:30:14 jer Exp $
EAPI="4"
@ -26,7 +26,7 @@ FFMPEG_REVISION="${PV#*_p}"
LICENSE="GPL-2 amr? ( GPL-3 ) encode? ( aac? ( GPL-3 ) )"
SLOT="0"
if [ "${PV#9999}" = "${PV}" ] ; then
KEYWORDS="~amd64 ~x86-fbsd"
KEYWORDS="~amd64 ~hppa ~x86-fbsd"
fi
IUSE="
aac aacplus alsa amr bindist +bzip2 celt cpudetection debug dirac doc

@ -0,0 +1,22 @@
app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libexttextcat-3.2 app-text/libwpd:0.9[tools] app-text/libwpg:0.2 >=app-text/libwps-0.2.2 dev-cpp/libcmis dev-db/unixODBC dev-libs/expat >=dev-libs/glib-2.28 >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1-r1 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d >=dev-libs/redland-1.0.14[ssl] >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/libpng-1.4 media-libs/libvisio net-print/cups sci-mathematics/lpsolve >=sys-libs/db-4.8 virtual/jpeg >=x11-libs/cairo-1.10.0 x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 gnome-base/orbit ) gtk? ( >=x11-libs/gtk+-2.24:2 ) gtk3? ( >=x11-libs/gtk+-3.2:3 ) graphite? ( media-gfx/graphite2 ) gstreamer? ( >=media-libs/gstreamer-0.10 >=media-libs/gst-plugins-base-0.10 ) java? ( >=dev-java/bsh-2.0_beta4 dev-java/lucene:2.9 dev-java/lucene-analyzers:2.3 ) jemalloc? ( dev-libs/jemalloc ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) opengl? ( virtual/opengl ) pdfimport? ( >=app-text/poppler-0.16[xpdf-headers,cxx] ) postgres? ( >=dev-db/postgresql-base-8.4.0 ) svg? ( gnome-base/librsvg ) webdav? ( net-libs/neon ) xmlsec? ( >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 ) >=dev-libs/boost-1.46 >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool dev-util/mdds >=dev-util/pkgconfig-0.26 media-libs/sampleicc >=net-misc/curl-7.21.4 net-misc/npapi-sdk >=sys-apps/findutils-4.4.2 sys-devel/bison sys-apps/coreutils sys-devel/flex sys-devel/gettext >=sys-devel/make-3.82 sys-libs/zlib x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( =virtual/jdk-1.6* >=dev-java/ant-core-1.7 test? ( dev-java/junit:4 ) ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) >=sys-apps/sed-4 dev-vcs/git kde? ( dev-util/automoc dev-util/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=x11-libs/qt-core-4.6.3:4[qt3support,ssl] >=x11-libs/qt-gui-4.6.3:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.6.3:4[accessibility,kde] >=x11-libs/qt-script-4.6.3:4 >=x11-libs/qt-sql-4.6.3:4[qt3support] >=x11-libs/qt-svg-4.6.3:4 >=x11-libs/qt-test-4.6.3:4 >=x11-libs/qt-webkit-4.6.3:4[kde?] !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* =dev-lang/python-2*[threads,xml] dev-vcs/git
app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libexttextcat-3.2 app-text/libwpd:0.9[tools] app-text/libwpg:0.2 >=app-text/libwps-0.2.2 dev-cpp/libcmis dev-db/unixODBC dev-libs/expat >=dev-libs/glib-2.28 >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1-r1 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d >=dev-libs/redland-1.0.14[ssl] >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/libpng-1.4 media-libs/libvisio net-print/cups sci-mathematics/lpsolve >=sys-libs/db-4.8 virtual/jpeg >=x11-libs/cairo-1.10.0 x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 gnome-base/orbit ) gtk? ( >=x11-libs/gtk+-2.24:2 ) gtk3? ( >=x11-libs/gtk+-3.2:3 ) graphite? ( media-gfx/graphite2 ) gstreamer? ( >=media-libs/gstreamer-0.10 >=media-libs/gst-plugins-base-0.10 ) java? ( >=dev-java/bsh-2.0_beta4 dev-java/lucene:2.9 dev-java/lucene-analyzers:2.3 ) jemalloc? ( dev-libs/jemalloc ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) opengl? ( virtual/opengl ) pdfimport? ( >=app-text/poppler-0.16[xpdf-headers,cxx] ) postgres? ( >=dev-db/postgresql-base-8.4.0 ) svg? ( gnome-base/librsvg ) webdav? ( net-libs/neon ) xmlsec? ( >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 ) !app-office/libreoffice-bin !app-office/openoffice-bin !app-office/openoffice media-fonts/libertine-ttf media-fonts/liberation-fonts java? ( >=virtual/jre-1.6 ) java? ( >=dev-java/java-config-2.1.9-r1 ) kde? ( >=kde-base/oxygen-icons-4.4:4[aqua=] ) kde? ( dev-lang/perl >=x11-libs/qt-core-4.6.3:4[qt3support,ssl] >=x11-libs/qt-gui-4.6.3:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.6.3:4[accessibility,kde] >=x11-libs/qt-script-4.6.3:4 >=x11-libs/qt-sql-4.6.3:4[qt3support] >=x11-libs/qt-svg-4.6.3:4 >=x11-libs/qt-test-4.6.3:4 >=x11-libs/qt-webkit-4.6.3:4[kde?] !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* =dev-lang/python-2*[threads,xml]
0
branding? ( http://dev.gentooexperimental.org/~scarabeus/libreoffice-branding-gentoo-0.3.tar.xz ) http://dev-www.libreoffice.org/src//ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz xmlsec? ( http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) java? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) java? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) java? ( http://dev-www.libreoffice.org/src//ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll )
http://www.libreoffice.org
LGPL-3
LibreOffice, a full office productivity suite.
autotools base bash-completion-r1 check-reqs eutils fdo-mime flag-o-matic git-2 gnome2-utils java-pkg-opt-2 java-utils-2 kde4-base kde4-functions libtool multilib nsplugins pax-utils portability prefix python toolchain-funcs user versionator virtualx
binfilter +branding dbus debug eds gnome +graphite gstreamer +gtk gtk3 +jemalloc kde mysql +nsplugin odk opengl pdfimport postgres svg test +vba +webdav +xmlsec elibc_FreeBSD java aqua kde kdeenablefinal
nsplugin? ( gtk ) gnome? ( gtk ) eds? ( gnome )
>=app-office/libreoffice-l10n-3.5.0
4
compile configure install postinst postrm preinst prepare pretend setup test unpack

@ -10,7 +10,7 @@ LibreOffice, a full office productivity suite.
autotools base bash-completion-r1 check-reqs eutils fdo-mime flag-o-matic git-2 gnome2-utils java-pkg-opt-2 java-utils-2 kde4-base kde4-functions libtool multilib nsplugins pax-utils portability prefix python toolchain-funcs user versionator virtualx
binfilter +branding dbus debug eds gnome +graphite gstreamer +gtk gtk3 +jemalloc kde mysql +nsplugin odk opengl pdfimport postgres svg test +vba +webdav +xmlsec elibc_FreeBSD java aqua kde kdeenablefinal
nsplugin? ( gtk ) gnome? ( gtk ) eds? ( gnome )
=app-office/libreoffice-l10n-9999*
>=app-office/libreoffice-l10n-3.5
4

File diff suppressed because one or more lines are too long

@ -6,7 +6,7 @@ mirror://berlios/eix/eix-0.22.11.tar.xz
http://eix.berlios.de
GPL-2
Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more
alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris
alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris
multilib toolchain-funcs
bzip2 debug doc hardened nls optimization strong-optimization sqlite tools zsh-completion

@ -1,22 +0,0 @@
sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) bzip2? ( app-arch/bzip2 ) app-arch/xz-utils doc? ( dev-python/docutils ) nls? ( sys-devel/gettext )
sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) bzip2? ( app-arch/bzip2 )
0
mirror://berlios/eix/eix-0.22.5.tar.xz
http://eix.berlios.de
GPL-2
Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more
alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris
multilib toolchain-funcs
+bzip2 debug doc hardened nls optimization strong-optimization sqlite tools
3
configure install

@ -1,22 +0,0 @@
sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 ) app-arch/xz-utils nls? ( sys-devel/gettext )
sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 )
0
mirror://berlios/eix/eix-0.23.1.tar.xz
http://eix.berlios.de
GPL-2
Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris
bash-completion-r1 multilib toolchain-funcs
debug doc nls optimization security strong-optimization sqlite tools zsh-completion
4
configure install

@ -1,22 +0,0 @@
sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 ) app-arch/xz-utils nls? ( sys-devel/gettext )
sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 )
0
mirror://berlios/eix/eix-0.23.2.tar.xz
http://eix.berlios.de
GPL-2
Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris
bash-completion-r1 multilib toolchain-funcs
debug doc nls optimization security strong-optimization sqlite tools zsh-completion
4
configure install

@ -1,22 +0,0 @@
>=dev-ruby/cmdparse-2.0.0 >=dev-ruby/redcloth-2.0.10 builder? ( >=dev-ruby/builder-2.0.0 ) exif? ( >=dev-ruby/exifr-0.10 ) highlight? ( >=dev-ruby/coderay-0.7.4.215 ) markdown? ( || ( >=dev-ruby/bluecloth-1.0.0 dev-ruby/maruku ) ) thumbnail? ( >=dev-ruby/rmagick-1.7.1 ) =dev-lang/ruby-1.8* =dev-lang/ruby-1.8* >=dev-ruby/rubygems-1.3.1 <=dev-ruby/rubygems-1.3.7-r1 !<dev-ruby/rdoc-2
>=dev-ruby/cmdparse-2.0.0 >=dev-ruby/redcloth-2.0.10 builder? ( >=dev-ruby/builder-2.0.0 ) exif? ( >=dev-ruby/exifr-0.10 ) highlight? ( >=dev-ruby/coderay-0.7.4.215 ) markdown? ( || ( >=dev-ruby/bluecloth-1.0.0 dev-ruby/maruku ) ) thumbnail? ( >=dev-ruby/rmagick-1.7.1 ) =dev-lang/ruby-1.8* =dev-lang/ruby-1.8* >=dev-ruby/rubygems-1.3.1 <=dev-ruby/rubygems-1.3.7-r1 !<dev-ruby/rdoc-2
0
mirror://rubygems/webgen-0.4.7.gem
http://webgen.rubyforge.org/
GPL-2
A template-based static website generator.
~amd64 ~x86
eutils gems multilib portability ruby toolchain-funcs user
builder exif highlight markdown thumbnail doc
compile install unpack

@ -1,22 +0,0 @@
ruby_targets_ruby18? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( test? ( virtual/ruby-test-unit[ruby_targets_ruby18] ) ) test? ( ruby_targets_ruby18? ( >=dev-ruby/cmdparse-2.0.0[ruby_targets_ruby18] >=dev-ruby/redcloth-4.1.9[ruby_targets_ruby18] builder? ( >=dev-ruby/builder-2.1.0[ruby_targets_ruby18] ) highlight? ( >=dev-ruby/coderay-0.8.312[ruby_targets_ruby18] ) markdown? ( dev-ruby/maruku[ruby_targets_ruby18] ) ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) )
ruby_targets_ruby18? ( >=dev-ruby/cmdparse-2.0.0[ruby_targets_ruby18] >=dev-ruby/redcloth-4.1.9[ruby_targets_ruby18] builder? ( >=dev-ruby/builder-2.1.0[ruby_targets_ruby18] ) highlight? ( >=dev-ruby/coderay-0.8.312[ruby_targets_ruby18] ) markdown? ( dev-ruby/maruku[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] )
0
mirror://rubygems/webgen-0.5.13.gem
test
http://webgen.rubyforge.org/
GPL-2
A template-based static website generator.
~amd64 ~x86
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
builder highlight markdown test elibc_FreeBSD ruby_targets_ruby18 doc doc test test
2
compile configure install prepare setup test unpack

@ -0,0 +1,22 @@
>=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* )
>=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* )
0
http://commondatastorage.googleapis.com/chromium-browser-official/v8-3.7.12.6.tar.bz2
http://code.google.com/p/v8
BSD
Google's open source JavaScript engine
~amd64 ~arm ~x86 ~x64-macos ~x86-macos
eutils multilib pax-utils portability python toolchain-funcs user
4
compile install postinst preinst pretend setup test

@ -2,7 +2,7 @@ test? ( ruby_targets_ruby18? ( >=dev-ruby/mime-types-1.16[ruby_targets_ruby18] >
ruby_targets_ruby18? ( >=dev-ruby/mime-types-1.16[ruby_targets_ruby18] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ruby18] >=dev-ruby/rack-1.0.0[ruby_targets_ruby18] >=dev-ruby/rack-test-0.5.4[ruby_targets_ruby18] >=dev-ruby/selenium-webdriver-2.0[ruby_targets_ruby18] >=dev-ruby/xpath-0.1.4[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/mime-types-1.16[ruby_targets_ree18] >=dev-ruby/nokogiri-1.3.3[ruby_targets_ree18] >=dev-ruby/rack-1.0.0[ruby_targets_ree18] >=dev-ruby/rack-test-0.5.4[ruby_targets_ree18] >=dev-ruby/selenium-webdriver-2.0[ruby_targets_ree18] >=dev-ruby/xpath-0.1.4[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
0
mirror://rubygems/capybara-1.1.2.gem
test
http://github.com/jnicklas/capybara
MIT
Capybara aims to simplify the process of integration testing Rack applications.

@ -1,22 +0,0 @@
dev-util/ragel ruby_targets_ruby18? ( dev-ruby/rake-compiler[ruby_targets_ruby18] test? ( >=dev-ruby/awesome_print-0.4.0[ruby_targets_ruby18] >=dev-ruby/builder-2.1.2[ruby_targets_ruby18] >=dev-util/cucumber-1.0.0[ruby_targets_ruby18] >=dev-ruby/rspec-2.6.0[ruby_targets_ruby18] >=dev-ruby/term-ansicolor-1.0.5[ruby_targets_ruby18] ) doc? ( >=dev-ruby/yard-0.7.2[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( dev-ruby/rake-compiler[ruby_targets_ree18] test? ( >=dev-ruby/awesome_print-0.4.0[ruby_targets_ree18] >=dev-ruby/builder-2.1.2[ruby_targets_ree18] >=dev-util/cucumber-1.0.0[ruby_targets_ree18] >=dev-ruby/rspec-2.6.0[ruby_targets_ree18] >=dev-ruby/term-ansicolor-1.0.5[ruby_targets_ree18] ) doc? ( >=dev-ruby/yard-0.7.2[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( >=dev-ruby/json-1.4.6[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/json-1.4.6[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
ruby_targets_ruby18? ( >=dev-ruby/json-1.4.6[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/json-1.4.6[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
0
https://github.com/cucumber/gherkin/tarball/v2.4.11 -> gherkin-2.4.11.tgz
http://wiki.github.com/aslakhellesoy/cucumber/gherkin
MIT
Fast Gherkin lexer and parser based on Ragel.
~amd64
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
doc test test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc doc test
|| ( ruby_targets_ruby18 ruby_targets_ree18 )
4
compile configure install prepare setup test unpack

@ -1,22 +0,0 @@
dev-util/ragel ruby_targets_ruby18? ( dev-ruby/rake-compiler[ruby_targets_ruby18] test? ( >=dev-ruby/awesome_print-0.4.0[ruby_targets_ruby18] >=dev-ruby/builder-2.1.2[ruby_targets_ruby18] >=dev-util/cucumber-1.0.0[ruby_targets_ruby18] >=dev-ruby/rspec-2.6.0[ruby_targets_ruby18] >=dev-ruby/term-ansicolor-1.0.5[ruby_targets_ruby18] ) doc? ( >=dev-ruby/yard-0.7.2[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( dev-ruby/rake-compiler[ruby_targets_ree18] test? ( >=dev-ruby/awesome_print-0.4.0[ruby_targets_ree18] >=dev-ruby/builder-2.1.2[ruby_targets_ree18] >=dev-util/cucumber-1.0.0[ruby_targets_ree18] >=dev-ruby/rspec-2.6.0[ruby_targets_ree18] >=dev-ruby/term-ansicolor-1.0.5[ruby_targets_ree18] ) doc? ( >=dev-ruby/yard-0.7.2[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( >=dev-ruby/json-1.4.6[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/json-1.4.6[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
ruby_targets_ruby18? ( >=dev-ruby/json-1.4.6[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/json-1.4.6[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
0
https://github.com/cucumber/gherkin/tarball/v2.4.14 -> gherkin-2.4.14.tgz
http://wiki.github.com/aslakhellesoy/cucumber/gherkin
MIT
Fast Gherkin lexer and parser based on Ragel.
~amd64
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
doc test test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc doc test
|| ( ruby_targets_ruby18 ruby_targets_ree18 )
4
compile configure install prepare setup test unpack

@ -1,22 +0,0 @@
dev-util/ragel ruby_targets_ruby18? ( dev-ruby/rake-compiler[ruby_targets_ruby18] test? ( >=dev-ruby/awesome_print-0.4.0[ruby_targets_ruby18] >=dev-ruby/builder-2.1.2[ruby_targets_ruby18] >=dev-util/cucumber-1.0.0[ruby_targets_ruby18] >=dev-ruby/rspec-2.6.0[ruby_targets_ruby18] >=dev-ruby/term-ansicolor-1.0.5[ruby_targets_ruby18] ) doc? ( >=dev-ruby/yard-0.7.2[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( dev-ruby/rake-compiler[ruby_targets_ree18] test? ( >=dev-ruby/awesome_print-0.4.0[ruby_targets_ree18] >=dev-ruby/builder-2.1.2[ruby_targets_ree18] >=dev-util/cucumber-1.0.0[ruby_targets_ree18] >=dev-ruby/rspec-2.6.0[ruby_targets_ree18] >=dev-ruby/term-ansicolor-1.0.5[ruby_targets_ree18] ) doc? ( >=dev-ruby/yard-0.7.2[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( >=dev-ruby/json-1.4.6[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/json-1.4.6[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
ruby_targets_ruby18? ( >=dev-ruby/json-1.4.6[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/json-1.4.6[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
0
https://github.com/cucumber/gherkin/tarball/v2.4.15 -> gherkin-2.4.15.tgz
http://wiki.github.com/aslakhellesoy/cucumber/gherkin
MIT
Fast Gherkin lexer and parser based on Ragel.
~amd64
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
doc test test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc doc test
|| ( ruby_targets_ruby18 ruby_targets_ree18 )
4
compile configure install prepare setup test unpack

@ -1,22 +0,0 @@
dev-util/ragel ruby_targets_ruby18? ( dev-ruby/rake-compiler[ruby_targets_ruby18] test? ( >=dev-ruby/awesome_print-0.4.0[ruby_targets_ruby18] >=dev-ruby/builder-2.1.2[ruby_targets_ruby18] >=dev-util/cucumber-1.0.0[ruby_targets_ruby18] >=dev-ruby/rspec-2.6.0[ruby_targets_ruby18] >=dev-ruby/term-ansicolor-1.0.5[ruby_targets_ruby18] ) doc? ( >=dev-ruby/yard-0.7.2[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( dev-ruby/rake-compiler[ruby_targets_ree18] test? ( >=dev-ruby/awesome_print-0.4.0[ruby_targets_ree18] >=dev-ruby/builder-2.1.2[ruby_targets_ree18] >=dev-util/cucumber-1.0.0[ruby_targets_ree18] >=dev-ruby/rspec-2.6.0[ruby_targets_ree18] >=dev-ruby/term-ansicolor-1.0.5[ruby_targets_ree18] ) doc? ( >=dev-ruby/yard-0.7.2[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( >=dev-ruby/json-1.4.6[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/json-1.4.6[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
ruby_targets_ruby18? ( >=dev-ruby/json-1.4.6[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/json-1.4.6[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
0
https://github.com/cucumber/gherkin/tarball/v2.4.18 -> gherkin-2.4.18.tgz
http://wiki.github.com/aslakhellesoy/cucumber/gherkin
MIT
Fast Gherkin lexer and parser based on Ragel.
~amd64
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
doc test test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc doc test
|| ( ruby_targets_ruby18 ruby_targets_ree18 )
4
compile configure install prepare setup test unpack

@ -6,7 +6,7 @@ http://mercurial.selenic.com/release/mercurial-2.0.tar.gz
http://mercurial.selenic.com/
GPL-2
Scalable distributed SCM
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
bash-completion-r1 distutils elisp-common eutils multilib portability python toolchain-funcs user
bugzilla emacs gpg test tk zsh-completion

@ -0,0 +1,22 @@
dev-libs/openssl dev-libs/libpcre >=dev-lang/lua-5.1
dev-libs/openssl dev-libs/libpcre >=dev-lang/lua-5.1
0
https://github.com/downloads/lefcha/imapfilter/imapfilter-2.4.tar.gz
http://imapfilter.hellug.gr
MIT
An IMAP mail filtering utility
~amd64 ~ppc ~x86
multilib toolchain-funcs
4
compile install prepare

@ -0,0 +1,22 @@
bzip2? ( app-arch/bzip2 ) >=dev-cpp/gtkmm-2.12:2.4 >=dev-cpp/glibmm-2.16:2 dev-libs/libsigc++:2 media-libs/tiff media-libs/libpng media-libs/libiptcdata media-libs/lcms:2 sys-libs/zlib virtual/jpeg app-arch/xz-utils dev-util/pkgconfig >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
bzip2? ( app-arch/bzip2 ) >=dev-cpp/gtkmm-2.12:2.4 >=dev-cpp/glibmm-2.16:2 dev-libs/libsigc++:2 media-libs/tiff media-libs/libpng media-libs/libiptcdata media-libs/lcms:2 sys-libs/zlib virtual/jpeg
0
http://dev.gentoo.org/~radhermit/distfiles/rawtherapee-4.0.6.tar.xz
http://www.rawtherapee.com/
GPL-3
Digital photo editing tool focused on RAW image file manipulation and conversion
~amd64 ~x86
base cmake-utils eutils flag-o-matic multilib portability toolchain-funcs user
bzip2 doc openmp
4
compile configure install prepare setup test unpack

@ -1,4 +1,4 @@
>=media-libs/libpng-1.2.43 >=media-libs/tiff-3.9.4 sys-libs/zlib virtual/jpeg x11-libs/libXrender x11-libs/qt-gui:4 opengl? ( x11-libs/qt-opengl:4 ) dev-libs/boost >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
>=media-libs/libpng-1.2.43 >=media-libs/tiff-3.9.4 sys-libs/zlib virtual/jpeg x11-libs/libXrender x11-libs/qt-gui:4 opengl? ( x11-libs/qt-opengl:4 ) dev-libs/boost >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost )
>=media-libs/libpng-1.2.43 >=media-libs/tiff-3.9.4 sys-libs/zlib virtual/jpeg x11-libs/libXrender x11-libs/qt-gui:4 opengl? ( x11-libs/qt-opengl:4 )
0
mirror://sourceforge/scantailor/scantailor-0.9.10.tar.gz
@ -7,8 +7,8 @@ http://scantailor.sourceforge.net/
GPL-2 GPL-3 public-domain
A interactive post-processing tool for scanned pages
~amd64 ~x86
base cmake-utils eutils flag-o-matic multilib portability toolchain-funcs user
opengl
base cmake-utils eutils flag-o-matic multilib portability toolchain-funcs user virtualx
opengl test

@ -1,22 +0,0 @@
>=media-libs/libpng-1.2.43 >=media-libs/tiff-3.9.4 sys-libs/zlib virtual/jpeg x11-libs/libXrender x11-libs/qt-gui:4 opengl? ( x11-libs/qt-opengl:4 ) dev-libs/boost >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
>=media-libs/libpng-1.2.43 >=media-libs/tiff-3.9.4 sys-libs/zlib virtual/jpeg x11-libs/libXrender x11-libs/qt-gui:4 opengl? ( x11-libs/qt-opengl:4 )
0
mirror://sourceforge/scantailor/scantailor-0.9.9.tar.gz
http://scantailor.sourceforge.net/
GPL-2 GPL-3 public-domain
A interactive post-processing tool for scanned pages
~amd64 ~x86
base cmake-utils eutils flag-o-matic multilib portability toolchain-funcs user
dewarping opengl
2
compile configure install prepare test unpack

@ -1,22 +0,0 @@
>=media-libs/libpng-1.2.43 >=media-libs/tiff-3.9.4 sys-libs/zlib virtual/jpeg x11-libs/libXrender x11-libs/qt-gui:4 opengl? ( x11-libs/qt-opengl:4 ) dev-libs/boost >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
>=media-libs/libpng-1.2.43 >=media-libs/tiff-3.9.4 sys-libs/zlib virtual/jpeg x11-libs/libXrender x11-libs/qt-gui:4 opengl? ( x11-libs/qt-opengl:4 )
0
mirror://sourceforge/scantailor/scantailor-0.9.9.2.tar.gz
http://scantailor.sourceforge.net/
GPL-2 GPL-3 public-domain
A interactive post-processing tool for scanned pages
~amd64 ~x86
base cmake-utils eutils flag-o-matic multilib portability toolchain-funcs user
dewarping opengl
4
compile configure install prepare test unpack

@ -6,7 +6,7 @@ mirror
http://tipok.org.ua/node/17
LGPL-2.1
HE-AAC+ v2 library, based on the reference implementation
~amd64
~amd64 ~hppa
autotools eutils libtool multilib portability toolchain-funcs user
bindist fftw static-libs
!bindist

@ -1,22 +0,0 @@
app-cdr/cdrkit app-i18n/enca app-cdr/dvd+rw-tools dev-cpp/gtkmm:2.4 dev-cpp/libxmlpp:2.6 >=dev-libs/boost-1.47 media-libs/libdvdread media-sound/twolame media-video/dvdauthor virtual/ffmpeg >=media-video/mjpegtools-1.8.0 x11-libs/gtk+:2 >=dev-util/scons-0.96.1 dev-util/scons
app-cdr/cdrkit app-i18n/enca app-cdr/dvd+rw-tools dev-cpp/gtkmm:2.4 dev-cpp/libxmlpp:2.6 >=dev-libs/boost-1.47 media-libs/libdvdread media-sound/twolame media-video/dvdauthor virtual/ffmpeg >=media-video/mjpegtools-1.8.0 x11-libs/gtk+:2 gnome? ( gnome-base/gvfs )
0
mirror://sourceforge/bombono/bombono-dvd-1.2.0.tar.bz2
http://www.bombono.org/
GPL-2
GUI DVD authoring program
~amd64 ~x86
base eutils flag-o-matic multilib portability scons-utils toolchain-funcs user
gnome
4
compile configure install prepare unpack

@ -0,0 +1,22 @@
app-i18n/enca app-cdr/dvd+rw-tools dev-cpp/gtkmm:2.4 dev-cpp/libxmlpp:2.6 >=dev-libs/boost-1.47 media-libs/libdvdread media-sound/twolame media-video/dvdauthor virtual/cdrtools virtual/ffmpeg >=media-video/mjpegtools-1.8.0 x11-libs/gtk+:2 >=dev-util/scons-0.96.1 dev-util/scons
app-i18n/enca app-cdr/dvd+rw-tools dev-cpp/gtkmm:2.4 dev-cpp/libxmlpp:2.6 >=dev-libs/boost-1.47 media-libs/libdvdread media-sound/twolame media-video/dvdauthor virtual/cdrtools virtual/ffmpeg >=media-video/mjpegtools-1.8.0 x11-libs/gtk+:2 gnome? ( gnome-base/gvfs )
0
mirror://sourceforge/bombono/bombono-dvd-1.2.0.tar.bz2
http://www.bombono.org/
GPL-2
GUI DVD authoring program
~amd64 ~x86
base eutils flag-o-matic multilib portability scons-utils toolchain-funcs user
gnome
4
compile configure install prepare unpack

@ -0,0 +1,22 @@
app-i18n/enca app-cdr/dvd+rw-tools dev-cpp/gtkmm:2.4 dev-cpp/libxmlpp:2.6 >=dev-libs/boost-1.47 media-libs/libdvdread media-sound/twolame media-video/dvdauthor virtual/cdrtools virtual/ffmpeg >=media-video/mjpegtools-1.8.0 x11-libs/gtk+:2 dev-util/pkgconfig >=dev-util/scons-0.96.1 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost )
app-i18n/enca app-cdr/dvd+rw-tools dev-cpp/gtkmm:2.4 dev-cpp/libxmlpp:2.6 >=dev-libs/boost-1.47 media-libs/libdvdread media-sound/twolame media-video/dvdauthor virtual/cdrtools virtual/ffmpeg >=media-video/mjpegtools-1.8.0 x11-libs/gtk+:2 gnome? ( gnome-base/gvfs )
0
mirror://sourceforge/bombono/bombono-dvd-1.2.0.tar.bz2
http://www.bombono.org/
GPL-2
GUI DVD authoring program
~amd64 ~x86
base eutils flag-o-matic multilib portability scons-utils toolchain-funcs user virtualx
gnome test
4
compile configure install prepare test unpack

@ -6,7 +6,7 @@ http://ffmpeg.org/releases/ffmpeg-0.8.7.tar.bz2
http://ffmpeg.org/
GPL-2 amr? ( GPL-3 ) encode? ( aac? ( GPL-3 ) )
Complete solution to record, convert and stream audio and video. Includes libavcodec.
~amd64 ~x86-fbsd
~amd64 ~hppa ~x86-fbsd
eutils flag-o-matic multilib portability toolchain-funcs user
aac aacplus alsa amr bindist +bzip2 celt cpudetection debug dirac doc +encode faac frei0r gsm +hardcoded-tables ieee1394 jack jpeg2k mp3 network oss pic +qt-faststart rtmp schroedinger sdl speex static-libs test theora threads truetype v4l vaapi vdpau vorbis vpx X x264 xvid +zlib 3dnow 3dnowext altivec avx mmx mmxext ssse3
bindist? ( encode? ( !faac !aacplus ) )

@ -0,0 +1,22 @@
media-libs/gd[png,truetype]
media-libs/gd[png,truetype]
0
mirror://sourceforge/sarg/sarg-2.3.2.tar.gz
http://sarg.sourceforge.net/sarg.php
GPL-2
Squid Analysis Report Generator
~amd64 ~ppc ~x86
eutils multilib portability toolchain-funcs user
4
configure prepare

@ -0,0 +1,22 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
0
http://www.inmon.com/bin/sflowtool-3.22.tar.gz
http://www.inmon.com/technology/sflowTools.php
inmon-sflow
sflowtool is a utility for collecting and processing sFlow data
~amd64 ~ppc ~x86
autotools eutils flag-o-matic libtool multilib portability toolchain-funcs user
2
configure install prepare

@ -0,0 +1,22 @@
>=sys-apps/dbus-1.2 >=dev-libs/dbus-glib-0.75 >=net-wireless/wireless-tools-28_pre9 || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-147[extras] ) >=dev-libs/glib-2.26 >=sys-auth/polkit-0.97 dev-libs/libnl:1.1 >=net-wireless/wpa_supplicant-0.7.3-r3[dbus] bluetooth? ( >=net-wireless/bluez-4.82 ) avahi? ( net-dns/avahi[autoipd] ) gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) nss? ( >=dev-libs/nss-3.11 ) dhclient? ( net-misc/dhcp ) dhcpcd? ( >=net-misc/dhcpcd-4.0.0_rc3 ) introspection? ( >=dev-libs/gobject-introspection-0.10.3 ) ppp? ( >=net-misc/modemmanager-0.4 >=net-dialup/ppp-2.4.5 ) resolvconf? ( net-dns/openresolv ) connection-sharing? ( net-dns/dnsmasq net-firewall/iptables ) wimax? ( >=net-wireless/wimax-1.5.1 ) dev-util/pkgconfig >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 doc? ( >=dev-util/gtk-doc-1.8 ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool app-arch/xz-utils
>=sys-apps/dbus-1.2 >=dev-libs/dbus-glib-0.75 >=net-wireless/wireless-tools-28_pre9 || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-147[extras] ) >=dev-libs/glib-2.26 >=sys-auth/polkit-0.97 dev-libs/libnl:1.1 >=net-wireless/wpa_supplicant-0.7.3-r3[dbus] bluetooth? ( >=net-wireless/bluez-4.82 ) avahi? ( net-dns/avahi[autoipd] ) gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) nss? ( >=dev-libs/nss-3.11 ) dhclient? ( net-misc/dhcp ) dhcpcd? ( >=net-misc/dhcpcd-4.0.0_rc3 ) introspection? ( >=dev-libs/gobject-introspection-0.10.3 ) ppp? ( >=net-misc/modemmanager-0.4 >=net-dialup/ppp-2.4.5 ) resolvconf? ( net-dns/openresolv ) connection-sharing? ( net-dns/dnsmasq net-firewall/iptables ) wimax? ( >=net-wireless/wimax-1.5.1 ) sys-auth/consolekit
0
mirror://gnome/sources/NetworkManager/0.9/NetworkManager-0.9.2.0.tar.xz
http://www.gnome.org/projects/NetworkManager/
GPL-2
Network configuration and management in an easy way. Desktop environment independent.
~amd64 ~arm ~ppc ~ppc64 ~x86
autotools eutils gnome.org libtool linux-info multilib portability systemd toolchain-funcs user versionator
avahi bluetooth doc +nss gnutls dhclient +dhcpcd +introspection kernel_linux +ppp resolvconf connection-sharing wimax
^^ ( nss gnutls ) ^^ ( dhclient dhcpcd )
4
configure install postinst prepare pretend setup

@ -0,0 +1,22 @@
>=x11-libs/wxGTK-2.8.12 >=dev-libs/crypto++-5 >=sys-libs/zlib-1.2.1 stats? ( >=media-libs/gd-2.0.26[jpeg] ) geoip? ( dev-libs/geoip ) upnp? ( >=net-libs/libupnp-1.6.6 ) remote? ( >=media-libs/libpng-1.2.0 unicode? ( >=media-libs/gd-2.0.26 ) )
>=x11-libs/wxGTK-2.8.12 >=dev-libs/crypto++-5 >=sys-libs/zlib-1.2.1 stats? ( >=media-libs/gd-2.0.26[jpeg] ) geoip? ( dev-libs/geoip ) upnp? ( >=net-libs/libupnp-1.6.6 ) remote? ( >=media-libs/libpng-1.2.0 unicode? ( >=media-libs/gd-2.0.26 ) )
0
mirror://sourceforge/amule/aMule-2.3.1.tar.bz2
http://www.amule.org/
GPL-2
aMule, the all-platform eMule p2p client
~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86
eutils flag-o-matic multilib portability toolchain-funcs user wxwidgets
daemon debug geoip nls remote stats unicode upnp +X
2
configure install preinst prepare setup

@ -1,22 +0,0 @@
>=net-libs/rb_libtorrent-0.14.9[python] dev-python/setuptools >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
>=net-libs/rb_libtorrent-0.14.9[python] dev-python/setuptools dev-python/chardet dev-python/pyopenssl dev-python/pyxdg || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson ) >=dev-python/twisted-8.1 >=dev-python/twisted-web-8.1 gtk? ( dev-python/pygame dev-python/pygobject:2 >=dev-python/pygtk-2.12 gnome-base/librsvg libnotify? ( dev-python/notify-python ) ) webinterface? ( dev-python/mako ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
0
http://download.deluge-torrent.org/source/deluge-1.3.1.tar.lzma
http://deluge-torrent.org/
GPL-2
BitTorrent client with a client/server model.
amd64 ~arm ~ppc ~sparc x86
distutils eutils flag-o-matic multilib portability python toolchain-funcs user
gtk libnotify webinterface
3
compile install postinst postrm prepare setup

@ -1,22 +0,0 @@
>=net-libs/rb_libtorrent-0.14.9[python] dev-python/setuptools >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
>=net-libs/rb_libtorrent-0.14.9[python] dev-python/setuptools dev-python/chardet dev-python/pyopenssl dev-python/pyxdg || ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson ) >=dev-python/twisted-8.1 >=dev-python/twisted-web-8.1 gtk? ( dev-python/pygame dev-python/pygobject:2 >=dev-python/pygtk-2.12 gnome-base/librsvg libnotify? ( dev-python/notify-python ) ) webinterface? ( dev-python/mako ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
0
http://download.deluge-torrent.org/source/deluge-1.3.2.tar.lzma
http://deluge-torrent.org/
GPL-2
BitTorrent client with a client/server model.
~amd64 ~arm ~ppc ~sparc ~x86
distutils eutils flag-o-matic multilib portability python toolchain-funcs user
gtk libnotify webinterface
3
compile install postinst postrm prepare setup

@ -6,7 +6,7 @@ mirror://cpan/authors/id/D/DA/DAGOLDEN/CPAN-Meta-2.112621.tar.gz
http://search.cpan.org/dist/CPAN-Meta/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
The distribution metadata for a CPAN dist
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user

@ -6,7 +6,7 @@ mirror://cpan/authors/id/D/DA/DAGOLDEN/CPAN-Meta-YAML-0.004.tar.gz
http://search.cpan.org/dist/CPAN-Meta-YAML/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
Read and write a subset of YAML for CPAN Meta files
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user

@ -6,7 +6,7 @@ mirror://cpan/authors/id/M/MA/MAKAMAKA/JSON-PP-2.27200.tar.gz
http://search.cpan.org/dist/JSON-PP/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
JSON::XS compatible pure-Perl module
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user

@ -6,7 +6,7 @@ mirror://cpan/authors/id/D/DA/DAGOLDEN/Module-Build-0.3800.tar.gz
http://search.cpan.org/dist/Module-Build/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
Build and install Perl modules
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user

@ -6,7 +6,7 @@ mirror://cpan/authors/id/D/DA/DAGOLDEN/Module-Metadata-1.000006.tar.gz
http://search.cpan.org/dist/Module-Metadata/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
Gather package and POD information from perl module files
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user

@ -6,7 +6,7 @@ mirror://cpan/authors/id/D/DA/DAGOLDEN/Parse-CPAN-Meta-1.4401.tar.gz
http://search.cpan.org/dist/Parse-CPAN-Meta/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
Parse META.yml and other similar CPAN metadata files
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user

@ -6,7 +6,7 @@ mirror://cpan/authors/id/D/DA/DAGOLDEN/Perl-OSType-1.002.tar.gz
http://search.cpan.org/dist/Perl-OSType/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
Map Perl operating system names to generic types
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user
test

@ -6,7 +6,7 @@ mirror://cpan/authors/id/R/RJ/RJBS/Version-Requirements-0.101020.tar.gz
http://search.cpan.org/dist/Version-Requirements/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
A set of version requirements for a CPAN dist
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user

@ -6,7 +6,7 @@ mirror://cpan/authors/id/J/JP/JPEACOCK/version-0.94.tar.gz
http://search.cpan.org/dist/version/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
Perl extension for Version Objects
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
alternatives base eutils multilib perl-module portability toolchain-funcs user

@ -0,0 +1,22 @@
X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( net-misc/ntp ) qt4? ( x11-libs/qt-gui ) app-text/xmlto =app-text/docbook-xml-dtd-4.1* test? ( sys-devel/bc ) >=app-admin/eselect-python-20091230 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=dev-util/scons-1.2.1
X? ( dev-python/pygtk:2 ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( net-misc/ntp ) qt4? ( x11-libs/qt-gui ) >=app-admin/eselect-python-20091230 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) )
0
mirror://nongnu/gpsd/gpsd-3.3.tar.gz
http://catb.org/gpsd/
BSD
GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients
~amd64 ~arm ~ppc ~ppc64 ~x86
distutils eutils multilib portability python scons-utils toolchain-funcs user
gpsd_protocols_ashtech gpsd_protocols_aivdm gpsd_protocols_clientdebug gpsd_protocols_earthmate gpsd_protocols_evermore gpsd_protocols_fv18 gpsd_protocols_garmin gpsd_protocols_garmintxt gpsd_protocols_gpsclock gpsd_protocols_itrax gpsd_protocols_mtk3301 gpsd_protocols_nmea gpsd_protocols_ntrip gpsd_protocols_navcom gpsd_protocols_oceanserver gpsd_protocols_oldstyle gpsd_protocols_oncore gpsd_protocols_rtcm104v2 gpsd_protocols_rtcm104v3 gpsd_protocols_sirf gpsd_protocols_superstar2 gpsd_protocols_timing gpsd_protocols_tsip gpsd_protocols_tripmate gpsd_protocols_tnt gpsd_protocols_ubx bluetooth cxx debug dbus ipv6 ncurses ntp python qt4 +shm +sockets test udev usb X
X? ( python )
4
compile configure install postinst postrm preinst prepare setup

@ -0,0 +1,22 @@
net-misc/curl
0
amd64? ( ftp://mersenne.org/gimps/mprime266-linux64.tar.gz ) x86? ( ftp://mersenne.org/gimps/mprime266.tar.gz )
binchecks
http://mersenne.org/
as-is
GIMPS - The Great Internet Mersenne Prime Search
-* ~amd64 ~x86
install postinst postrm

@ -0,0 +1,22 @@
selinux? ( sys-libs/libselinux ) pam? ( sys-libs/pam )
selinux? ( sys-libs/libselinux ) pam? ( sys-libs/pam )
0
http://www.busybox.net/downloads/busybox-1.19.3.tar.bz2
test
http://www.busybox.net/
GPL-2
Utilities for rescue and embedded systems
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-linux
eutils flag-o-matic multilib portability savedconfig toolchain-funcs user
ipv6 make-symlinks +mdev -pam selinux static elibc_glibc savedconfig
3
compile configure install postinst preinst prepare

@ -1,7 +1,7 @@
sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) )
2.95
mirror://gnu/gcc/gcc-2.95.3/gcc-2.95.3.tar.bz2 mirror://gentoo/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-2.95.3-patches-1.3.tar.bz2
mirror://gnu/gcc/gcc-2.95.3/gcc-2.95.3.tar.bz2 mirror://gentoo/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-2.95.3-patches-1.3.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-2.95.3-patches-1.3.tar.bz2
strip
http://gcc.gnu.org/
GPL-2 LGPL-2.1

@ -1,7 +1,7 @@
sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* ) >=media-libs/libart_lgpl-2.1 )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv
3.2
mirror://gnu/gcc/gcc-3.2.2/gcc-3.2.2.tar.bz2 mirror://gentoo/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.2.2-patches-1.1.tar.bz2
mirror://gnu/gcc/gcc-3.2.2/gcc-3.2.2.tar.bz2 mirror://gentoo/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.2.2-patches-1.1.tar.bz2
strip
http://gcc.gnu.org/
GPL-2 LGPL-2.1

@ -1,7 +1,7 @@
>=sys-devel/binutils-2.14.90.0.6-r1 amd64? ( >=sys-devel/binutils-2.15.90.0.1.1-r1 ) sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* ) >=media-libs/libart_lgpl-2.1 )
>=sys-devel/binutils-2.14.90.0.6-r1 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv
3.3
mirror://gnu/gcc/gcc-3.3.6/gcc-3.3.6.tar.bz2 mirror://gentoo/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.3.6-patches-1.7.tar.bz2 boundschecking? ( mirror://sourceforge/boundschecking/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 mirror://gentoo/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~lv/GCC/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~eradicator/gcc/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~vapier/dist/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~halcy0n/patches/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~zorry/patches/gcc/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~dirtyepic/dist/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 )
mirror://gnu/gcc/gcc-3.3.6/gcc-3.3.6.tar.bz2 mirror://gentoo/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.3.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.3.6-patches-1.7.tar.bz2 boundschecking? ( mirror://sourceforge/boundschecking/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 mirror://gentoo/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~vapier/dist/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~dirtyepic/dist/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~halcy0n/patches/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~zorry/patches/gcc/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 )
strip
http://gcc.gnu.org/
GPL-2 LGPL-2.1

@ -1,7 +1,7 @@
>=sys-devel/binutils-2.14.90.0.8-r1 amd64? ( >=sys-devel/binutils-2.15.90.0.1.1-r1 ) sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv
3.4
mirror://gnu/gcc/gcc-3.4.6/gcc-3.4.6.tar.bz2 mirror://gentoo/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 mirror://gentoo/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.4.6-patches-1.6.tar.bz2 boundschecking? ( mirror://sourceforge/boundschecking/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 mirror://gentoo/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~lv/GCC/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~eradicator/gcc/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~vapier/dist/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~halcy0n/patches/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~zorry/patches/gcc/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~dirtyepic/dist/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 ) d? ( mirror://sourceforge/dgcc/gdc-0.24-src.tar.bz2 )
mirror://gnu/gcc/gcc-3.4.6/gcc-3.4.6.tar.bz2 mirror://gentoo/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 mirror://gentoo/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.4.6-patches-1.6.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.4.6-patches-1.6.tar.bz2 boundschecking? ( mirror://sourceforge/boundschecking/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 mirror://gentoo/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~vapier/dist/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~dirtyepic/dist/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~halcy0n/patches/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~zorry/patches/gcc/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 ) d? ( mirror://sourceforge/dgcc/gdc-0.24-src.tar.bz2 )
strip
http://gcc.gnu.org/
GPL-2 LGPL-2.1

@ -1,7 +1,7 @@
>=sys-devel/binutils-2.15.94 sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv fortran? ( >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 ) >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv fortran? ( >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 )
4.0
mirror://gnu/gcc/gcc-4.0.4/gcc-4.0.4.tar.bz2 mirror://gentoo/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.0.4-patches-1.1.tar.bz2
mirror://gnu/gcc/gcc-4.0.4/gcc-4.0.4.tar.bz2 mirror://gentoo/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.0.4-patches-1.1.tar.bz2
strip
http://gcc.gnu.org/
GPL-2 LGPL-2.1 FDL-1.2

@ -1,7 +1,7 @@
ppc? ( >=sys-devel/binutils-2.17 ) ppc64? ( >=sys-devel/binutils-2.17 ) >=sys-devel/binutils-2.15.94 sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv fortran? ( >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 ) >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv fortran? ( >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 )
4.1
mirror://gnu/gcc/gcc-4.1.2/gcc-4.1.2.tar.bz2 mirror://gentoo/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.1.2-patches-1.3.tar.bz2 d? ( mirror://sourceforge/dgcc/gdc-0.24-src.tar.bz2 )
mirror://gnu/gcc/gcc-4.1.2/gcc-4.1.2.tar.bz2 mirror://gentoo/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.1.2-patches-1.3.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.1.2-patches-1.3.tar.bz2 d? ( mirror://sourceforge/dgcc/gdc-0.24-src.tar.bz2 )
strip
http://gcc.gnu.org/
GPL-2 LGPL-2.1 FDL-1.2

@ -1,7 +1,7 @@
ppc? ( >=sys-devel/binutils-2.17 ) ppc64? ( >=sys-devel/binutils-2.17 ) >=sys-devel/binutils-2.15.94 sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv fortran? ( >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 ) >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 app-arch/zip app-arch/unzip )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv fortran? ( >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 )
4.2
mirror://gnu/gcc/gcc-4.2.4/gcc-4.2.4.tar.bz2 mirror://gentoo/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.2.4-patches-1.1.tar.bz2
mirror://gnu/gcc/gcc-4.2.4/gcc-4.2.4.tar.bz2 mirror://gentoo/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.2.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.2.4-patches-1.1.tar.bz2
strip
http://gcc.gnu.org/
GPL-3 LGPL-2.1 || ( GPL-3 libgcc libstdc++ ) FDL-1.2

@ -1,7 +1,7 @@
amd64? ( multilib? ( gcj? ( app-emulation/emul-linux-x86-xlibs ) ) ) ppc? ( >=sys-devel/binutils-2.17 ) ppc64? ( >=sys-devel/binutils-2.17 ) >=sys-devel/binutils-2.15.94 sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 app-arch/zip app-arch/unzip )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2
4.3
mirror://gnu/gcc/gcc-4.3.3/gcc-4.3.3.tar.bz2 mirror://gentoo/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-patches-1.2.tar.bz2 mirror://gentoo/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
mirror://gnu/gcc/gcc-4.3.3/gcc-4.3.3.tar.bz2 mirror://gentoo/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-patches-1.2.tar.bz2 mirror://gentoo/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
strip
http://gcc.gnu.org/
GPL-3 LGPL-3 || ( GPL-3 libgcc libstdc++ ) FDL-1.2

@ -1,7 +1,7 @@
amd64? ( multilib? ( gcj? ( app-emulation/emul-linux-x86-xlibs ) ) ) ppc? ( >=sys-devel/binutils-2.17 ) ppc64? ( >=sys-devel/binutils-2.17 ) >=sys-devel/binutils-2.15.94 sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 app-arch/zip app-arch/unzip )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2
4.3
mirror://gnu/gcc/gcc-4.3.4/gcc-4.3.4.tar.bz2 mirror://gentoo/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-patches-1.4.tar.bz2 mirror://gentoo/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
mirror://gnu/gcc/gcc-4.3.4/gcc-4.3.4.tar.bz2 mirror://gentoo/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-patches-1.4.tar.bz2 mirror://gentoo/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
strip
http://gcc.gnu.org/
GPL-3 LGPL-3 || ( GPL-3 libgcc libstdc++ ) FDL-1.2

@ -1,7 +1,7 @@
amd64? ( multilib? ( gcj? ( app-emulation/emul-linux-x86-xlibs ) ) ) ppc? ( >=sys-devel/binutils-2.17 ) ppc64? ( >=sys-devel/binutils-2.17 ) >=sys-devel/binutils-2.15.94 sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 app-arch/zip app-arch/unzip )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2
4.3
mirror://gnu/gcc/gcc-4.3.5/gcc-4.3.5.tar.bz2 mirror://gentoo/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
mirror://gnu/gcc/gcc-4.3.5/gcc-4.3.5.tar.bz2 mirror://gentoo/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
strip
http://gcc.gnu.org/
GPL-3 LGPL-3 || ( GPL-3 libgcc libstdc++ ) FDL-1.2

@ -1,7 +1,7 @@
amd64? ( multilib? ( gcj? ( app-emulation/emul-linux-x86-xlibs ) ) ) ppc? ( >=sys-devel/binutils-2.17 ) ppc64? ( >=sys-devel/binutils-2.17 ) >=sys-devel/binutils-2.15.94 sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 app-arch/zip app-arch/unzip )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2
4.3
mirror://gnu/gcc/gcc-4.3.6/gcc-4.3.6.tar.bz2 mirror://gentoo/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
mirror://gnu/gcc/gcc-4.3.6/gcc-4.3.6.tar.bz2 mirror://gentoo/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
strip
http://gcc.gnu.org/
GPL-3 LGPL-3 || ( GPL-3 libgcc libstdc++ ) FDL-1.2

@ -1,7 +1,7 @@
elibc_glibc? ( >=sys-libs/glibc-2.8 ) amd64? ( multilib? ( gcj? ( app-emulation/emul-linux-x86-xlibs ) ) ) ppc? ( >=sys-devel/binutils-2.17 ) ppc64? ( >=sys-devel/binutils-2.17 ) >=sys-devel/binutils-2.15.94 sys-devel/gnuconfig >=sys-apps/sed-4 sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 graphite? ( >=dev-libs/cloog-ppl-0.15.10 >=dev-libs/ppl-0.10 ) >=sys-apps/texinfo-4.8 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( gtk? ( x11-libs/libXt x11-libs/libX11 x11-libs/libXtst x11-proto/xproto x11-proto/xextproto =x11-libs/gtk+-2* x11-libs/pango ) >=media-libs/libart_lgpl-2.1 app-arch/zip app-arch/unzip )
sys-libs/zlib !build? ( nls? ( sys-devel/gettext ) ) virtual/libiconv >=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 graphite? ( >=dev-libs/cloog-ppl-0.15.10 >=dev-libs/ppl-0.10 )
4.4
mirror://gnu/gcc/gcc-4.4.2/gcc-4.4.2.tar.bz2 mirror://gentoo/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~lv/GCC/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~eradicator/gcc/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.2-patches-1.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
mirror://gnu/gcc/gcc-4.4.2/gcc-4.4.2.tar.bz2 mirror://gentoo/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.2-patches-1.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar )
strip
http://gcc.gnu.org/
GPL-3 LGPL-3 || ( GPL-3 libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.2

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

Loading…
Cancel
Save