Sync with portage [Sat Jun 16 10:01:57 MSK 2012].

mhiretskiy
root 12 years ago
parent 5a9b9646ac
commit 4ee11cadd5

@ -2,3 +2,5 @@ DIST spideroak-bin-4.1.9860_amd64.deb 24201826 RMD160 3527477a9b85b69f04ec21f116
DIST spideroak-bin-4.1.9860_x86.deb 23635590 RMD160 bc423c3b5713986ddfec292340cb82e33dad7360 SHA1 93a658745d2248d39518690d5a0e588b1eac67e3 SHA256 2850bddf8a227e14b6b4fc1590e3a1c49ee5a31d23d154610785daaf1aa52df1
DIST spideroak-bin-4.5.9941_amd64.deb 24625808 RMD160 ca486e04eb35ab6224d5fc32421416d3b8554169 SHA1 f14e6eed76c5084b20e4e6a389802a160457b538 SHA256 9426dcc8c8fa59fa2cb40f3688aac304439aeb0c61fcee0c2b01f66a0550705c
DIST spideroak-bin-4.5.9941_x86.deb 24026748 RMD160 61ad6e99d5a97eaf4b63f6daa519c8ce82f0a12d SHA1 b621493c5b6eaf7a45e2d836e82e0eab72cb8ea8 SHA256 308942ee3094dc8ea33752c6cbe06d1b26e0b70dda651b25c20f30238d85facc
DIST spideroak-bin-4.5.9945_amd64.deb 22739354 RMD160 44a6709a2ae2dd497038d7b1b3da75638eb3d1ff SHA1 f674792992ba2abad24345dbea365c3ab1ae7c44 SHA256 28974dcd6be298fa91a1d9f998cc34f8fdd63b513c9d0215e3673f16c69d6a78
DIST spideroak-bin-4.5.9945_x86.deb 22135372 RMD160 b55dee2777e1c71f6d03654a33ee4bf3df62c3dc SHA1 87f27acbc618588746d0b255887e501f15ecdf05 SHA256 7dd15a12388324b59641a8f9cd1625568eec0b75ac7d9cf72b65afd6baa11c1e

@ -17,7 +17,6 @@
</maintainer>
<use>
<flag name='headless'>Build without graphic frontend</flag>
<flag name='pycurl-bundled'>Use bundled pycurl</flag>
<flag name='qt-bundled'>Use bundled Qt4 libraries</flag>
<flag name='system-libs'>Use the system libraries rather than bundled</flag>
</use>

@ -0,0 +1,156 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/spideroak-bin/spideroak-bin-4.5.9945.ebuild,v 1.1 2012/06/16 00:28:26 blueness Exp $
EAPI="4"
inherit eutils versionator
REV=$(get_version_component_range 3)
SRC_URI_BASE="https://spideroak.com/directdownload?platform=ubuntulucid"
DESCRIPTION="An easy, secure and consolidated free online backup, storage, access and sharing system."
HOMEPAGE="https://spideroak.com"
SRC_URI="x86? ( ${SRC_URI_BASE}&arch=i386&revision=${REV} -> ${P}_x86.deb )
amd64? ( ${SRC_URI_BASE}&arch=x86_64&revision=${REV} -> ${P}_amd64.deb )"
RESTRICT="mirror strip"
LICENSE="spideroak"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus headless system-libs"
SSL_SLOT="0.9.8"
DEPEND=""
RDEPEND="
dbus? ( sys-apps/dbus )
!headless? (
media-libs/fontconfig
media-libs/freetype:2
dev-libs/glib:2
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
x11-libs/libXmu
x11-libs/libXrender
x11-libs/libXt
)
system-libs? (
dev-libs/openssl:$SSL_SLOT
net-misc/curl
>=sys-devel/gcc-4
dev-libs/glib:2
dev-libs/libpcre
media-libs/libpng:1.2
x11-libs/qt-core
x11-libs/qt-gui
dev-db/sqlite:3
net-libs/libssh2
sys-libs/zlib
dev-lang/python:2.7
dev-python/pycurl
)
"
S=${WORKDIR}
QA_PREBUILT="*"
src_unpack() {
unpack ${A}
unpack ./data.tar.gz
rm -f control.tar.gz data.tar.gz debian-binary
rm -f usr/share/doc/spideroak/copyright
}
src_prepare() {
epatch "${FILESDIR}"/opt-path.patch
use headless && epatch "${FILESDIR}"/headless.patch
# Remove bundled libraries/plugins/python interpreter. Please keep this
# mapping in sync with the RDEPEND system-libs? ( atoms ) above, and the
# list of deleted files below
#
# libcrypto.so.0.$SSL_SLOT => dev-libs/openssl:$SSL_SLOT
# libssl.so.$SSL_SLOT => dev-libs/openssl:$SSL_SLOT
# libcurl.so* => net-misc/curl
# libexpat.so* => dev-libs/expat
# libgcc_s.so => >=sys-devel/gcc-4
# libstdc++.so* => >=sys-devel/gcc-4
# libpcre.so* => dev-libs/libpcre
# libpng12* => media-libs/libpng:1.2
# libQt*.so* => x11-libs/qt-core x11-libs/qt-gui
# libsqlite3.so* => dev-db/sqlite:3
# libssh2.so* => net-libs/libssh2
# libz.so* => sys-libs/zlib
#
# pycurl.so => dev-python/pycurl
#
# usr/lib/SpiderOak/py pyexpat.so => dev-lang/python:2.7
#
if use system-libs; then
for lib in \
libcrypto.so.$SSL_SLOT \
libssl.so.$SSL_SLOT \
libcurl.so* \
libexpat.so* \
libgcc_s.so* \
libpcre.so* \
libpng12* \
libQt*.so* \
libsqlite3.so* \
libssh2.so* \
libstdc++.so* \
libz.so* \
pycurl.so \
pyexpat.so
do
rm usr/lib/SpiderOak/$lib || die "rm $lib failed"
done
# Remove bundled python interpreter => dev-lang/python:2.7
rm usr/lib/SpiderOak/py || die "rm py failed"
fi
}
src_install() {
#install the executable script
exeinto /usr/bin
doexe usr/bin/SpiderOak
#install the prebundled libraries
dodir /opt
cp -pPR usr/lib/SpiderOak "${ED}"/opt/
#install the config files
rm -rf etc/apt
use dbus || rm -rf etc/dbus-1
insinto /
doins -r etc
#install the changelog
insinto /usr/share/doc/${P}
doins usr/share/doc/spideroak/changelog.gz
if ! use headless ; then
domenu usr/share/applications/spideroak.desktop
doicon usr/share/pixmaps/spideroak.png
fi
}
pkg_postinst() {
if use headless; then
einfo "For instructions on running SpiderOak without a GUI, please read the FAQ:"
einfo " https://spideroak.com/faq/questions/62/how_do_i_install_spideroak_on_a_headless_linux_server/"
einfo " https://spideroak.com/faq/questions/67/how_can_i_use_spideroak_from_the_commandline/"
fi
if use system-libs; then
einfo "You have chosen to use your system libraries rather than the precompiled libraries that"
einfo "SpiderOak bundles with their software. While upstream discourages this (see bug #398313),"
einfo "there are advantages to using the system libraries, like reducing the size of the package"
einfo "on your hard drive. For more reasons why bundled librars are not a good idea, see"
einfo " https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries"
fi
}

@ -1,4 +1,2 @@
DIST myspell-hyph_pt_BR-20060316.zip 1243 RMD160 fffa34a5f29442aaea09a5cc6fbb77f931d87d8f SHA1 c203e8b8c3f7912a8e7aca2f78ed35f1c3a22b10 SHA256 51d0d90fbff756d8a1b477cb61924e1268c56dfc8c34605641dc4e01d4525895
DIST myspell-hyph_pt_PT-20060316.zip 1238 RMD160 83ab8bed582c212cec5f22c8357062a84a645039 SHA1 525c6f794a8a16c6c07c41edce905036ce8c7a14 SHA256 2846f6079d8965447b22c1637696be71b69bdca91f5558c0c2a2b9b3b8de8dd2
DIST myspell-pt_BR-20060316.zip 95391 RMD160 737f9bb723da46ff5f04fabc02d6a781153a6550 SHA1 5d3d4bc865b9b3064b0588e54ca96d89de86be61 SHA256 ae3fd4faa66cf3d900b463551067d1f2904f6a4764d0470d6c3e6739e67dc033
DIST myspell-pt_PT-20060316.zip 135883 RMD160 a3beeb7d1a59de3518b0d6bfb3edf3c4ed3d3152 SHA1 b4f63045bb253d26be1a4733e955e91516366cd1 SHA256 d420d69a7b84be847a918cad877900f6626a97e30342ec33fe1597f17ea1cbc0
DIST oo3x-pt-PT-preao.oxt 556799 RMD160 2989607facdf5d0f0aa249b993d5ee139ae7449c SHA1 6609f0ecc66ae9ba90516f89c9a94063ceec35be SHA256 51c10318841f532c45907949e9ddbd5ac24e638f0e184706717e62161cbec039
DIST oo3x-pt-PT.oxt 556415 RMD160 28ef26c02c0181f1d8f3763438892aa54a6c5ec3 SHA1 c93a378beeef842282ea14eb8b5fae1d4709ea8d SHA256 a93230b2ee73bf5f04cd44f6c83650897ff1ed4bd50042981bc0342130b32841

@ -2,4 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>app-dicts</herd>
<use>
<flag name='preao'>Use the pre ortographic agreement version of the dictionary</flag>
</use>
</pkgmetadata>

@ -1,24 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-pt/myspell-pt-20060316.ebuild,v 1.18 2012/05/17 18:26:33 aballier Exp $
MYSPELL_SPELLING_DICTIONARIES=(
"pt,BR,pt_BR,Portuguese (Brazil),pt_BR.zip"
"pt,PT,pt_PT,Portuguese (Portugal),pt_PT.zip"
)
MYSPELL_HYPHENATION_DICTIONARIES=(
"pt,BR,hyph_pt_BR,Portuguese (Brazil),hyph_pt_BR.zip"
"pt,PT,hyph_pt_PT,Portuguese (Portugal),hyph_pt_PT.zip"
)
MYSPELL_THESAURUS_DICTIONARIES=(
)
inherit myspell
DESCRIPTION="Portuguese dictionaries for myspell/hunspell"
LICENSE="GPL-2"
HOMEPAGE="http://lingucomponent.openoffice.org/"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd"

@ -0,0 +1,36 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-pt/myspell-pt-20120420.ebuild,v 1.1 2012/06/15 14:17:50 scarabeus Exp $
EAPI=4
MYSPELL_DICT=(
"pt_PT.aff"
"pt_PT.dic"
)
MYSPELL_HYPH=(
"hyph_pt_PT.dic"
)
MYSPELL_THES=(
"th_pt_PT.dat"
"th_pt_PT.idx"
)
inherit myspell-r2
DESCRIPTION="Czech dictionaries for myspell/hunspell"
HOMEPAGE="http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:main"
# The dicts are not versioned.
# Version is determined by its date of upload to the server.
# Check at: http://darkstar.ist.utl.pt/openoffice.org/pt/
SRC_URI="
http://darkstar.ist.utl.pt/openoffice.org/pt/oo3x-pt-PT.oxt
preao? ( http://darkstar.ist.utl.pt/openoffice.org/pt/oo3x-pt-PT-preao.oxt )
"
LICENSE="GPL-2 MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="+preao"

@ -1,3 +1,3 @@
DIST ess-12.04-4.tgz 3280247 RMD160 29791b3695cafda1b8f788fd2d83d41c94e8f05b SHA1 b0396d0566403c616702124eb0253fe96166e099 SHA256 c8ae9ba3db3ee98ca857a9ea6c82c88d92d4bc9115bc3f7e08c466920b5950ca
DIST ess-5.12.tgz 2983695 RMD160 1d7ed808c9fe04a74f074d580b64d8f4b2d76a6c SHA1 ef9efc16af24ae82d54aa7a4b4ad909d9c3cfaea SHA256 8c0480e2e6de140b103b83f575997fa45a7b2ac3c61f6a80fd4d1e6bf74d0f6c
DIST ess-5.13.tgz 7245294 RMD160 0cf83969e77fc41315a73fd3f8e99ce1c4fc94fb SHA1 c2eb3c88774b9e07ed03c0c7e33f1d8a7dd0ce08 SHA256 26e78fb207f034e9f08f07073589faaa1e4d66a886de3e46769b79fd5e1072c4
DIST ess-5.14.tgz 7272065 RMD160 f7a50282bf54c8206ed36d3be16f10eaa2767e8f SHA1 c42d7f11d776924b28ed17958c5f34d77de65080 SHA256 982b625f5c3f0e11d2cd8903e15026b5ecac6775415e8eb3cd120d0b9950dcc6

@ -1,14 +1,15 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-5.13.ebuild,v 1.1 2011/02/03 20:27:47 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-12.04.4.ebuild,v 1.1 2012/06/15 18:13:13 ulm Exp $
EAPI=4
inherit elisp
MY_P=${PN}-${PV%.*}-${PV##*.}
DESCRIPTION="Emacs Speaks Statistics"
HOMEPAGE="http://ess.r-project.org/"
SRC_URI="http://ess.r-project.org/downloads/ess/${P}.tgz"
SRC_URI="http://ess.r-project.org/downloads/ess/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
@ -19,11 +20,11 @@ DEPEND="app-text/texi2html
virtual/latex-base"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
SITEFILE="50${PN}-gentoo.el"
# This is NOT redundant, elisp.eclass redefines src_compile.
src_compile() {
emake
default
}
src_install() {

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-5.14.ebuild,v 1.1 2012/03/03 00:14:13 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-5.14.ebuild,v 1.2 2012/06/15 21:14:16 ago Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://ess.r-project.org/downloads/ess/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
DEPEND="app-text/texi2html

@ -0,0 +1,16 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-sdl/emul-linux-x86-sdl-20120520-r1.ebuild,v 1.1 2012/06/15 19:57:29 pacho Exp $
EAPI="4"
inherit emul-linux-x86
LICENSE="LGPL-2 LGPL-2.1 ZLIB"
KEYWORDS="-* ~amd64"
DEPEND=""
RDEPEND="~app-emulation/emul-linux-x86-xlibs-${PV}
~app-emulation/emul-linux-x86-baselibs-${PV}
>=app-emulation/emul-linux-x86-soundlibs-${PV}-r2
~app-emulation/emul-linux-x86-medialibs-${PV}"

@ -0,0 +1,28 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20120520-r2.ebuild,v 1.3 2012/06/15 19:51:55 pacho Exp $
EAPI="4"
inherit emul-linux-x86
LICENSE="BSD FDL-1.2 GPL-2 LGPL-2.1 LGPL-2 as-is gsm public-domain"
KEYWORDS="-* ~amd64"
IUSE="alsa"
RDEPEND="~app-emulation/emul-linux-x86-baselibs-${PV}
~app-emulation/emul-linux-x86-medialibs-${PV}"
QA_DT_HASH="usr/lib32/.*"
src_prepare() {
_ALLOWED="${S}/etc/env.d"
use alsa && _ALLOWED="${_ALLOWED}|${S}/usr/bin/aoss"
ALLOWED="(${_ALLOWED})"
emul-linux-x86_src_prepare
if use alsa; then
mv -f "${S}"/usr/bin/aoss{,32} || die
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.12.ebuild,v 1.6 2012/06/14 05:19:56 cardoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.12.ebuild,v 1.7 2012/06/15 16:31:58 cardoe Exp $
EAPI=4
@ -127,7 +127,7 @@ VIRTNET_CONFIG_CHECK="
"
pkg_setup() {
use python && python_set_active_version 2
python_set_active_version 2
python_pkg_setup
enewgroup qemu 77

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.33 2012/06/14 05:19:56 cardoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.34 2012/06/15 16:31:58 cardoe Exp $
EAPI=4
@ -130,7 +130,7 @@ VIRTNET_CONFIG_CHECK="
"
pkg_setup() {
use python && python_set_active_version 2
python_set_active_version 2
python_pkg_setup
enewgroup qemu 77

@ -1,3 +1,3 @@
DIST calibre-0.8.52.tar.xz 24690364 RMD160 3041d07f0c9b8a67fc0457550968814be4d826e9 SHA1 7ec70aa251f90991be876cac9ea731ddd619b4da SHA256 29eebc8c82dd2cacc70e3fb5bc309020348028752a23765d8956769b79deaf2a
DIST calibre-0.8.54.tar.xz 24733284 RMD160 08dc646b72e6244fe8522f13fd724107c7c401c4 SHA1 9d13634db38e73d6ff8b015c57691eca90e60b97 SHA256 063b733e163b9bf78002f9cb35c2041a5f5550c9b91b38c8aa2b4d256877c847
DIST calibre-0.8.55.tar.xz 24913320 RMD160 047f676dee0c5e2a544622d07cf06eac33a5b557 SHA1 20dcbd67136e5251a596ced487356b8e01eb618a SHA256 00e0a7c304229b85eabc8331914110f9de22a155cb5e71e68b5e842b313e8305
DIST calibre-0.8.56.tar.xz 24928600 RMD160 622c0a2ef5f28395cea3d99ae2df690cf4580e3b SHA1 86f49233bfedfd186706193ab1c735e8ba7011c7 SHA256 877f7d1cfd3098b880f7981e01028360369ed11da74384542c2f3025ce036455

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.8.54.ebuild,v 1.1 2012/05/31 21:59:19 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.8.56.ebuild,v 1.1 2012/06/15 21:35:36 zmedico Exp $
EAPI=4
PYTHON_DEPEND=2:2.7
@ -38,6 +38,8 @@ COMMON_DEPEND="
>=media-gfx/imagemagick-6.5.9[jpeg,png]
>=media-libs/libwmf-0.2.8
virtual/libusb:0
x11-libs/qt-dbus:4
x11-libs/qt-svg:4
>=x11-misc/xdg-utils-1.0.2-r2"
RDEPEND="${COMMON_DEPEND}
@ -73,7 +75,7 @@ src_prepare() {
sed -e "s:if os.geteuid() == 0:if False and os.geteuid() == 0:" \
-i setup/install.py || die "sed failed to patch install.py"
sed -e "/^ self\\.check_call(qmc + \\[ext\\.name+'\\.pro'\\])$/a\
sed -e "/^ self\\.check_call(qmc + \\[.*\\.pro'\\])$/a\
\\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\ self.check_call(['sed', \
'-e', 's|^CFLAGS .*|\\\\\\\\0 ${CFLAGS}|', \
'-e', 's|^CXXFLAGS .*|\\\\\\\\0 ${CXXFLAGS}|', \

@ -1,35 +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/html2text/html2text-1.3.2-r1.ebuild,v 1.2 2010/01/02 11:22:49 fauli Exp $
inherit eutils toolchain-funcs
DESCRIPTION="A HTML to text converter"
HOMEPAGE="http://www.mbayer.de/html2text/index.shtml"
SRC_URI="http://userpage.fu-berlin.de/~mbayer/tools/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
DEPEND=""
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch 1.3.2_to_1.3.2a.diff
epatch "${FILESDIR}"/${P}-compiler.patch
}
src_compile() {
econf || die
emake CXX="$(tc-getCXX)" LDFLAGS="${LDFLAGS}" DEBUG="${CXXFLAGS}" || die
}
src_install() {
dobin html2text || die "dobin failed"
doman html2text.1.gz html2textrc.5.gz || die "doman failed"
dodoc CHANGES CREDITS KNOWN_BUGS README TODO
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.2a.ebuild,v 1.2 2012/03/22 16:57:35 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.2a.ebuild,v 1.3 2012/06/15 21:14:40 ago Exp $
EAPI=4
@ -13,7 +13,7 @@ SRC_URI="http://www.mbayer.de/html2text/downloads/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/sgmltools-lite/sgmltools-lite-3.0.3-r11.ebuild,v 1.1 2012/03/29 21:20:26 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/sgmltools-lite/sgmltools-lite-3.0.3-r11.ebuild,v 1.2 2012/06/15 21:13:50 ago Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/sgmltools-lite/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="jadetex"
DEPEND="app-text/sgml-common

@ -1,40 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r1.ebuild,v 1.6 2012/05/06 17:38:52 armin76 Exp $
EAPI="4"
inherit eutils multilib toolchain-funcs
DESCRIPTION="TinyCDB is a very fast and simple package for creating and reading constant data bases"
HOMEPAGE="http://www.corpit.ru/mjt/tinycdb.html"
SRC_URI="http://www.corpit.ru/mjt/${PN}/${P/-/_}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 hppa ia64 ppc x86"
IUSE="static-libs"
RESTRICT="test"
RDEPEND="!dev-db/cdb"
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.diff
# fix multilib support
sed -i "/^libdir/s:/lib:/$(get_libdir):" Makefile
}
src_compile() {
local targets="shared"
use static-libs && targets="${targets} staticlib piclib"
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ${targets}
}
src_install() {
local targets="install-sharedlib"
use static-libs && targets="${targets} install-piclib"
einstall ${targets}
dodoc ChangeLog NEWS
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v 1.5 2012/06/14 15:21:20 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v 1.6 2012/06/16 02:39:03 hattya Exp $
EAPI="4"
@ -12,16 +12,15 @@ SRC_URI="http://www.corpit.ru/mjt/${PN}/${P/-/_}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 hppa ~ia64 ppc x86"
KEYWORDS="amd64 hppa ia64 ppc x86"
IUSE="static-libs"
RESTRICT="test"
RDEPEND="!dev-db/cdb"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-gentoo.diff \
"${FILESDIR}"/${P}-umask.diff
epatch "${FILESDIR}"/${P}-gentoo.diff
epatch "${FILESDIR}"/${P}-umask.diff
# fix multilib support
sed -i "/^libdir/s:/lib:/$(get_libdir):" Makefile
}

@ -1,40 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77.ebuild,v 1.7 2011/08/13 12:19:01 hattya Exp $
EAPI="4"
inherit eutils multilib toolchain-funcs
DESCRIPTION="TinyCDB is a very fast and simple package for creating and reading constant data bases"
HOMEPAGE="http://www.corpit.ru/mjt/tinycdb.html"
SRC_URI="http://www.corpit.ru/mjt/${PN}/${P/-/_}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 hppa ia64 ppc x86"
IUSE=""
RESTRICT="test"
RDEPEND="!dev-db/cdb"
src_prepare() {
# fix multilib support
sed -i "/^libdir/s:/lib:/$(get_libdir):" Makefile
}
src_compile() {
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} ${LDFLAGS}" \
staticlib \
sharedlib \
piclib \
cdb-shared
mv -f cdb-shared cdb
}
src_install() {
einstall install-sharedlib install-piclib
dodoc NEWS
}

@ -1 +1,2 @@
DIST base64-bytestring-0.1.1.1.tar.gz 6005 RMD160 5329b0326f81eb24001536ee7b998f422a77e481 SHA1 2cde30a669eb147bb3bdbea71722e5f1b068a9c4 SHA256 8dbfd13372330580e8ac94ca09f359aa5dd021625ec190fa12bb1de781b61248
DIST base64-bytestring-0.1.1.3.tar.gz 6976 RMD160 41225a363773e47cc202f0a70c5190ba2be7b1d4 SHA1 f0c0ee3a44bfed15ba7ae7f6026a5619d2f168c7 SHA256 8f699640f3a9428fb3f5ab11fd7689fa760be08149fb42c36431c9e22cd1d53f

@ -0,0 +1,33 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/base64-bytestring/base64-bytestring-0.1.1.3.ebuild,v 1.1 2012/06/16 04:32:30 gienah Exp $
EAPI=4
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Fast base64 encoding and deconding for ByteStrings"
HOMEPAGE="https://github.com/bos/base64-bytestring"
SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=">=dev-lang/ghc-6.10.1"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? (
dev-haskell/hunit
>=dev-haskell/quickcheck-2.4.0.1
dev-haskell/test-framework
dev-haskell/test-framework-hunit
dev-haskell/test-framework-quickcheck2
)
"
src_configure() {
cabal_src_configure $(use test && use_enable test tests) #395351
}

@ -3,3 +3,4 @@ DIST text-0.11.1.12.tar.gz 120261 RMD160 fdfc9b080b8653918b15f6c8ef62ad82102e5da
DIST text-0.11.1.13.tar.gz 120181 RMD160 d08a657737b3eaba49c33adffc0a93359fd41178 SHA1 9139887ac1cee7ec1d59b76a80a938b2e9d1a05e SHA256 4e6cf947f2ab474d4bdbc5057b78a2faa00badad5ee2d032d0b7f98b9d276c51
DIST text-0.11.2.0.tar.gz 121020 RMD160 dc6719e9301183f8a4b08047580682d1eb2ebd01 SHA1 a5ecd653afab9b194a8475b6e3c683f11f4509f0 SHA256 178d12eb0dad50f3ef5135c443b31993e91ed91b1d04a2ebfa5c05520518a5bb
DIST text-0.11.2.1.tar.gz 121169 RMD160 e114ed27853084cbccc2c3b24734106cd65becbf SHA1 56dbc6b56d96cc1ffa44405a66a773a76932339e SHA256 69c9b5df8743cb5e5444f1730a8f7aed087e347bb26546e22e104ee46017502a
DIST text-0.11.2.2.tar.gz 121201 RMD160 4c902ce07ef85c6890f62a50bae858ff032d602a SHA1 8d07597c8bbf3922f61fcbda64f09b03c12534ff SHA256 6344e28609a0a08acd8cf59ecdf0e58b9afb849a6cf5eeaae2f14e2e79740032

@ -0,0 +1,34 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/text/text-0.11.2.2.ebuild,v 1.1 2012/06/16 04:03:30 gienah Exp $
# ebuild generated by hackport 0.2.13
EAPI="4"
CABAL_FEATURES="lib profile haddock hscolour hoogle"
inherit haskell-cabal
DESCRIPTION="An efficient packed Unicode text type."
HOMEPAGE="https://github.com/bos/text"
SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="test"
RDEPEND=">=dev-haskell/deepseq-1.1.0.0[profile?]
>=dev-lang/ghc-6.10.1"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? ( >=dev-haskell/quickcheck-2.4.0.1[profile?]
>=dev-haskell/test-framework-0.4[profile?] <dev-haskell/test-framework-0.7[profile?]
<dev-haskell/test-framework-hunit-0.3[profile?]
<dev-haskell/test-framework-quickcheck2-0.3[profile?]
)"
src_configure() {
# the tests need a utf-8 locale
cabal_src_configure $(use test && use_enable test tests) #395351
}

@ -1,4 +1,4 @@
DIST libnl-1.1.tar.gz 288932 RMD160 ebfc660302f31e5a94f03683f1ba85a3e057cf30 SHA1 54c7d02f93b09b43338e5cbf42f1373e83566577 SHA256 35cea4cfb6cd8af0cafa0f34fff81def5a1f193b8b8384299b4b21883e22edc3
DIST libnl-3.2.10.tar.gz 1147936 RMD160 cf2c06895d67f0d2be5a7f5923141a7410c7406f SHA1 b51dce18e71c7e90546680048c409b8558a0d240 SHA256 a790220fa5d2749abed5837fa1e46a6ae62f2db055a6c8c9f484230aad56bd03
DIST libnl-3.2.11.tar.gz 1146071 RMD160 c6efddf066083c90842ca674da6d2d2aa26e3302 SHA1 e8ce1ac2d11971c6ee9d58ac5b08e8fab538fabd SHA256 9750409c0fec8b27966a65d94c040647ee01753e0947b0d59577b815ee0e710d
DIST libnl-3.2.7.tar.gz 1124758 RMD160 0919933eacf6d40e619362710cd696b305cb25e6 SHA1 a7bfc9c1d7ba798338327171f6ab8ad4b1c62e14 SHA256 1141f3229ebf65f6cee43a898d4832b8c17cb942e23adeccb365e75708a2b08e
DIST libnl-3.2.9.tar.gz 1137028 RMD160 a5474dd2955c4ca32059c23b8c080edca7eba428 SHA1 3f8f5226f08d22352e5b6056beafa2a05db2aeb4 SHA256 9f23e9460bd9bb7fbe09af5eb281e4a43a26fa245ea864ed5e28fe4e8118af63

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.10.ebuild,v 1.3 2012/06/10 15:56:23 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.11.ebuild,v 1.1 2012/06/15 14:36:32 jer Exp $
EAPI=4
inherit eutils multilib

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/TimeDate/TimeDate-1.200.0.ebuild,v 1.7 2012/05/05 22:02:29 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/TimeDate/TimeDate-1.200.0.ebuild,v 1.8 2012/06/16 03:39:46 hattya Exp $
EAPI=4
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="A Date/Time Parsing Perl Module"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
SRC_TEST=do

@ -1,2 +1,3 @@
DIST awapi_perl_lib_2_5_6.tar.gz 1571056 RMD160 d6986cd9abc17b9d626983b5c794a5f182c203fe SHA1 1a67835fe7ac3fbf57ec7456d0c40a372026ed40 SHA256 c5058fb51e924521f24427c24a71df93e58e525686e0f548decd2e6db358584c
DIST awapi_perl_lib_2_6_0.tar.gz 3255570 RMD160 17c843bb27492585cf50a605f3d2b8841ae98f2e SHA1 a3022fe1b2e2a49229c09eaa1fb0d348b576064b SHA256 0f70c6de2153e1d6f373e84d2d3d123022a98cc0bf5e46a0dc2d585f451f118a
DIST awapi_perl_lib_2_6_1.tar.gz 3258248 RMD160 86a294360e4892c5da33083f6c4032008ba0d3dc SHA1 e167a3cb2ec551354efc879a3dbbdf9ae3af506f SHA256 2db5413fd8b2bd29113a8b1a4c547e7d071d7c96f07f83fcaa9526e1ca0b11ed

@ -0,0 +1,47 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/google-api-adwords-perl/google-api-adwords-perl-2.6.1.ebuild,v 1.1 2012/06/15 21:58:53 flameeyes Exp $
EAPI="4"
MY_PN="awapi_perl_lib"
MY_PV="${PV//\./_}"
MY_P="${MY_PN}_${MY_PV}"
inherit perl-module
SRC_TEST="do"
# tests seem to be failing, contacted upstream.
# code has been tested to work on 2.5.5 though
RESTRICT="test"
DESCRIPTION="Google AdWords API Perl Client"
HOMEPAGE="http://code.google.com/p/google-api-adwords-perl/"
SRC_URI="http://google-api-adwords-perl.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RDEPEND="dev-perl/Cache
dev-perl/IO-Socket-SSL
dev-perl/Log-Log4perl
dev-perl/libwww-perl
dev-perl/Math-Random-MT
>=dev-perl/Net-OAuth-0.27
>=dev-perl/SOAP-WSDL-2.00.10
dev-perl/URI
dev-perl/XML-Simple
dev-perl/XML-XPath"
DEPEND="${RDEPEND}
test? (
virtual/perl-Test-Simple
dev-perl/Test-MockObject
virtual/perl-Getopt-Long
dev-perl/Config-Properties
dev-perl/Data-Uniqid
)
virtual/perl-Module-Build"

@ -1,11 +1,11 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/urlgrabber/urlgrabber-3.9.1-r1.ebuild,v 1.6 2011/07/17 11:50:16 xarthisius Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/urlgrabber/urlgrabber-3.9.1-r1.ebuild,v 1.7 2012/06/15 14:44:56 jlec Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython *-pypy-*"
inherit distutils eutils

@ -1,12 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.5.3-r1.ebuild,v 1.1 2012/06/15 07:19:51 flameeyes Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.5.3-r2.ebuild,v 1.1 2012/06/15 14:22:57 flameeyes Exp $
EAPI=4
USE_RUBY="ruby18 ree18 ruby19 jruby"
RUBY_FAKEGEM_NAME="minitar"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC=""
@ -16,6 +14,7 @@ inherit ruby-fakegem
DESCRIPTION="Provides POSIX tarchive management from Ruby programs."
HOMEPAGE="http://rubyforge.org/projects/ruwiki/"
SRC_URI="mirror://rubygems/minitar-${PV}.gem"
LICENSE="|| ( GPL-2 Ruby )"
SLOT="0"
@ -28,3 +27,9 @@ RUBY_PATCHES=(
${PN}-0.5.2-gentoo.patch
${P}-pipes.patch
)
all_ruby_prepare() {
all_fakegem_prepare
# ignore faulty metadata
rm ../metadata
}

@ -1,29 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.5.3.ebuild,v 1.1 2012/06/15 06:56:40 flameeyes Exp $
EAPI=4
USE_RUBY="ruby18 ree18 ruby19 jruby"
RUBY_FAKEGEM_NAME="minitar"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README ChangeLog"
inherit ruby-fakegem
DESCRIPTION="Provides POSIX tarchive management from Ruby programs."
HOMEPAGE="http://rubyforge.org/projects/ruwiki/"
LICENSE="|| ( GPL-2 Ruby )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""
RESTRICT="test"
RUBY_PATCHES=(
${PN}-0.5.2-gentoo.patch
)

@ -0,0 +1 @@
DIST aws-sdk-for-ruby-1.5.3.tar.gz 1217280 RMD160 a8ef9fb59025c21527b39b53f5332aed6a100cdf SHA1 f3fb8ce19639b20bd0d614010a8e96820826d4f7 SHA256 ba07a5cd2f43c82f9490d58170dc5cd94f978ee5c5bf80ad80ed2ba809312674

@ -0,0 +1,63 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/aws-sdk/aws-sdk-1.5.3.ebuild,v 1.1 2012/06/15 14:46:52 flameeyes Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="README.rdoc"
RUBY_FAKEGEM_EXTRAINSTALL="ca-bundle.crt"
GITHUB_USER="amazonwebservices"
GITHUB_PROJECT="${PN}-for-ruby"
RUBY_S="${GITHUB_USER}-${GITHUB_PROJECT}-*"
RUBY_FAKEGEM_GEMSPEC="${FILESDIR}/${P}.gemspec"
inherit ruby-fakegem
DESCRIPTION="Official SDK for Amazon Web Services"
HOMEPAGE="http://aws.amazon.com/sdkforruby"
SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/tarball/${PV} -> ${GITHUB_PROJECT}-${PV}.tar.gz"
LICENSE="APSL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
ruby_add_rdepend "virtual/ruby-ssl
>=dev-ruby/httparty-0.7
>=dev-ruby/json-1.4
>=dev-ruby/nokogiri-1.4.4
>=dev-ruby/uuidtools-2.1"
ruby_add_bdepend "
test? ( dev-ruby/rspec )"
all_ruby_prepare() {
rm Gemfile* || die
epatch "${FILESDIR}"/${P}+httparty-0.8.patch
epatch "${FILESDIR}"/${P}-disabletest.patch
}
all_ruby_compile() {
if use doc; then
rdoc || die
fi
}
each_ruby_test() {
${RUBY} -S rspec -Ilib -raws || die
}
all_ruby_install() {
all_fakegem_install
insinto /usr/share/doc/${PF}
doins -r recipebook samples
}

@ -0,0 +1,41 @@
From 40d0d8c581026ad07bf94897b974b05d6b0542ef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= <flameeyes@flameeyes.eu>
Date: Fri, 15 Jun 2012 06:21:04 -0700
Subject: [PATCH] httparty_handler: do not dereference a nil object.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This might be required to support httparty 0.8 (which is in the
dependencies as it is).
Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu>
---
lib/aws/core/http/httparty_handler.rb | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/lib/aws/core/http/httparty_handler.rb b/lib/aws/core/http/httparty_handler.rb
index 46b3c9c..f2fea30 100644
--- a/lib/aws/core/http/httparty_handler.rb
+++ b/lib/aws/core/http/httparty_handler.rb
@@ -92,12 +92,13 @@ module AWS
begin
http_response = self.class.send(method, url, opts)
+ unless http_response.nil?
+ response.body = http_response.body
+ response.status = http_response.code.to_i
+ response.headers = http_response.to_hash
+ end
rescue Timeout::Error, Errno::ETIMEDOUT => e
response.timeout = true
- else
- response.body = http_response.body
- response.status = http_response.code.to_i
- response.headers = http_response.to_hash
end
end
end
--
1.7.8.6

@ -0,0 +1,38 @@
diff --git a/spec/shared/s3/paginated_collection_examples.rb b/spec/shared/s3/paginated_collection_examples.rb
index b9eb2e4..50fd291 100644
--- a/spec/shared/s3/paginated_collection_examples.rb
+++ b/spec/shared/s3/paginated_collection_examples.rb
@@ -84,33 +84,6 @@ module AWS
end
- it 'should request the remainder of the requested number of items' do
- expect_limits = [2, 2, 1]
- results = [
- client.new_stub_for(list_method),
- client.new_stub_for(list_method),
- client.new_stub_for(list_method),
- ]
- results[0].data[:truncated] = true
- results[1].data[:truncated] = true
- results[2].data[:truncated] = false
-
- ["first", "second", "third"].zip(results).each do |name, result|
- stub_markers(result, name)
- end
-
- [0, 1, 0].zip(results).each do |quantity, result|
- stub_members(result, quantity)
- end
-
- client.should_receive(list_method) do |opts|
- expect_limits.should_not be_empty
- opts[limit_param].should == expect_limits.shift
- results.shift
- end
- collection.each(:limit => 2) { |u| }
- end
-
end
end

@ -0,0 +1,14 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "aws-sdk"
s.version = "1.5.3"
s.homepage = "http://aws.amazon.com/sdkforruby"
s.require_paths = ["lib"]
s.summary = "AWS SDK for Ruby"
s.add_runtime_dependency(%q<uuidtools>, [">= 2.1"])
s.add_runtime_dependency(%q<httparty>, [">= 0.7"])
s.add_runtime_dependency(%q<nokogiri>, [">= 1.4.4"])
s.add_runtime_dependency(%q<json>, [">= 1.4"])
end

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ruby</herd>
</pkgmetadata>

@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/teeworlds/teeworlds-0.6.1.ebuild,v 1.2 2012/04/18 21:43:33 mr_bones_ Exp $
# $Header: /var/cvsroot/gentoo-x86/games-action/teeworlds/teeworlds-0.6.1.ebuild,v 1.3 2012/06/15 15:41:08 mr_bones_ Exp $
EAPI=3
PYTHON_DEPEND="2"
inherit eutils python toolchain-funcs games
inherit eutils multiprocessing python toolchain-funcs games
REVISION="b177-r50edfd37"
@ -80,10 +80,7 @@ src_compile() {
fi
fi
# Taken from the libreoffice-3.5.2.2 ebuild
local jobs=$(sed -ne 's/.*\(-j[[:space:]]*\|--jobs=\)\([[:digit:]]\+\).*/\2/;T;p' <<< "${MAKEOPTS}")
bam -a -j ${jobs} ${myopt} || die
bam -a -j $(makeopts_jobs) ${myopt} || die
}
src_install() {

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/gargoyle/gargoyle-2011.1.ebuild,v 1.2 2012/06/07 05:51:28 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/games-engines/gargoyle/gargoyle-2011.1.ebuild,v 1.3 2012/06/15 15:40:37 mr_bones_ Exp $
# Regarding licenses: libgarglk is licensed under the GPLv2. Bundled
# interpreters are licensed under GPLv2, BSD or MIT license, except:
@ -10,8 +10,7 @@
# don't apply. (Fonts are installed through dependencies instead.)
EAPI=3
inherit eutils games multiprocessing
inherit eutils multiprocessing games
DESCRIPTION="An Interactive Fiction (IF) player supporting all major formats"
HOMEPAGE="http://ccxvii.net/gargoyle/"

@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity-ng/lincity-ng-2.0.ebuild,v 1.7 2012/06/05 01:02:15 mr_bones_ Exp $
# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity-ng/lincity-ng-2.0.ebuild,v 1.8 2012/06/15 15:49:10 mr_bones_ Exp $
EAPI=2
inherit eutils games
inherit eutils multiprocessing games
DESCRIPTION="city/country simulation game for X and opengl"
HOMEPAGE="http://lincity-ng.berlios.de/"

@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/glest/glest-3.2.2.ebuild,v 1.11 2012/06/05 00:58:42 mr_bones_ Exp $
# $Header: /var/cvsroot/gentoo-x86/games-strategy/glest/glest-3.2.2.ebuild,v 1.12 2012/06/15 15:52:01 mr_bones_ Exp $
EAPI=2
inherit eutils autotools wxwidgets games
inherit eutils multiprocessing autotools wxwidgets games
DESCRIPTION="Cross-platform 3D realtime strategy game"
HOMEPAGE="http://www.glest.org/"

@ -1,2 +1 @@
DIST kcm-grub2-0.5.0.tar.gz 102743 RMD160 1b891af06788e484d42f2e1ad60ddf391b489465 SHA1 0a67c1c030a327e94a8a7fadedb92a3b55dce68b SHA256 c748e272b86f54e043e4cebb3238a19d697218cb56753b75d638907bac0c4236
DIST kcm-grub2-0.5.5.tar.gz 173030 RMD160 ee40b7b14a54433813d279624c0ef7cad00af6c1 SHA1 1f63e76f9dcd14402ba2c6605ae79b13d744a73d SHA256 431455d9a995e6d8f7fc01922aa658b4fa4fdfc4f234158047758fe4cd70dc41

@ -1,46 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kcm-grub2/kcm-grub2-0.5.0.ebuild,v 1.3 2012/02/14 21:48:53 johu Exp $
EAPI=4
KDE_MINIMAL="4.6"
KDE_LINGUAS="da de et hu nl pt pt_BR sv uk"
inherit kde4-base
DESCRIPTION="KCModule for configuring the GRUB2 bootloader."
HOMEPAGE="http://kde-apps.org/content/show.php?content=139643"
SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="+hwinfo imagemagick packagekit"
COMMON_DEPEND="
$(add_kdebase_dep kdelibs)
hwinfo? ( sys-apps/hwinfo )
imagemagick? ( media-gfx/imagemagick )
packagekit? ( app-admin/packagekit-qt4 )
"
DEPEND="${COMMON_DEPEND}
dev-util/automoc
"
RDEPEND="${COMMON_DEPEND}
$(add_kdebase_dep kcmshell)
"
PATCHES=(
"${FILESDIR}"/${PN}-use-gentoo-grub-commands.patch
)
src_configure() {
local mycmakeargs=(
"-DWITHQApt=OFF"
$(cmake-utils_use_with packagekit QPackageKit)
$(cmake-utils_use_with imagemagick ImageMagick)
$(cmake-utils_use_with hwinfo HD)
)
cmake-utils_src_configure
}

@ -1 +1,2 @@
DIST banshee-community-extensions-2.2.0.tar.bz2 858373 RMD160 54db751fada0f852c8b70b7082fb9e7c868449e1 SHA1 485bf63dd977c8c3ba5c2698101cad035c50b4ba SHA256 3ac0c7e9e00b8ab7b91a8942cb5b1fc360977b15ec303756d4a440704a22bb15
DIST banshee-community-extensions-2.4.0.tar.bz2 892287 RMD160 820548252827d4c42b1a0b5f647221831a01c3ce SHA1 fa7fe13ca6be7bb5ff1bdda3655d00096a843863 SHA256 6f20404de80090bb5d88a57c043e876a192f480ac3488ce7697344f1447d48b3

@ -1,13 +1,13 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/banshee-community-extensions/banshee-community-extensions-2.2.0-r1.ebuild,v 1.1 2012/02/06 12:28:57 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/banshee-community-extensions/banshee-community-extensions-2.4.0.ebuild,v 1.1 2012/06/15 20:41:10 pacho Exp $
EAPI="4"
inherit base mono
DESCRIPTION="Community-developed plugins for the Banshee media player"
HOMEPAGE="http://banshee.fm/"
HOMEPAGE="http://banshee.fm/download/extensions/"
SRC_URI="http://download.banshee-project.org/${PN}/${PV}/${P}.tar.bz2"
LICENSE="MIT"
@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~x86"
IUSE="doc lastfmfingerprint lirc lyrics mirage telepathy zeitgeist"
DEPEND=">=dev-lang/mono-2.0
>=media-sound/banshee-2.1.0[web]
>=media-sound/banshee-2.4.0[web]
>=gnome-base/gconf-2.0
dev-dotnet/gconf-sharp:2
doc? ( >=app-text/gnome-doc-utils-0.17.3 )
@ -45,6 +45,8 @@ RDEPEND="${DEPEND}
!media-plugins/banshee-lyrics
!media-plugins/banshee-mirage"
DOCS=( AUTHORS NEWS README )
src_configure() {
# Disable ClutterFlow as we don't have clutter-sharp and co in tree
# Disable UbuntuOneMusicStore as we don't have ubuntuone-sharp
@ -62,7 +64,7 @@ src_configure() {
--disable-clutterflow --disable-appindicator --disable-openvp
--enable-ampache --enable-karaoke --enable-jamendo
--enable-randombylastfm --enable-albumartwriter
--enable-duplicatesongdetector"
--enable-duplicatesongdetector --enable-foldersync"
econf \
$(use_enable doc user-help) \
@ -78,6 +80,5 @@ src_configure() {
src_install() {
base_src_install
find "${D}" -name "*.la" -delete || die "remove of la files failed"
dodoc AUTHORS NEWS README
prune_libtool_files --all
}

@ -0,0 +1,42 @@
--- ./gst-libs/ext/libav/libavcodec/x86/h264_qpel_mmx.c
+++ ./gst-libs/ext/libav/libavcodec/x86/h264_qpel_mmx.c
@@ -398,7 +398,7 @@ static av_noinline void OPNAME ## h264_qpel8or16_v_lowpass_ ## MMX(uint8_t *dst,
"2: \n\t"\
\
: "+a"(src), "+c"(dst)\
- : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "g"(h)\
+ : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "rm"(h)\
: "memory"\
);\
src += 4-(h+5)*srcStride;\
@@ -446,7 +446,7 @@ static av_always_inline void OPNAME ## h264_qpel8or16_hv1_lowpass_ ## MMX(int16_
QPEL_H264HV(%%mm3, %%mm4, %%mm5, %%mm0, %%mm1, %%mm2, 15*48)\
"2: \n\t"\
: "+a"(src)\
- : "c"(tmp), "S"((x86_reg)srcStride), "g"(size)\
+ : "c"(tmp), "S"((x86_reg)srcStride), "rm"(size)\
: "memory"\
);\
tmp += 4;\
@@ -823,7 +823,7 @@ static av_noinline void OPNAME ## h264_qpel8or16_v_lowpass_ ## MMX(uint8_t *dst,
"2: \n\t"\
\
: "+a"(src), "+c"(dst)\
- : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "g"(h)\
+ : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "rm"(h)\
: XMM_CLOBBERS("%xmm0", "%xmm1", "%xmm2", "%xmm3", \
"%xmm4", "%xmm5", "%xmm6", "%xmm7",)\
"memory"\
@@ -878,7 +878,7 @@ static av_always_inline void put_h264_qpel8or16_hv1_lowpass_sse2(int16_t *tmp, u
QPEL_H264HV_XMM(%%xmm3, %%xmm4, %%xmm5, %%xmm0, %%xmm1, %%xmm2, 15*48)
"2: \n\t"
: "+a"(src)
- : "c"(tmp), "S"((x86_reg)srcStride), "g"(size)
+ : "c"(tmp), "S"((x86_reg)srcStride), "rm"(size)
: XMM_CLOBBERS("%xmm0", "%xmm1", "%xmm2", "%xmm3",
"%xmm4", "%xmm5", "%xmm6", "%xmm7",)
"memory"
--
1.7.9

@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.13-r1.ebuild,v 1.2 2012/05/05 08:27:15 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.13-r1.ebuild,v 1.3 2012/06/15 14:58:44 jlec Exp $
EAPI=1
EAPI=4
inherit flag-o-matic eutils base
inherit base eutils flag-o-matic
PD=${FILESDIR}/${PV}
MY_PN=${PN/-plugins}
@ -31,7 +31,9 @@ RDEPEND=">=media-libs/gstreamer-0.10.31
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_compile() {
PATCHES=( "${FILESDIR}"/${PV}-gcc-4.7.patch )
src_configure() {
append-flags -fno-strict-aliasing
if ! use hardened; then
@ -41,11 +43,4 @@ src_compile() {
econf $(use_enable orc) \
--with-ffmpeg-extra-configure='--disable-mmx --disable-mmx2'
fi
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README TODO
}

@ -5,5 +5,5 @@
<use>
<flag name="orc">Use <pkg>dev-lang/orc</pkg> for runtime
optimisations</flag>
</use>
</use>
</pkgmetadata>

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/live-2012.04.21.ebuild,v 1.3 2012/06/15 13:31:47 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/live-2012.04.21.ebuild,v 1.4 2012/06/15 15:11:46 mr_bones_ Exp $
EAPI=3
inherit flag-o-matic eutils toolchain-funcs multilib
@ -61,7 +61,7 @@ src_prepare() {
-e '/^LINK /s/$/ /' \
-e '/^LIBRARY_LINK /s/=.*$/= $(CXX) -o /' \
-e '/^LIBRARY_LINK_OPTS /s:-shared.*$:-undefined suppress -flat_namespace -dynamiclib -install_name '"${EPREFIX}/usr/$(get_libdir)/"'$@:' \
-e '/^LIB_SUFFIX /s/so/dylib/' \
-e '/^LIB_SUFFIX /s/so/dylib/' \
live-shared/config.gentoo-so-r1 \
|| die shared
;;

@ -1,3 +1,2 @@
DIST banshee-2.2.0.tar.xz 3069044 RMD160 b36900677265a4cf4264501e4c0f6a385189cb51 SHA1 08a1b28688cf545512fae039cef7555a8e3ac8e9 SHA256 85026f270777be15b778a8bf676d2c6e1a0d3d9758145515809bf209f7ab1815
DIST banshee-2.2.1.tar.xz 3084484 RMD160 47b5ae9538306b27e6cc6288c61a94a1a1b72102 SHA1 7b77c3f47f60c3f26ee8b46fca3316e20f97fde2 SHA256 55c03ddf9732199b9f83d4ff375af99ae5a4eea46b8a198695427e5c48f1b9a5
DIST banshee-2.4.0.tar.xz 3188320 RMD160 8aab4639441fef50471e2b3c0449132fe9720a8d SHA1 b8aa9fe752866adb5a25449e6fda60e2538e1605 SHA256 a993bd02e4bbe6b92943558d52bec42938d27b013c2fe287e9a5ac1f5c7fea03
DIST banshee-2.4.1.tar.xz 3191312 RMD160 b252d30315a1d5e764bb138866a2eb2590b5f921 SHA1 1d1a18c1637af6a48955c3f98657d2b4b0ebce11 SHA256 7099b2139050ac0c271014478790fa85484fbfea264ea18b707fa50324ecc2cb

@ -1,157 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/banshee/banshee-2.2.0-r1.ebuild,v 1.4 2012/05/05 08:10:24 mgorny Exp $
EAPI="4"
inherit eutils autotools mono gnome2-utils fdo-mime versionator gnome.org
GVER=0.10.7
DESCRIPTION="Import, organize, play, and share your music using a simple and powerful interface."
HOMEPAGE="http://banshee.fm/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+aac +cdda boo daap doc +encode ipod karma mtp test udev +web youtube"
RDEPEND=">=dev-lang/mono-2.4.3
gnome-base/gnome-settings-daemon
x11-themes/gnome-icon-theme
sys-apps/dbus
>=dev-dotnet/gtk-sharp-2.12:2
>=dev-dotnet/gconf-sharp-2.24.0:2
>=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1
>=media-libs/gstreamer-0.10.21-r3:0.10
>=media-libs/gst-plugins-base-0.10.25.2:0.10
>=media-libs/gst-plugins-bad-${GVER}
>=media-libs/gst-plugins-good-${GVER}:0.10
>=media-libs/gst-plugins-ugly-${GVER}:0.10
>=media-plugins/gst-plugins-meta-0.10-r2:0.10
>=media-plugins/gst-plugins-gnomevfs-${GVER}:0.10
>=media-plugins/gst-plugins-gconf-${GVER}:0.10
cdda? (
|| (
>=media-plugins/gst-plugins-cdparanoia-${GVER}:0.10
>=media-plugins/gst-plugins-cdio-${GVER}:0.10
)
)
media-libs/musicbrainz:1
dev-dotnet/dbus-sharp
dev-dotnet/dbus-sharp-glib
>=dev-dotnet/mono-addins-0.4[gtk]
>=dev-dotnet/taglib-sharp-2.0.3.7
>=dev-db/sqlite-3.4:3
karma? ( >=media-libs/libkarma-0.1.0-r1 )
aac? ( >=media-plugins/gst-plugins-faad-${GVER}:0.10 )
boo? (
>=dev-lang/boo-0.8.1
)
daap? (
>=dev-dotnet/mono-zeroconf-0.8.0-r1
)
doc? (
virtual/monodoc
>=app-text/gnome-doc-utils-0.17.3
)
encode? (
>=media-plugins/gst-plugins-lame-${GVER}:0.10
>=media-plugins/gst-plugins-taglib-${GVER}:0.10
)
ipod? (
>=media-libs/libgpod-0.7.95[mono]
)
mtp? (
>=media-libs/libmtp-0.3.0
)
web? (
>=net-libs/webkit-gtk-1.2.2:2
>=net-libs/libsoup-2.26:2.4
>=net-libs/libsoup-gnome-2.26:2.4
)
youtube? (
>=dev-dotnet/google-gdata-sharp-1.4
)
udev? (
dev-dotnet/gudev-sharp
dev-dotnet/gkeyfile-sharp
dev-dotnet/gtk-sharp-beans
dev-dotnet/gio-sharp
)"
DEPEND="${RDEPEND}
app-arch/xz-utils
virtual/pkgconfig"
DOCS="AUTHORS ChangeLog HACKING NEWS README"
src_prepare () {
# EqualizerManager: Update values for the Smiley Face preset (bgo#661224)
epatch "${FILESDIR}/${PN}-2.2.0-fix-equalizer-values.patch"
epatch "${FILESDIR}/${PN}-1.7.4-make-webkit-optional.patch" # upstream bug 628518
AT_M4DIR="-I build/m4/banshee -I build/m4/shamrock -I build/m4/shave" \
eautoreconf
}
src_configure() {
# soundmenu needs a properly maintained and updated indicate-sharp
local myconf="--disable-dependency-tracking
--disable-static
--disable-maintainer-mode
--enable-gnome
--enable-schemas-install
--with-gconf-schema-file-dir=/etc/gconf/schemas
--with-vendor-build-id=Gentoo/${PN}/${PVR}
--enable-gapless-playback
--disable-gst-sharp
--disable-torrent
--disable-shave
--disable-ubuntuone
--disable-soundmenu"
econf \
$(use_enable doc docs) \
$(use_enable doc user-help) \
$(use_enable boo) \
$(use_enable mtp) \
$(use_enable daap) \
$(use_enable ipod appledevice) \
$(use_enable karma) \
$(use_enable web webkit) \
$(use_enable youtube) \
$(use_enable udev gio) \
$(use_enable udev gio_hardware) \
${myconf}
}
src_compile() {
emake MCS=/usr/bin/gmcs
}
src_install() {
emake DESTDIR="${D}" install
find "${ED}" -name '*.la' -exec rm -f {} +
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
ewarn
ewarn "If ${PN} doesn't play some format, please check your"
ewarn "USE flags on media-plugins/gst-plugins-meta"
ewarn
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/banshee/banshee-2.4.0-r1.ebuild,v 1.6 2012/05/14 15:42:45 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/banshee/banshee-2.4.1.ebuild,v 1.1 2012/06/15 20:24:52 pacho Exp $
EAPI="4"
@ -75,15 +75,11 @@ RDEPEND=">=dev-lang/mono-2.4.3
)"
DEPEND="${RDEPEND}
app-arch/xz-utils
virtual/pkgconfig"
DOCS="AUTHORS ChangeLog HACKING NEWS README"
src_prepare () {
# UPnPServerSource: Fix crash when getting the root object (bgo#672744)
epatch "${FILESDIR}/${P}-upnp-crash.patch"
# Fix build against libgpod-sharp 0.8.2
epatch "${FILESDIR}/${PN}-2.4.0-libgpod-082.patch"
@ -132,8 +128,8 @@ src_compile() {
}
src_install() {
emake DESTDIR="${D}" install
find "${ED}" -name '*.la' -exec rm -f {} +
default
prune_libtool_files --all
}
pkg_preinst() {
@ -141,11 +137,6 @@ pkg_preinst() {
}
pkg_postinst() {
ewarn
ewarn "If ${PN} doesn't play some format, please check your"
ewarn "USE flags on media-plugins/gst-plugins-meta"
ewarn
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update

@ -0,0 +1,22 @@
dbus? ( sys-apps/dbus ) !headless? ( media-libs/fontconfig media-libs/freetype:2 dev-libs/glib:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXmu x11-libs/libXrender x11-libs/libXt ) system-libs? ( dev-libs/openssl:0.9.8 net-misc/curl >=sys-devel/gcc-4 dev-libs/glib:2 dev-libs/libpcre media-libs/libpng:1.2 x11-libs/qt-core x11-libs/qt-gui dev-db/sqlite:3 net-libs/libssh2 sys-libs/zlib dev-lang/python:2.7 dev-python/pycurl )
0
x86? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=i386&revision=9945 -> spideroak-bin-4.5.9945_x86.deb ) amd64? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=x86_64&revision=9945 -> spideroak-bin-4.5.9945_amd64.deb )
mirror strip
https://spideroak.com
spideroak
An easy, secure and consolidated free online backup, storage, access and sharing system.
~amd64 ~x86
eutils multilib toolchain-funcs user versionator
dbus headless system-libs
4
install postinst prepare unpack

@ -1,22 +0,0 @@
app-arch/unzip
0
mirror://gentoo/myspell-pt_BR-20060316.zip mirror://gentoo/myspell-pt_PT-20060316.zip mirror://gentoo/myspell-hyph_pt_BR-20060316.zip mirror://gentoo/myspell-hyph_pt_PT-20060316.zip
http://lingucomponent.openoffice.org/
GPL-2
Portuguese dictionaries for myspell/hunspell
alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd
multilib myspell toolchain-funcs
install postinst preinst

@ -0,0 +1,22 @@
app-arch/unzip
0
http://darkstar.ist.utl.pt/openoffice.org/pt/oo3x-pt-PT.oxt preao? ( http://darkstar.ist.utl.pt/openoffice.org/pt/oo3x-pt-PT-preao.oxt )
http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:main
GPL-2 MIT
Czech dictionaries for myspell/hunspell
alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd
base eutils multilib myspell-r2 toolchain-funcs user
+preao
4
compile configure install prepare unpack

@ -1,7 +1,7 @@
app-text/texi2html virtual/latex-base >=virtual/emacs-21
>=virtual/emacs-21
0
http://ess.r-project.org/downloads/ess/ess-5.13.tgz
http://ess.r-project.org/downloads/ess/ess-12.04-4.tgz
http://ess.r-project.org/
GPL-2

@ -6,7 +6,7 @@ http://ess.r-project.org/downloads/ess/ess-5.14.tgz
http://ess.r-project.org/
GPL-2
Emacs Speaks Statistics
~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos
~alpha amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos
elisp elisp-common eutils multilib toolchain-funcs user

@ -0,0 +1,22 @@
>=sys-apps/findutils-4.2.26
~app-emulation/emul-linux-x86-xlibs-20120520 ~app-emulation/emul-linux-x86-baselibs-20120520 >=app-emulation/emul-linux-x86-soundlibs-20120520-r2 ~app-emulation/emul-linux-x86-medialibs-20120520
0
http://dev.gentoo.org/~pacho/emul/emul-linux-x86-sdl-20120520.tar.xz
strip
http://dev.gentoo.org/~pacho/emul.html
LGPL-2 LGPL-2.1 ZLIB
Provides precompiled 32bit libraries
-* ~amd64
emul-linux-x86 eutils multilib toolchain-funcs user versionator
development
4
install prepare unpack

@ -0,0 +1,22 @@
>=sys-apps/findutils-4.2.26
~app-emulation/emul-linux-x86-baselibs-20120520 ~app-emulation/emul-linux-x86-medialibs-20120520
0
http://dev.gentoo.org/~pacho/emul/emul-linux-x86-soundlibs-20120520.tar.xz
strip
http://dev.gentoo.org/~pacho/emul.html
BSD FDL-1.2 GPL-2 LGPL-2.1 LGPL-2 as-is gsm public-domain
Provides precompiled 32bit libraries
-* ~amd64
emul-linux-x86 eutils multilib toolchain-funcs user versionator
alsa development
4
install prepare unpack

@ -1,7 +1,7 @@
>=app-text/podofo-0.8.2 >=app-text/poppler-0.12.3-r3[qt4,xpdf-headers] >=dev-libs/chmlib-0.40 >=dev-libs/icu-4.4 >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/libwmf-0.2.8 virtual/libusb:0 >=x11-misc/xdg-utils-1.0.2-r2 >=dev-python/setuptools-0.6_rc5 =dev-lang/python-2.7* =dev-lang/python-2.7*[ssl,sqlite]
>=app-text/podofo-0.8.2 >=app-text/poppler-0.12.3-r3[qt4,xpdf-headers] >=dev-libs/chmlib-0.40 >=dev-libs/icu-4.4 >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/libwmf-0.2.8 virtual/libusb:0 >=x11-misc/xdg-utils-1.0.2-r2 udisks? ( sys-fs/udisks:0 ) =dev-lang/python-2.7* =dev-lang/python-2.7*[ssl,sqlite]
>=app-text/podofo-0.8.2 >=app-text/poppler-0.12.3-r3[qt4,xpdf-headers] >=dev-libs/chmlib-0.40 >=dev-libs/icu-4.4 >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/libwmf-0.2.8 virtual/libusb:0 x11-libs/qt-dbus:4 x11-libs/qt-svg:4 >=x11-misc/xdg-utils-1.0.2-r2 >=dev-python/setuptools-0.6_rc5 =dev-lang/python-2.7* =dev-lang/python-2.7*[ssl,sqlite]
>=app-text/podofo-0.8.2 >=app-text/poppler-0.12.3-r3[qt4,xpdf-headers] >=dev-libs/chmlib-0.40 >=dev-libs/icu-4.4 >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/libwmf-0.2.8 virtual/libusb:0 x11-libs/qt-dbus:4 x11-libs/qt-svg:4 >=x11-misc/xdg-utils-1.0.2-r2 udisks? ( sys-fs/udisks:0 ) =dev-lang/python-2.7* =dev-lang/python-2.7*[ssl,sqlite]
0
http://sourceforge.net/projects/calibre/files/0.8.54/calibre-0.8.54.tar.xz
http://sourceforge.net/projects/calibre/files/0.8.56/calibre-0.8.56.tar.xz
http://calibre-ebook.com/
GPL-2

@ -1,22 +0,0 @@
0
http://userpage.fu-berlin.de/~mbayer/tools/html2text-1.3.2.tar.gz
http://www.mbayer.de/html2text/index.shtml
GPL-2
A HTML to text converter
~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
eutils multilib toolchain-funcs user
compile install unpack

@ -6,7 +6,7 @@ http://www.mbayer.de/html2text/downloads/html2text-1.3.2a.tar.gz http://www.mbay
http://www.mbayer.de/html2text/
GPL-2
A HTML to text converter
~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
eutils multilib toolchain-funcs user

@ -6,7 +6,7 @@ mirror://sourceforge/sgmltools-lite/sgmltools-lite-3.0.3.tar.gz mirror://sourcef
http://sgmltools-lite.sourceforge.net/
GPL-2
Python interface to SGML software in a DocBook/OpenJade env
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
base eutils multilib python sgml-catalog toolchain-funcs user
jadetex

@ -1,22 +0,0 @@
!dev-db/cdb
0
http://www.corpit.ru/mjt/tinycdb/tinycdb_0.77.tar.gz
test
http://www.corpit.ru/mjt/tinycdb.html
public-domain
TinyCDB is a very fast and simple package for creating and reading constant data bases
amd64 hppa ia64 ppc x86
eutils multilib toolchain-funcs user
4
compile install prepare

@ -1,22 +0,0 @@
!dev-db/cdb
0
http://www.corpit.ru/mjt/tinycdb/tinycdb_0.77.tar.gz
test
http://www.corpit.ru/mjt/tinycdb.html
public-domain
TinyCDB is a very fast and simple package for creating and reading constant data bases
amd64 hppa ia64 ppc x86
eutils multilib toolchain-funcs user
static-libs
4
compile install prepare

@ -6,7 +6,7 @@ test
http://www.corpit.ru/mjt/tinycdb.html
public-domain
TinyCDB is a very fast and simple package for creating and reading constant data bases
amd64 hppa ~ia64 ppc x86
amd64 hppa ia64 ppc x86
eutils multilib toolchain-funcs user
static-libs

@ -0,0 +1,22 @@
>=dev-lang/ghc-6.10.1 >=dev-haskell/cabal-1.8 test? ( dev-haskell/hunit >=dev-haskell/quickcheck-2.4.0.1 dev-haskell/test-framework dev-haskell/test-framework-hunit dev-haskell/test-framework-quickcheck2 ) doc? ( dev-haskell/haddock ) hscolour? ( dev-haskell/hscolour ) >=dev-haskell/cabal-1.1.4
>=dev-lang/ghc-6.10.1 dev-lang/ghc
0
http://hackage.haskell.org/packages/archive/base64-bytestring/0.1.1.3/base64-bytestring-0.1.1.3.tar.gz
https://github.com/bos/base64-bytestring
BSD
Fast base64 encoding and deconding for ByteStrings
~amd64 ~x86
eutils ghc-package haskell-cabal multilib toolchain-funcs user versionator
test doc hscolour profile
4
compile configure install postinst prerm setup test

@ -0,0 +1,22 @@
>=dev-haskell/deepseq-1.1.0.0[profile?] >=dev-lang/ghc-6.10.1 >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/quickcheck-2.4.0.1[profile?] >=dev-haskell/test-framework-0.4[profile?] <dev-haskell/test-framework-0.7[profile?] <dev-haskell/test-framework-hunit-0.3[profile?] <dev-haskell/test-framework-quickcheck2-0.3[profile?] ) doc? ( dev-haskell/haddock ) hscolour? ( dev-haskell/hscolour ) >=dev-haskell/cabal-1.1.4
>=dev-haskell/deepseq-1.1.0.0[profile?] >=dev-lang/ghc-6.10.1 dev-lang/ghc
0
http://hackage.haskell.org/packages/archive/text/0.11.2.2/text-0.11.2.2.tar.gz
https://github.com/bos/text
BSD
An efficient packed Unicode text type.
~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
eutils ghc-package haskell-cabal multilib toolchain-funcs user versionator
test doc hscolour profile
4
compile configure install postinst prerm setup test

@ -1,7 +1,7 @@
sys-devel/flex virtual/yacc doc? ( app-text/asciidoc app-doc/doxygen[latex] media-gfx/mscgen )
3
http://www.infradead.org/~tgr/libnl/files/libnl-3.2.10.tar.gz
http://www.infradead.org/~tgr/libnl/files/libnl-3.2.11.tar.gz
http://www.infradead.org/~tgr/libnl/
LGPL-2.1

@ -6,7 +6,7 @@ mirror://cpan/authors/id/G/GB/GBARR/TimeDate-1.20.tar.gz
http://search.cpan.org/dist/TimeDate/
|| ( Artistic GPL-1 GPL-2 GPL-3 )
A Date/Time Parsing Perl Module
~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
base eutils multilib multiprocessing perl-module toolchain-funcs user

@ -0,0 +1,22 @@
dev-perl/Cache dev-perl/IO-Socket-SSL dev-perl/Log-Log4perl dev-perl/libwww-perl dev-perl/Math-Random-MT >=dev-perl/Net-OAuth-0.27 >=dev-perl/SOAP-WSDL-2.00.10 dev-perl/URI dev-perl/XML-Simple dev-perl/XML-XPath test? ( virtual/perl-Test-Simple dev-perl/Test-MockObject virtual/perl-Getopt-Long dev-perl/Config-Properties dev-perl/Data-Uniqid ) virtual/perl-Module-Build dev-lang/perl[-build]
dev-perl/Cache dev-perl/IO-Socket-SSL dev-perl/Log-Log4perl dev-perl/libwww-perl dev-perl/Math-Random-MT >=dev-perl/Net-OAuth-0.27 >=dev-perl/SOAP-WSDL-2.00.10 dev-perl/URI dev-perl/XML-Simple dev-perl/XML-XPath dev-lang/perl[-build]
0
http://google-api-adwords-perl.googlecode.com/files/awapi_perl_lib_2_6_1.tar.gz
test
http://code.google.com/p/google-api-adwords-perl/
Apache-2.0
Google AdWords API Perl Client
~amd64
base eutils multilib multiprocessing perl-module toolchain-funcs user
test
4
compile configure install prepare test unpack

@ -1,22 +0,0 @@
ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) )
ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] )
0
mirror://rubygems/minitar-0.5.3.gem
test
http://rubyforge.org/projects/ruwiki/
|| ( GPL-2 Ruby )
Provides POSIX tarchive management from Ruby programs.
~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby test
|| ( ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby )
4
compile configure install prepare setup test unpack

@ -0,0 +1,22 @@
test? ( ruby_targets_ruby18? ( virtual/ruby-ssl[ruby_targets_ruby18] >=dev-ruby/httparty-0.7[ruby_targets_ruby18] >=dev-ruby/json-1.4[ruby_targets_ruby18] >=dev-ruby/nokogiri-1.4.4[ruby_targets_ruby18] >=dev-ruby/uuidtools-2.1[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/ruby-ssl[ruby_targets_ruby19] >=dev-ruby/httparty-0.7[ruby_targets_ruby19] >=dev-ruby/json-1.4[ruby_targets_ruby19] >=dev-ruby/nokogiri-1.4.4[ruby_targets_ruby19] >=dev-ruby/uuidtools-2.1[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/ruby-ssl[ruby_targets_ree18] >=dev-ruby/httparty-0.7[ruby_targets_ree18] >=dev-ruby/json-1.4[ruby_targets_ree18] >=dev-ruby/nokogiri-1.4.4[ruby_targets_ree18] >=dev-ruby/uuidtools-2.1[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rspec[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
ruby_targets_ruby18? ( virtual/ruby-ssl[ruby_targets_ruby18] >=dev-ruby/httparty-0.7[ruby_targets_ruby18] >=dev-ruby/json-1.4[ruby_targets_ruby18] >=dev-ruby/nokogiri-1.4.4[ruby_targets_ruby18] >=dev-ruby/uuidtools-2.1[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/ruby-ssl[ruby_targets_ruby19] >=dev-ruby/httparty-0.7[ruby_targets_ruby19] >=dev-ruby/json-1.4[ruby_targets_ruby19] >=dev-ruby/nokogiri-1.4.4[ruby_targets_ruby19] >=dev-ruby/uuidtools-2.1[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/ruby-ssl[ruby_targets_ree18] >=dev-ruby/httparty-0.7[ruby_targets_ree18] >=dev-ruby/json-1.4[ruby_targets_ree18] >=dev-ruby/nokogiri-1.4.4[ruby_targets_ree18] >=dev-ruby/uuidtools-2.1[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
0
https://github.com/amazonwebservices/aws-sdk-for-ruby/tarball/1.5.3 -> aws-sdk-for-ruby-1.5.3.tar.gz
http://aws.amazon.com/sdkforruby
APSL-2
Official SDK for Amazon Web Services
~amd64
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 doc test
|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 )
4
compile configure install prepare setup test unpack

@ -7,7 +7,7 @@ http://www.teeworlds.com/
ZLIB
Online multi-player platform 2D shooter
~amd64 ~x86
base eutils games multilib python toolchain-funcs user
base eutils games multilib multiprocessing python toolchain-funcs user
debug dedicated

@ -7,7 +7,7 @@ http://lincity-ng.berlios.de/
GPL-2 BitstreamVera
city/country simulation game for X and opengl
amd64 ~ppc ~sparc x86
base eutils games multilib toolchain-funcs user
base eutils games multilib multiprocessing toolchain-funcs user

@ -1,22 +0,0 @@
>=kde-base/kdelibs-4.6:4[aqua=] hwinfo? ( sys-apps/hwinfo ) imagemagick? ( media-gfx/imagemagick ) packagekit? ( app-admin/packagekit-qt4 ) dev-util/automoc >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.6:4[aqua=]
>=kde-base/kdelibs-4.6:4[aqua=] hwinfo? ( sys-apps/hwinfo ) imagemagick? ( media-gfx/imagemagick ) packagekit? ( app-admin/packagekit-qt4 ) >=kde-base/kcmshell-4.6:4[aqua=] >=kde-base/oxygen-icons-4.6:4[aqua=] linguas_da? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_de(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_et(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_hu(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_nl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_pt_BR(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_sv(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.6:4[aqua=,linguas_uk(+)] ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.6:4[aqua=]
4
mirror://sourceforge/kcm-grub2/0.5.0/kcm-grub2-0.5.0.tar.gz
http://kde-apps.org/content/show.php?content=139643
GPL-3
KCModule for configuring the GRUB2 bootloader.
~amd64 ~x86
base cmake-utils eutils fdo-mime flag-o-matic gnome2-utils kde4-base kde4-functions multilib toolchain-funcs user versionator virtualx
+hwinfo imagemagick packagekit linguas_da linguas_de linguas_et linguas_hu linguas_nl linguas_pt linguas_pt_BR linguas_sv linguas_uk aqua
4
compile configure install postinst postrm preinst prepare setup test unpack

@ -1,9 +1,9 @@
>=dev-lang/mono-2.0 >=media-sound/banshee-2.1.0[web] >=gnome-base/gconf-2.0 dev-dotnet/gconf-sharp:2 doc? ( >=app-text/gnome-doc-utils-0.17.3 ) lastfmfingerprint? ( sci-libs/fftw:3.0 media-libs/libsamplerate ) lirc? ( app-misc/lirc ) mirage? ( dev-libs/glib:2 dev-db/sqlite:3 sci-libs/fftw:3.0 media-libs/libsamplerate >=media-libs/gstreamer-0.10.15:0.10 >=media-libs/gst-plugins-base-0.10.15:0.10 ) telepathy? ( dev-dotnet/notify-sharp >=dev-lang/mono-2.4.2 ) zeitgeist? ( dev-libs/libzeitgeist dev-dotnet/zeitgeist-sharp )
>=dev-lang/mono-2.0 >=media-sound/banshee-2.1.0[web] >=gnome-base/gconf-2.0 dev-dotnet/gconf-sharp:2 doc? ( >=app-text/gnome-doc-utils-0.17.3 ) lastfmfingerprint? ( sci-libs/fftw:3.0 media-libs/libsamplerate ) lirc? ( app-misc/lirc ) mirage? ( dev-libs/glib:2 dev-db/sqlite:3 sci-libs/fftw:3.0 media-libs/libsamplerate >=media-libs/gstreamer-0.10.15:0.10 >=media-libs/gst-plugins-base-0.10.15:0.10 ) telepathy? ( dev-dotnet/notify-sharp >=dev-lang/mono-2.4.2 ) zeitgeist? ( dev-libs/libzeitgeist dev-dotnet/zeitgeist-sharp ) !media-plugins/banshee-lyrics !media-plugins/banshee-mirage
>=dev-lang/mono-2.0 >=media-sound/banshee-2.4.0[web] >=gnome-base/gconf-2.0 dev-dotnet/gconf-sharp:2 doc? ( >=app-text/gnome-doc-utils-0.17.3 ) lastfmfingerprint? ( sci-libs/fftw:3.0 media-libs/libsamplerate ) lirc? ( app-misc/lirc ) mirage? ( dev-libs/glib:2 dev-db/sqlite:3 sci-libs/fftw:3.0 media-libs/libsamplerate >=media-libs/gstreamer-0.10.15:0.10 >=media-libs/gst-plugins-base-0.10.15:0.10 ) telepathy? ( dev-dotnet/notify-sharp >=dev-lang/mono-2.4.2 ) zeitgeist? ( dev-libs/libzeitgeist dev-dotnet/zeitgeist-sharp )
>=dev-lang/mono-2.0 >=media-sound/banshee-2.4.0[web] >=gnome-base/gconf-2.0 dev-dotnet/gconf-sharp:2 doc? ( >=app-text/gnome-doc-utils-0.17.3 ) lastfmfingerprint? ( sci-libs/fftw:3.0 media-libs/libsamplerate ) lirc? ( app-misc/lirc ) mirage? ( dev-libs/glib:2 dev-db/sqlite:3 sci-libs/fftw:3.0 media-libs/libsamplerate >=media-libs/gstreamer-0.10.15:0.10 >=media-libs/gst-plugins-base-0.10.15:0.10 ) telepathy? ( dev-dotnet/notify-sharp >=dev-lang/mono-2.4.2 ) zeitgeist? ( dev-libs/libzeitgeist dev-dotnet/zeitgeist-sharp ) !media-plugins/banshee-lyrics !media-plugins/banshee-mirage
0
http://download.banshee-project.org/banshee-community-extensions/2.2.0/banshee-community-extensions-2.2.0.tar.bz2
http://download.banshee-project.org/banshee-community-extensions/2.4.0/banshee-community-extensions-2.4.0.tar.bz2
http://banshee.fm/
http://banshee.fm/download/extensions/
MIT
Community-developed plugins for the Banshee media player
~amd64 ~x86

@ -12,9 +12,9 @@ base eutils flag-o-matic multilib toolchain-funcs user
1
4
compile install unpack
compile configure install prepare unpack

@ -1,22 +0,0 @@
>=dev-lang/mono-2.4.3 gnome-base/gnome-settings-daemon x11-themes/gnome-icon-theme sys-apps/dbus >=dev-dotnet/gtk-sharp-2.12:2 >=dev-dotnet/gconf-sharp-2.24.0:2 >=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1 >=media-libs/gstreamer-0.10.21-r3:0.10 >=media-libs/gst-plugins-base-0.10.25.2:0.10 >=media-libs/gst-plugins-bad-0.10.7 >=media-libs/gst-plugins-good-0.10.7:0.10 >=media-libs/gst-plugins-ugly-0.10.7:0.10 >=media-plugins/gst-plugins-meta-0.10-r2:0.10 >=media-plugins/gst-plugins-gnomevfs-0.10.7:0.10 >=media-plugins/gst-plugins-gconf-0.10.7:0.10 cdda? ( || ( >=media-plugins/gst-plugins-cdparanoia-0.10.7:0.10 >=media-plugins/gst-plugins-cdio-0.10.7:0.10 ) ) media-libs/musicbrainz:1 dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib >=dev-dotnet/mono-addins-0.4[gtk] >=dev-dotnet/taglib-sharp-2.0.3.7 >=dev-db/sqlite-3.4:3 karma? ( >=media-libs/libkarma-0.1.0-r1 ) aac? ( >=media-plugins/gst-plugins-faad-0.10.7:0.10 ) boo? ( >=dev-lang/boo-0.8.1 ) daap? ( >=dev-dotnet/mono-zeroconf-0.8.0-r1 ) doc? ( virtual/monodoc >=app-text/gnome-doc-utils-0.17.3 ) encode? ( >=media-plugins/gst-plugins-lame-0.10.7:0.10 >=media-plugins/gst-plugins-taglib-0.10.7:0.10 ) ipod? ( >=media-libs/libgpod-0.7.95[mono] ) mtp? ( >=media-libs/libmtp-0.3.0 ) web? ( >=net-libs/webkit-gtk-1.2.2:2 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 ) youtube? ( >=dev-dotnet/google-gdata-sharp-1.4 ) udev? ( dev-dotnet/gudev-sharp dev-dotnet/gkeyfile-sharp dev-dotnet/gtk-sharp-beans dev-dotnet/gio-sharp ) app-arch/xz-utils virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 app-arch/xz-utils
>=dev-lang/mono-2.4.3 gnome-base/gnome-settings-daemon x11-themes/gnome-icon-theme sys-apps/dbus >=dev-dotnet/gtk-sharp-2.12:2 >=dev-dotnet/gconf-sharp-2.24.0:2 >=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1 >=media-libs/gstreamer-0.10.21-r3:0.10 >=media-libs/gst-plugins-base-0.10.25.2:0.10 >=media-libs/gst-plugins-bad-0.10.7 >=media-libs/gst-plugins-good-0.10.7:0.10 >=media-libs/gst-plugins-ugly-0.10.7:0.10 >=media-plugins/gst-plugins-meta-0.10-r2:0.10 >=media-plugins/gst-plugins-gnomevfs-0.10.7:0.10 >=media-plugins/gst-plugins-gconf-0.10.7:0.10 cdda? ( || ( >=media-plugins/gst-plugins-cdparanoia-0.10.7:0.10 >=media-plugins/gst-plugins-cdio-0.10.7:0.10 ) ) media-libs/musicbrainz:1 dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib >=dev-dotnet/mono-addins-0.4[gtk] >=dev-dotnet/taglib-sharp-2.0.3.7 >=dev-db/sqlite-3.4:3 karma? ( >=media-libs/libkarma-0.1.0-r1 ) aac? ( >=media-plugins/gst-plugins-faad-0.10.7:0.10 ) boo? ( >=dev-lang/boo-0.8.1 ) daap? ( >=dev-dotnet/mono-zeroconf-0.8.0-r1 ) doc? ( virtual/monodoc >=app-text/gnome-doc-utils-0.17.3 ) encode? ( >=media-plugins/gst-plugins-lame-0.10.7:0.10 >=media-plugins/gst-plugins-taglib-0.10.7:0.10 ) ipod? ( >=media-libs/libgpod-0.7.95[mono] ) mtp? ( >=media-libs/libmtp-0.3.0 ) web? ( >=net-libs/webkit-gtk-1.2.2:2 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 ) youtube? ( >=dev-dotnet/google-gdata-sharp-1.4 ) udev? ( dev-dotnet/gudev-sharp dev-dotnet/gkeyfile-sharp dev-dotnet/gtk-sharp-beans dev-dotnet/gio-sharp )
0
mirror://gnome/sources/banshee/2.2/banshee-2.2.0.tar.xz
http://banshee.fm/
MIT
Import, organize, play, and share your music using a simple and powerful interface.
amd64 x86
autotools eutils fdo-mime gnome.org gnome2-utils libtool mono multilib multiprocessing toolchain-funcs user versionator
+aac +cdda boo daap doc +encode ipod karma mtp test udev +web youtube
4
compile configure install postinst postrm preinst prepare

@ -1,7 +1,7 @@
>=dev-lang/mono-2.4.3 gnome-base/gnome-settings-daemon x11-themes/gnome-icon-theme sys-apps/dbus >=dev-dotnet/gtk-sharp-2.12:2 >=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1 >=media-libs/gstreamer-0.10.21-r3:0.10 >=media-libs/gst-plugins-base-0.10.25.2:0.10 media-libs/gst-plugins-bad media-libs/gst-plugins-good:0.10 media-libs/gst-plugins-ugly:0.10 >=media-plugins/gst-plugins-meta-0.10-r2:0.10 media-plugins/gst-plugins-gio:0.10 >=dev-dotnet/gconf-sharp-2.24.0:2 media-plugins/gst-plugins-gconf:0.10 cdda? ( || ( media-plugins/gst-plugins-cdparanoia:0.10 media-plugins/gst-plugins-cdio:0.10 ) ) media-libs/musicbrainz:3 dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib >=dev-dotnet/mono-addins-0.6.2[gtk] >=dev-dotnet/taglib-sharp-2.0.3.7 >=dev-db/sqlite-3.4:3 karma? ( >=media-libs/libkarma-0.1.0-r1 ) aac? ( media-plugins/gst-plugins-faad:0.10 ) boo? ( >=dev-lang/boo-0.8.1 ) bpm? ( media-plugins/gst-plugins-soundtouch:0.10 ) daap? ( >=dev-dotnet/mono-zeroconf-0.8.0-r1 ) doc? ( virtual/monodoc >=app-text/gnome-doc-utils-0.17.3 ) encode? ( media-plugins/gst-plugins-lame:0.10 media-plugins/gst-plugins-taglib:0.10 ) ipod? ( >=media-libs/libgpod-0.8.2[mono] ) mtp? ( >=media-libs/libmtp-0.3.0 ) web? ( >=net-libs/webkit-gtk-1.2.2:2 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 ) youtube? ( >=dev-dotnet/google-gdata-sharp-1.4 ) udev? ( app-misc/media-player-info dev-dotnet/gudev-sharp dev-dotnet/gkeyfile-sharp dev-dotnet/gtk-sharp-beans dev-dotnet/gio-sharp ) app-arch/xz-utils virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 app-arch/xz-utils
>=dev-lang/mono-2.4.3 gnome-base/gnome-settings-daemon x11-themes/gnome-icon-theme sys-apps/dbus >=dev-dotnet/gtk-sharp-2.12:2 >=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1 >=media-libs/gstreamer-0.10.21-r3:0.10 >=media-libs/gst-plugins-base-0.10.25.2:0.10 media-libs/gst-plugins-bad media-libs/gst-plugins-good:0.10 media-libs/gst-plugins-ugly:0.10 >=media-plugins/gst-plugins-meta-0.10-r2:0.10 media-plugins/gst-plugins-gio:0.10 >=dev-dotnet/gconf-sharp-2.24.0:2 media-plugins/gst-plugins-gconf:0.10 cdda? ( || ( media-plugins/gst-plugins-cdparanoia:0.10 media-plugins/gst-plugins-cdio:0.10 ) ) media-libs/musicbrainz:3 dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib >=dev-dotnet/mono-addins-0.6.2[gtk] >=dev-dotnet/taglib-sharp-2.0.3.7 >=dev-db/sqlite-3.4:3 karma? ( >=media-libs/libkarma-0.1.0-r1 ) aac? ( media-plugins/gst-plugins-faad:0.10 ) boo? ( >=dev-lang/boo-0.8.1 ) bpm? ( media-plugins/gst-plugins-soundtouch:0.10 ) daap? ( >=dev-dotnet/mono-zeroconf-0.8.0-r1 ) doc? ( virtual/monodoc >=app-text/gnome-doc-utils-0.17.3 ) encode? ( media-plugins/gst-plugins-lame:0.10 media-plugins/gst-plugins-taglib:0.10 ) ipod? ( >=media-libs/libgpod-0.8.2[mono] ) mtp? ( >=media-libs/libmtp-0.3.0 ) web? ( >=net-libs/webkit-gtk-1.2.2:2 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 ) youtube? ( >=dev-dotnet/google-gdata-sharp-1.4 ) udev? ( app-misc/media-player-info dev-dotnet/gudev-sharp dev-dotnet/gkeyfile-sharp dev-dotnet/gtk-sharp-beans dev-dotnet/gio-sharp ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 app-arch/xz-utils
>=dev-lang/mono-2.4.3 gnome-base/gnome-settings-daemon x11-themes/gnome-icon-theme sys-apps/dbus >=dev-dotnet/gtk-sharp-2.12:2 >=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1 >=media-libs/gstreamer-0.10.21-r3:0.10 >=media-libs/gst-plugins-base-0.10.25.2:0.10 media-libs/gst-plugins-bad media-libs/gst-plugins-good:0.10 media-libs/gst-plugins-ugly:0.10 >=media-plugins/gst-plugins-meta-0.10-r2:0.10 media-plugins/gst-plugins-gio:0.10 >=dev-dotnet/gconf-sharp-2.24.0:2 media-plugins/gst-plugins-gconf:0.10 cdda? ( || ( media-plugins/gst-plugins-cdparanoia:0.10 media-plugins/gst-plugins-cdio:0.10 ) ) media-libs/musicbrainz:3 dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib >=dev-dotnet/mono-addins-0.6.2[gtk] >=dev-dotnet/taglib-sharp-2.0.3.7 >=dev-db/sqlite-3.4:3 karma? ( >=media-libs/libkarma-0.1.0-r1 ) aac? ( media-plugins/gst-plugins-faad:0.10 ) boo? ( >=dev-lang/boo-0.8.1 ) bpm? ( media-plugins/gst-plugins-soundtouch:0.10 ) daap? ( >=dev-dotnet/mono-zeroconf-0.8.0-r1 ) doc? ( virtual/monodoc >=app-text/gnome-doc-utils-0.17.3 ) encode? ( media-plugins/gst-plugins-lame:0.10 media-plugins/gst-plugins-taglib:0.10 ) ipod? ( >=media-libs/libgpod-0.8.2[mono] ) mtp? ( >=media-libs/libmtp-0.3.0 ) web? ( >=net-libs/webkit-gtk-1.2.2:2 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 ) youtube? ( >=dev-dotnet/google-gdata-sharp-1.4 ) udev? ( app-misc/media-player-info dev-dotnet/gudev-sharp dev-dotnet/gkeyfile-sharp dev-dotnet/gtk-sharp-beans dev-dotnet/gio-sharp )
0
mirror://gnome/sources/banshee/2.4/banshee-2.4.0.tar.xz
mirror://gnome/sources/banshee/2.4/banshee-2.4.1.tar.xz
http://banshee.fm/
MIT

@ -14,7 +14,7 @@ gtk lua ssl
3
configure install prepare setup
compile configure install prepare setup

@ -14,7 +14,7 @@ autotools eutils libtool multilib multiprocessing toolchain-funcs user
4
configure install prepare
configure install prepare test

@ -0,0 +1,22 @@
>=dev-libs/boost-1.48[python?] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) )
>=dev-libs/boost-1.48[python?] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) )
0
http://libtorrent.googlecode.com/files/libtorrent-rasterbar-0.16.1.tar.gz
test
http://www.rasterbar.com/products/libtorrent/
BSD
C++ BitTorrent implementation focusing on efficiency and scalability
~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
eutils multilib python toolchain-funcs user versionator
debug doc examples python ssl static-libs
4
configure install prepare setup

@ -5,7 +5,7 @@ http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-6000-ucode-9.221.4.1.tgz
http://intellinuxwireless.org/?p=iwlwifi
ipw3945
Intel (R) Wireless WiFi Advanced N 6000 ucode
Intel (R) Wireless WiFi Ultimate-N 6300 and Advanced-N 6000 ucode
~amd64 ~x86

@ -1,22 +0,0 @@
app-shells/tcsh
0
ftp://cdsarc.u-strasbg.fr/pub/sw/cdsclient-3.6b.tar.gz
http://cdsweb.u-strasbg.fr/doc/cdsclient.html
as-is
Collection of scripts to access the CDS databases
~amd64 ~x86
eutils multilib toolchain-funcs user versionator
4
prepare

@ -1,7 +1,7 @@
app-shells/tcsh
0
ftp://cdsarc.u-strasbg.fr/pub/sw/cdsclient-3.7.tar.gz
ftp://cdsarc.u-strasbg.fr/pub/sw/cdsclient-3.71.tar.gz
http://cdsweb.u-strasbg.fr/doc/cdsclient.html
as-is

@ -6,7 +6,7 @@ mirror://gnu/binutils/binutils-2.22.tar.bz2 mirror://gentoo/binutils-2.22-patche
http://sources.redhat.com/binutils/
|| ( GPL-3 LGPL-3 )
Tools necessary to build programs
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd -sparc-fbsd -x86-fbsd
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd -sparc-fbsd ~x86-fbsd
eutils flag-o-matic gnuconfig libtool multilib toolchain-binutils toolchain-funcs unpacker user versionator
cxx nls multitarget multislot static-libs test vanilla zlib

@ -1,22 +0,0 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
!build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.0.26
mirror://kernel/linux/kernel/v3.x/linux-3.0.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-3.0 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-check -> deblob-check-3.0 ) mirror://gentoo/genpatches-3.0-22.base.tar.bz2 mirror://gentoo/genpatches-3.0-22.extras.tar.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches
GPL-2 !deblob? ( freedist )
Full sources including the Gentoo patchset for the 3.0 kernel tree
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
deblob symlink build deblob
!build? ( virtual/dev-manager )
2
compile install postinst postrm preinst setup test unpack

@ -1,22 +0,0 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
!build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.0.29
mirror://kernel/linux/kernel/v3.x/linux-3.0.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-3.0 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-check -> deblob-check-3.0 ) mirror://gentoo/genpatches-3.0-23.base.tar.bz2 mirror://gentoo/genpatches-3.0-23.extras.tar.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches
GPL-2 !deblob? ( freedist )
Full sources including the Gentoo patchset for the 3.0 kernel tree
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
deblob symlink build deblob
!build? ( virtual/dev-manager )
2
compile install postinst postrm preinst setup test unpack

@ -1,22 +0,0 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
!build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.3.0
mirror://kernel/linux/kernel/v3.x/linux-3.3.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-3.3 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-check -> deblob-check-3.3 ) mirror://gentoo/genpatches-3.3-1.base.tar.bz2 mirror://gentoo/genpatches-3.3-1.extras.tar.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches
GPL-2 !deblob? ( freedist )
Full sources including the Gentoo patchset for the 3.3 kernel tree
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
deblob symlink build deblob
!build? ( virtual/dev-manager )
3
compile install postinst postrm preinst setup test unpack

@ -1,22 +0,0 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
!build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.3.1
mirror://kernel/linux/kernel/v3.x/linux-3.3.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-3.3 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-check -> deblob-check-3.3 ) mirror://gentoo/genpatches-3.3-2.base.tar.bz2 mirror://gentoo/genpatches-3.3-2.extras.tar.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches
GPL-2 !deblob? ( freedist )
Full sources including the Gentoo patchset for the 3.3 kernel tree
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
deblob symlink build deblob
!build? ( virtual/dev-manager )
3
compile install postinst postrm preinst setup test unpack

@ -1,22 +0,0 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
!build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.3.2
mirror://kernel/linux/kernel/v3.x/linux-3.3.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-3.3 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-check -> deblob-check-3.3 ) mirror://gentoo/genpatches-3.3-3.base.tar.bz2 mirror://gentoo/genpatches-3.3-3.extras.tar.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches
GPL-2 !deblob? ( freedist )
Full sources including the Gentoo patchset for the 3.3 kernel tree
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
deblob symlink build deblob
!build? ( virtual/dev-manager )
3
compile install postinst postrm preinst setup test unpack

@ -1,22 +0,0 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
!build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.3.3
mirror://kernel/linux/kernel/v3.x/linux-3.3.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-3.3 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-check -> deblob-check-3.3 ) mirror://gentoo/genpatches-3.3-4.base.tar.bz2 mirror://gentoo/genpatches-3.3-4.extras.tar.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches
GPL-2 !deblob? ( freedist )
Full sources including the Gentoo patchset for the 3.3 kernel tree
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
deblob symlink build deblob
!build? ( virtual/dev-manager )
3
compile install postinst postrm preinst setup test unpack

@ -1,22 +0,0 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
!build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.3.4
mirror://kernel/linux/kernel/v3.x/linux-3.3.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-3.3 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-check -> deblob-check-3.3 ) mirror://gentoo/genpatches-3.3-5.base.tar.bz2 mirror://gentoo/genpatches-3.3-5.extras.tar.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches
GPL-2 !deblob? ( freedist )
Full sources including the Gentoo patchset for the 3.3 kernel tree
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
deblob symlink build deblob
!build? ( virtual/dev-manager )
3
compile install postinst postrm preinst setup test unpack

@ -1,22 +0,0 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
!build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.3.5
mirror://kernel/linux/kernel/v3.x/linux-3.3.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-3.3 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.3.N/deblob-check -> deblob-check-3.3 ) mirror://gentoo/genpatches-3.3-6.base.tar.bz2 mirror://gentoo/genpatches-3.3-6.extras.tar.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches
GPL-2 !deblob? ( freedist )
Full sources including the Gentoo patchset for the 3.3 kernel tree
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
deblob symlink build deblob
!build? ( virtual/dev-manager )
3
compile install postinst postrm preinst setup test unpack

@ -0,0 +1,22 @@
!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
>=sys-apps/tuxonice-userui-1.0 || ( >=sys-power/hibernate-script-2.0 sys-power/pm-utils ) !build? ( >=sys-libs/ncurses-5.2 sys-devel/make )
3.0.33
mirror://kernel/linux/kernel/v3.x/linux-3.0.tar.bz2 mirror://gentoo/genpatches-3.0-25.base.tar.bz2 mirror://gentoo/genpatches-3.0-25.extras.tar.bz2 http://dev.gentoo.org/~pacho/tuxonice/current-tuxonice-for-3.0_20111012.patch.bz2
binchecks strip
http://dev.gentoo.org/~mpagano/genpatches/ http://www.tuxonice.net
GPL-2 freedist
TuxOnIce + Gentoo patchset sources
~amd64 ~x86
eutils kernel-2 multilib toolchain-funcs user versionator
symlink build
!build? ( virtual/dev-manager )
4
compile install postinst postrm preinst setup test unpack

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

Loading…
Cancel
Save