Sync with portage [Fri Jan 18 13:59:21 MSK 2013].
This commit is contained in:
parent
f46db03da1
commit
cddea86799
64 changed files with 994 additions and 309 deletions
|
@ -1,4 +1,5 @@
|
|||
DIST v8-3.14.5.3.tar.bz2 10352249 SHA256 f91d851abd284589272f2b338c74e10f07ce667736e8e73cbd301172cb7f75a1 SHA512 ea090f390d9ec86b33393135d9e14f2a059e0341f65aaa86e4816ee9b2f0d9dbdb1ef1d86b6eab5742c93f62279bb4ce806a86eeacc4e0e0b04b0627c462b685 WHIRLPOOL fbb44dfed7c77fac28eb4d87e9f151ab0e70d6e57807de0f6af3c71ec7006cee15cc2935f3c75375f8a793a92fcd6a9f453ba2ea4b7e0d7353f5f0382ca9d937
|
||||
DIST v8-3.15.11.2.tar.bz2 10394544 SHA256 b52eea34c9a897a365f97ab2649c1678f99b8757f08e96fd683ac06367f52a98 SHA512 ed2ac0ff280f129922a639961cd2c2824bfd3890175b5a1eda021e90550591904e224171b4b446a2547a0062a93fa411000c7a7ff61245f8950280e692d5dc4a WHIRLPOOL 459e465b3530cad900c1507b4f232963a288070e16a37739eabbf48948b95eb64ce598f7a01b19de5f981cac0e91c3725c3d7c47ac15bf373ba3c24c244ffe52
|
||||
DIST v8-3.15.11.5.tar.bz2 10394328 SHA256 5dd7db8d8dd9247a10cdc48e647d3e83a8dac6768f7d0f8096539a9f0ebfaf64 SHA512 89e2658d555781eeecd7004fe058a693175ae7c515b7f290ea7acac32c27942afedd3a0c3d3c3a650ab78ed4772cc5eb04b4eb40782bfc857be8eac8e2a39e42 WHIRLPOOL 39c6ddad8531cba890d20e9874d282455ebb20a729d9f45acf1308358135226b04edd3bfe97a4cb36d985a51e3a1497b27cb9098c9b80412ca5aab980fe29b26
|
||||
DIST v8-3.16.4.1.tar.bz2 10435189 SHA256 74ab3bc11f6761e5108affcbe15bc673d2ecbe06aa38ea4b27d850321c0fdc2b SHA512 c0db5b0c101cfc2fb6d303c3fbfd021ee293e165fd3bf22b1d39ac510ac94d8f37dccdd67485880fd677c92cb0b0f51e591091abad8811dab2efb184445da6d9 WHIRLPOOL 2f2cf17b6b958c2ebf5aa9aa3f7865186374c6f23ae7123bfaaae07a92edfaf066b41a9db5465428e6ca1d21113d57ce8a2ab16fe38d0e7e5955b300747301dc
|
||||
DIST v8-3.16.4.tar.bz2 10433190 SHA256 a7efdababbdc14dd226fc6aaddb2b93b9ff6a68cf249de595bc8cd87fe87f9db SHA512 2254f8e50ba87863d1f3cb158c35c9f9c7976d18ba533518b320e720252cf10bb5f85e08003836417359ab9eba6dc8f08ee0263bc8a93a02d9de87fc3b2356d9 WHIRLPOOL c831dae5aeef708047f536358d9747935c81eacbd48eabb5c3de640e541e531a0bddcccc4ccfa6706f0ca5492c28f24629d50e19043e3d8ad475c6aa29545c12
|
||||
|
|
104
dev-lang/v8/v8-3.16.4.1.ebuild
Normal file
104
dev-lang/v8/v8-3.16.4.1.ebuild
Normal file
|
@ -0,0 +1,104 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.16.4.1.ebuild,v 1.1 2013/01/18 05:30:46 phajdan.jr Exp $
|
||||
|
||||
EAPI="5"
|
||||
PYTHON_COMPAT=( python2_{6,7} )
|
||||
|
||||
inherit eutils multilib pax-utils python-any-r1 toolchain-funcs versionator
|
||||
|
||||
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"
|
||||
|
||||
soname_version="$(get_version_component_range 1-3)"
|
||||
SLOT="0/${soname_version}"
|
||||
KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd ~x64-macos ~x86-macos"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="${PYTHON_DEPS}"
|
||||
|
||||
src_compile() {
|
||||
tc-export AR CC CXX RANLIB
|
||||
export LINK=${CXX}
|
||||
|
||||
local hardfp=off
|
||||
|
||||
# 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*-hardfloat-*)
|
||||
hardfp=on
|
||||
myarch=arm ;;
|
||||
arm*-*) myarch=arm ;;
|
||||
*) die "Unrecognized CHOST: ${CHOST}"
|
||||
esac
|
||||
mytarget=${myarch}.release
|
||||
|
||||
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} \
|
||||
hardfp=${hardfp} \
|
||||
${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
|
||||
|
||||
if [[ ${CHOST} == *-darwin* ]] ; then
|
||||
# buildsystem is too horrific to get this built correctly
|
||||
mkdir -p out/${mytarget}/lib.target
|
||||
mv out/${mytarget}/libv8.so.${soname_version} \
|
||||
out/${mytarget}/lib.target/libv8$(get_libname ${soname_version}) || die
|
||||
install_name_tool \
|
||||
-id "${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname) \
|
||||
out/${mytarget}/lib.target/libv8$(get_libname ${soname_version}) \
|
||||
|| die
|
||||
install_name_tool \
|
||||
-change \
|
||||
/usr/local/lib/libv8.so.${soname_version} \
|
||||
"${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname) \
|
||||
out/${mytarget}/d8 || die
|
||||
fi
|
||||
|
||||
dobin out/${mytarget}/d8 || die
|
||||
|
||||
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
|
||||
}
|
44
dev-python/chardet/chardet-2.0.1-r1.ebuild
Normal file
44
dev-python/chardet/chardet-2.0.1-r1.ebuild
Normal file
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/chardet/chardet-2.0.1-r1.ebuild,v 1.2 2013/01/18 06:03:09 floppym Exp $
|
||||
|
||||
EAPI="5"
|
||||
PYTHON_COMPAT=( python{2_{5,6,7},3_{1,2,3}} pypy{1_9,2_0} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Character encoding auto-detection in Python."
|
||||
HOMEPAGE="http://chardet.feedparser.org/ http://code.google.com/p/chardet/"
|
||||
SRC_URI="http://chardet.feedparser.org/download/python2-${P}.tgz
|
||||
http://chardet.feedparser.org/download/python3-${P}.tgz"
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
|
||||
IUSE=""
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
mkdir "${S}" || die
|
||||
}
|
||||
|
||||
push_sourcedir() {
|
||||
if [[ ${EPYTHON} == python3* ]]; then
|
||||
pushd "${WORKDIR}/python3-${P}" || die
|
||||
else
|
||||
pushd "${WORKDIR}/python2-${P}" || die
|
||||
fi
|
||||
"$@"
|
||||
popd
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
push_sourcedir distutils-r1_python_compile
|
||||
}
|
||||
|
||||
python_install() {
|
||||
push_sourcedir distutils-r1_python_install
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
push_sourcedir dohtml -r docs/
|
||||
}
|
|
@ -1,6 +1,11 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/chardet/chardet-2.1.1.ebuild,v 1.2 2013/01/16 11:33:03 zmedico Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/chardet/chardet-2.1.1.ebuild,v 1.3 2013/01/18 05:29:20 floppym Exp $
|
||||
|
||||
# NOTE: This version has been masked by floppym.
|
||||
# It is an unofficial release, and drops Python 3 support.
|
||||
# Please do not version bump this unless Python 3 is fixed or some major
|
||||
# bug is fixed.
|
||||
|
||||
EAPI="4"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
DIST phear-0.5.tar.bz2 20502 RMD160 d727eef639e06869fd436e19450ff3a25d62e91a SHA1 5bd982ddbf014697d03e6d5d2d368e4da8e2a203 SHA256 1087c04347ff60d153ffceb91363a31643337ed71b4a40b68160392d32d68bb7
|
||||
DIST phear-0.5.1.tar.bz2 25750 SHA256 9af83c2246dc05531e3d1d11ea931fe38e7086b513fb8e295c7e95b54c68e687 SHA512 23326a63acc06e77a1dd3505345940f8ef31b671282e00f623b181fe1cdbdf1b7e4b37a6e91ea430348a02239ed1450736dc075ea3af3eee0e8acb115aa89f3b WHIRLPOOL 4891f223c91728164e785b781ec957f0c65b31d2e2b32a3db68d3952695e68728bbec566a5b07847ae6157ee0075edd19b7f84fbee8ee458f1690670dc0e9683
|
||||
DIST phear-0.5.tar.bz2 20502 SHA256 1087c04347ff60d153ffceb91363a31643337ed71b4a40b68160392d32d68bb7
|
||||
|
|
36
games-arcade/cavezofphear/cavezofphear-0.5.1.ebuild
Normal file
36
games-arcade/cavezofphear/cavezofphear-0.5.1.ebuild
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-arcade/cavezofphear/cavezofphear-0.5.1.ebuild,v 1.1 2013/01/18 07:41:02 mr_bones_ Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit eutils games
|
||||
|
||||
DESCRIPTION="A boulder dash / digger-like game for console using ncurses"
|
||||
HOMEPAGE="http://www.x86.no/cavezofphear/"
|
||||
SRC_URI="http://www.x86.no/${PN}/${P/cavezof}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=sys-libs/ncurses-5"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S=${WORKDIR}/${P/cavezof/}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${P}-gentoo.patch
|
||||
sed -i \
|
||||
-e "s:get_data_dir(.):\"${GAMES_DATADIR}/${PN}/\":" \
|
||||
src/{chk.c,main.c,gplot.c} \
|
||||
|| die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dogamesbin src/phear
|
||||
insinto "${GAMES_DATADIR}"/${PN}
|
||||
doins -r data/*
|
||||
dodoc ChangeLog README* TODO
|
||||
prepgamesdirs
|
||||
}
|
|
@ -0,0 +1,36 @@
|
|||
diff -ru phear-0.5.1.orig/Makefile phear-0.5.1/Makefile
|
||||
--- phear-0.5.1.orig/Makefile 2007-02-27 06:21:55.000000000 -0500
|
||||
+++ phear-0.5.1/Makefile 2013-01-18 02:09:56.403224104 -0500
|
||||
@@ -2,7 +2,7 @@
|
||||
DESTDIR_DATA = /usr/local/share
|
||||
|
||||
make:
|
||||
- cd src && make
|
||||
+ $(MAKE) -C src phear
|
||||
clean:
|
||||
rm -f phear editor
|
||||
install:
|
||||
diff -ru phear-0.5.1.orig/src/Makefile phear-0.5.1/src/Makefile
|
||||
--- phear-0.5.1.orig/src/Makefile 2011-12-12 07:26:03.000000000 -0500
|
||||
+++ phear-0.5.1/src/Makefile 2013-01-18 02:10:48.218423433 -0500
|
||||
@@ -2,10 +2,8 @@
|
||||
|
||||
DESTDIR = ..
|
||||
|
||||
-CC = gcc
|
||||
INSTALL = install
|
||||
-CFLAGS ?= -s -Wall -O2
|
||||
-LDFLAGS += -lncurses
|
||||
+LDLIBS = -lncurses
|
||||
|
||||
all: phear install clean
|
||||
|
||||
@@ -13,7 +11,7 @@
|
||||
$(CC) $(CFLAGS) -c $^ -o $@
|
||||
|
||||
phear: $(OBJS)
|
||||
- $(CC) $(CFLAGS) -o $@ $^ ${LDFLAGS}
|
||||
+ $(CC) $(CFLAGS) -o $@ $^ ${LDFLAGS} $(LDLIBS)
|
||||
|
||||
install: install-game
|
||||
|
|
@ -1 +1,2 @@
|
|||
DIST gtkatlantic-0.4.2.tar.bz2 779687 RMD160 2da135e34563cf27163bdae096764c41927303d2 SHA1 806c802d614f17706ea6cda5daaee87e42c89b33 SHA256 44af09fba5a71f2e6462206b6e6f32ac89c91afd9383c5860e632fa31491bd75
|
||||
DIST gtkatlantic-0.4.2.tar.bz2 779687 SHA256 44af09fba5a71f2e6462206b6e6f32ac89c91afd9383c5860e632fa31491bd75
|
||||
DIST gtkatlantic-0.4.3.tar.bz2 748589 SHA256 5711eab90b831816da48b1d30f0f0d2b511bfaa6b057240977296f2c133184b1 SHA512 7d843783ee19e0e726e340a4497f4adec91d749461a400162b787676d2ab9fad136ae75578de9f5ce9008d05735951c4cafaf50ba651337ec4d6c0da66878bb2 WHIRLPOOL 84562688728a5bb4ddeec4de861753f6d3952c771f242ed98de358199aec8dd696d8eed9659ac61db463c7ac140dcae6ebccfa1f4a1c56ca78b0c8dcfe34d6c4
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
--- gtkatlantic-0.4.3.orig/configure.in
|
||||
+++ gtkatlantic-0.4.3/configure.in
|
||||
@@ -48,15 +48,7 @@
|
||||
dnl fi
|
||||
|
||||
dnl Set PACKAGE_DATA_DIR in config.h.
|
||||
-if test "x${datarootdir}" = 'x${prefix}/share'; then
|
||||
- if test "x${prefix}" = "xNONE"; then
|
||||
- AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}", [Path where data will be installed])
|
||||
- else
|
||||
- AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}", [Path where data will be installed])
|
||||
- fi
|
||||
-else
|
||||
- AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datadir}/${PACKAGE}", [Path where data will be installed])
|
||||
-fi
|
||||
+AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datadir}/${PACKAGE}", [Path where data will be installed])
|
||||
|
||||
dnl Set PACKAGE SOURCE DIR in config.h.
|
||||
packagesrcdir=`cd $srcdir && pwd`
|
||||
@@ -67,10 +59,6 @@
|
||||
# CFLAGS="-g"; \
|
||||
# fi
|
||||
|
||||
-if test "x$GCC" = "xyes"; then \
|
||||
- CFLAGS="-Wall -Werror -ggdb"; \
|
||||
-fi
|
||||
-
|
||||
AC_OUTPUT([
|
||||
Makefile
|
||||
src/Makefile
|
55
games-board/gtkatlantic/gtkatlantic-0.4.3.ebuild
Normal file
55
games-board/gtkatlantic/gtkatlantic-0.4.3.ebuild
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-board/gtkatlantic/gtkatlantic-0.4.3.ebuild,v 1.1 2013/01/18 06:38:34 mr_bones_ Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit autotools eutils gnome2-utils games
|
||||
|
||||
DESCRIPTION="Monopoly-like game that works with the monopd server"
|
||||
HOMEPAGE="http://gtkatlantic.gradator.net/"
|
||||
SRC_URI="http://gtkatlantic.gradator.net/downloads/v0.4/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="x11-libs/gtk+:2
|
||||
dev-libs/libxml2
|
||||
media-libs/libpng:0"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
src_prepare() {
|
||||
# quiet gtk deprecation warnings
|
||||
sed -i \
|
||||
-e 's/g_strncasecmp/g_ascii_strncasecmp/' \
|
||||
-e 's/g_strup/g_ascii_strup/' \
|
||||
src/{load.c,xmlparse.c} || die
|
||||
epatch "${FILESDIR}"/${P}-compile.patch
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die
|
||||
dodoc AUTHORS ChangeLog NEWS README
|
||||
newicon data/icon32x32.xpm ${PN}.xpm
|
||||
newicon -s 16 data/icon16x16.xpm ${PN}.xpm
|
||||
newicon -s 32 data/icon32x32.xpm ${PN}.xpm
|
||||
make_desktop_entry ${PN} GtkAtlantic
|
||||
prepgamesdirs
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
games_pkg_preinst
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
games_pkg_postinst
|
||||
gnome2_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_icon_cache_update
|
||||
}
|
18
media-sound/xmms2/files/xmms2-0.8-ffmpeg-0.11.patch
Normal file
18
media-sound/xmms2/files/xmms2-0.8-ffmpeg-0.11.patch
Normal file
|
@ -0,0 +1,18 @@
|
|||
commit 8743e0c3a4f06053d89b74e40a362ba4949ed53c
|
||||
Author: Juho Vähä-Herttua <juhovh@iki.fi>
|
||||
Date: Fri Jun 8 09:30:47 2012 +0300
|
||||
|
||||
OTHER: Quick fix to make XMMS2 compile on ffmpeg 0.11
|
||||
|
||||
diff --git a/src/plugins/avcodec/avcodec_compat.h b/src/plugins/avcodec/avcodec_compat.h
|
||||
index df87b27..f1b1af7 100644
|
||||
--- a/src/plugins/avcodec/avcodec_compat.h
|
||||
+++ b/src/plugins/avcodec/avcodec_compat.h
|
||||
@@ -65,3 +65,7 @@ typedef struct AVPacket {
|
||||
# define AVMEDIA_TYPE_AUDIO CODEC_TYPE_AUDIO
|
||||
#endif
|
||||
|
||||
+/* Calling avcodec_init is not necessary after 53.04 (ffmpeg 0.9) */
|
||||
+#if LIBAVCODEC_VERSION_INT >= 0x350400
|
||||
+# define avcodec_init()
|
||||
+#endif
|
50
media-sound/xmms2/files/xmms2-0.8-libav-9-p2.patch
Normal file
50
media-sound/xmms2/files/xmms2-0.8-libav-9-p2.patch
Normal file
|
@ -0,0 +1,50 @@
|
|||
commit 4781c507be338fe151e08af7d13267a24cbd7572
|
||||
Author: Juho Vähä-Herttua <juhovh@iki.fi>
|
||||
Date: Fri Jun 8 09:47:03 2012 +0300
|
||||
|
||||
OTHER: Fix some deprecated warnings in libavcodec
|
||||
|
||||
diff --git a/src/plugins/avcodec/avcodec.c b/src/plugins/avcodec/avcodec.c
|
||||
index 242e333..c846d64 100644
|
||||
--- a/src/plugins/avcodec/avcodec.c
|
||||
+++ b/src/plugins/avcodec/avcodec.c
|
||||
@@ -208,7 +208,7 @@ xmms_avcodec_init (xmms_xform_t *xform)
|
||||
}
|
||||
}
|
||||
|
||||
- data->codecctx = avcodec_alloc_context ();
|
||||
+ data->codecctx = avcodec_alloc_context3 (codec);
|
||||
data->codecctx->sample_rate = data->samplerate;
|
||||
data->codecctx->channels = data->channels;
|
||||
data->codecctx->bit_rate = data->bitrate;
|
||||
@@ -219,7 +219,7 @@ xmms_avcodec_init (xmms_xform_t *xform)
|
||||
data->codecctx->codec_id = codec->id;
|
||||
data->codecctx->codec_type = codec->type;
|
||||
|
||||
- if (avcodec_open (data->codecctx, codec) < 0) {
|
||||
+ if (avcodec_open2 (data->codecctx, codec, NULL) < 0) {
|
||||
XMMS_DBG ("Opening decoder '%s' failed", codec->name);
|
||||
goto err;
|
||||
} else {
|
||||
diff --git a/src/plugins/avcodec/avcodec_compat.h b/src/plugins/avcodec/avcodec_compat.h
|
||||
index f1b1af7..bc770f2 100644
|
||||
--- a/src/plugins/avcodec/avcodec_compat.h
|
||||
+++ b/src/plugins/avcodec/avcodec_compat.h
|
||||
@@ -69,3 +69,17 @@ typedef struct AVPacket {
|
||||
#if LIBAVCODEC_VERSION_INT >= 0x350400
|
||||
# define avcodec_init()
|
||||
#endif
|
||||
+
|
||||
+/* Map avcodec_alloc_context3 into the deprecated version
|
||||
+ * avcodec_alloc_context in versions earlier than 53.04 (ffmpeg 0.9) */
|
||||
+#if LIBAVCODEC_VERSION_INT < 0x350400
|
||||
+# define avcodec_alloc_context3(codec) \
|
||||
+ avcodec_alloc_context()
|
||||
+#endif
|
||||
+
|
||||
+/* Map avcodec_open2 into the deprecated version
|
||||
+ * avcodec_open in versions earlier than 53.04 (ffmpeg 0.9) */
|
||||
+#if LIBAVCODEC_VERSION_INT < 0x350400
|
||||
+# define avcodec_open2(avctx, codec, options) \
|
||||
+ avcodec_open(avctx, codec)
|
||||
+#endif
|
|
@ -1,21 +1,20 @@
|
|||
commit a1fe1f45c19c67ed80c05d8276b88d1296f984d2
|
||||
Author: Raphaël Bois <virtualdust@gmail.com>
|
||||
Date: Sun Nov 25 17:55:12 2012 +0100
|
||||
commit d61dbc522f4024debb1f99de758de9e5cc7c0936
|
||||
Author: Diego Biurrun <diego@biurrun.de>
|
||||
Date: Sun Nov 25 17:33:02 2012 +0100
|
||||
|
||||
OTHER: Add Diego Biurrun in AUTHORS file
|
||||
OTHER: Support for newer libavcodec versions
|
||||
|
||||
Add missing #include
|
||||
|
||||
diff --git a/AUTHORS b/AUTHORS
|
||||
index 9d05e1a..3b84fce 100644
|
||||
--- a/AUTHORS
|
||||
+++ b/AUTHORS
|
||||
@@ -37,6 +37,10 @@ E: xkr47@outerspace.dyndns.org
|
||||
W: http://xkr47.outerspace.dyndns.org/
|
||||
D: curl_http updated to xforms, icymetaint plugin (extracted from curl)
|
||||
diff --git a/src/plugins/avcodec/avcodec.c b/src/plugins/avcodec/avcodec.c
|
||||
index c846d64..114d7df 100644
|
||||
--- a/src/plugins/avcodec/avcodec.c
|
||||
+++ b/src/plugins/avcodec/avcodec.c
|
||||
@@ -23,6 +23,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <glib.h>
|
||||
+#include <libavutil/mem.h>
|
||||
|
||||
#include "avcodec_compat.h"
|
||||
|
||||
+N: Diego Biurrun
|
||||
+E: diego@biurrun.de
|
||||
+D: Support for libav 9 in avcodec plugin
|
||||
+
|
||||
N: Magnus Bjernstad
|
||||
E: bjernstad@gmail.com
|
||||
D: PythonAPI fixes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-sound/xmms2/xmms2-0.8-r1.ebuild,v 1.12 2013/01/16 12:35:31 slyfox Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-sound/xmms2/xmms2-0.8-r1.ebuild,v 1.13 2013/01/18 08:05:25 slyfox Exp $
|
||||
|
||||
EAPI=3
|
||||
|
||||
|
@ -107,6 +107,8 @@ src_prepare() {
|
|||
cd .waf* || die
|
||||
epatch "${FILESDIR}/${PN}"-0.8DrO_o-waflib-fix-perl.patch
|
||||
cd "${S}"
|
||||
epatch "${FILESDIR}/${P}"-ffmpeg-0.11.patch #443256
|
||||
epatch "${FILESDIR}/${P}"-libav-9-p2.patch #443256
|
||||
epatch "${FILESDIR}/${P}"-libav-9.patch #443256
|
||||
|
||||
if has_version dev-libs/libcdio-paranoia; then
|
||||
|
|
|
@ -2,4 +2,6 @@ DIST xbmc-11.0-ffmpeg-1.0-compat-1.tar.bz2 32687 SHA256 bfdca8283c35d0062ed2c2b3
|
|||
DIST xbmc-11.0.tar.gz 63012044 SHA256 1fe5d310c16138f26e2b13bc545604e95f48ace6c8636f23e77da402cd7b0b19 SHA512 ba738129f70dd171b3fae385ab44317f62c9041a116bfe809d6d07c99ea69c663ad5d598552a17be0b942251ce12a68f34d0be21b303b256055849a6dde90043 WHIRLPOOL 4dd068749c86542e39b8fc42b45bbb56e885813b17876d3583cb4d91c902ff075e1f16f1c19720e3430dc149c40e52e7d1ab3323f666263fb353a59e2ef94a8e
|
||||
DIST xbmc-12.0_rc2-generated-addons.tar.xz 51984 SHA256 ea7a021c7fd28fa88476dddaf88b7fee9917de2364a57113dbbeda47e402bb52 SHA512 a2379276d2ffcb62e4410599ec1e8637eb52bd74f89731ceb66e92ac2e25cfe92eda76fd0e732749109e0b1986861815e0940d6be4380cab1029106420952578 WHIRLPOOL 571d9e8691ad6d49508708ee495262305eb15a18e8b0543aa308006e3216680e913761d1706c6bed2448eeb37f4546727cde922988fa0c6e9598a429e9f0b170
|
||||
DIST xbmc-12.0_rc2.tar.gz 63734373 SHA256 e8d08df41ddbd6490e07f46c9ce28d7ada216012647f52f5e54a3e6618aa8c69 SHA512 e738c22abf9477ddd5c6be977e85303679bbf5baa524da8baa34426930f3c4599e4bf6f8aba9a093ebf81b9948c77d3bb381cdf50457ca39fbbfe3dd3411b297 WHIRLPOOL a30730c69c8b1808fb6d500b682f46517c77495e08cc61db304d14db09c0a42c8ac9b05a45a4783c05a891fe5d3f190533608806432b8e29577b23768062b9de
|
||||
DIST xbmc-12.0_rc3-generated-addons.tar.xz 51960 SHA256 cb1aa2cdd37c8b05ba45feea17380fefc7065a0203e0a3a4853a4cb252b5b2bc SHA512 a9cf5086e81f462cf72a7548eb9d89f11b0961e9b455b82395f298799b90eea8f3dbe86f04621926c2f056455ee102596e1ec3f39b329dc72b0df0355058e1c5 WHIRLPOOL 18fb704caa1abdaa05a66cd61cea5301f59bc11bdaa74cc9cb823cc6462f103ab660850c31103c4315256cf6c59b6d57c98e275d670954523d3aa2937de6d556
|
||||
DIST xbmc-12.0_rc3.tar.gz 64069488 SHA256 5d2e9d47aad3c84c32d37fd2fe9645a2466b2bc51d7fc4923e66a1aa48013f3d SHA512 798beed64cb37c454bd20c05ab9432721a1dd2129d55b1fa1c7ebdecffd0854cee6f8a27ced1bb11f25e4eccab3faa8c46f21622a2218333e2f6d28f4b937d5d WHIRLPOOL 0c86b9a318b415f24c086a80e8262aecd93fbde52b7bc501806698f32aa3efc64a8de14a474e862589260011c19bfdd0d760793013f01e7fb6484b6116fe53a0
|
||||
DIST xbmc-9999-20121224-generated-addons.tar.xz 51980 SHA256 21284fe7ccee065eee10064f73a469722d6ffddf2fe882a0aefc07ea0eba0401 SHA512 48cdf8c685a48cd32462509962c888e8bc16254268d6fc891aacc5222da42e227ee5b6858c9e2b80d7d9fecc63862cd0c62c181a106212886a25f9be52778a1f WHIRLPOOL 12a31d33cc322b4afc3bdc829fc330a0971cab8a557a2f87885569d817a3664ae7506bfe7984322ec95b7786a246cd5edb10fceabfd96965ef33dd19cb934ae7
|
||||
|
|
16
media-tv/xbmc/files/generate.sh
Executable file
16
media-tv/xbmc/files/generate.sh
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -eux
|
||||
|
||||
PV=$1
|
||||
PN=xbmc
|
||||
P="${PN}-${PV}"
|
||||
DISTDIR="/usr/portage/distfiles"
|
||||
|
||||
rm -rf ${PN}-*/
|
||||
tar xf ${DISTDIR}/${P}.tar.gz
|
||||
cd ${PN}-*/
|
||||
make codegenerated -f codegenerator.mk -j
|
||||
cd ..
|
||||
tar cf - ${PN}-*/xbmc/interfaces/python/generated/*.cpp | xz > ${DISTDIR}/${P}-generated-addons.tar.xz
|
||||
rm -rf ${PN}-*/
|
237
media-tv/xbmc/xbmc-12.0_rc3.ebuild
Normal file
237
media-tv/xbmc/xbmc-12.0_rc3.ebuild
Normal file
|
@ -0,0 +1,237 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-tv/xbmc/xbmc-12.0_rc3.ebuild,v 1.1 2013/01/18 05:55:25 vapier Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
# Does not work with py3 here
|
||||
# It might work with py:2.5 but I didn't test that
|
||||
PYTHON_DEPEND="2:2.6"
|
||||
PYTHON_USE_WITH=sqlite
|
||||
|
||||
inherit eutils python multiprocessing autotools
|
||||
|
||||
case ${PV} in
|
||||
9999)
|
||||
EGIT_REPO_URI="git://github.com/xbmc/xbmc.git"
|
||||
inherit git-2
|
||||
SRC_URI="!java? ( mirror://gentoo/${P}-20121224-generated-addons.tar.xz )"
|
||||
;;
|
||||
*_alpha*|*_beta*|*_rc*)
|
||||
MY_PV="Frodo_${PV#*_}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
SRC_URI="https://github.com/xbmc/xbmc/archive/${MY_PV}.tar.gz -> ${P}.tar.gz
|
||||
!java? ( mirror://gentoo/${P}-generated-addons.tar.xz )"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
;;
|
||||
*)
|
||||
MY_P=${P/_/-*_}
|
||||
SRC_URI="http://mirrors.xbmc.org/releases/source/${MY_P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
;;
|
||||
esac
|
||||
|
||||
DESCRIPTION="XBMC is a free and open source media-player and entertainment hub"
|
||||
HOMEPAGE="http://xbmc.org/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="airplay alsa altivec avahi bluetooth bluray cec css debug goom java joystick midi mysql nfs profile +projectm pulseaudio pvr +rsxs rtmp +samba sse sse2 sftp udev upnp vaapi vdpau webserver +xrandr"
|
||||
REQUIRED_USE="pvr? ( mysql )"
|
||||
|
||||
COMMON_DEPEND="virtual/glu
|
||||
virtual/opengl
|
||||
app-arch/bzip2
|
||||
app-arch/unzip
|
||||
app-arch/zip
|
||||
app-i18n/enca
|
||||
airplay? ( app-pda/libplist )
|
||||
>=dev-lang/python-2.4
|
||||
dev-libs/boost
|
||||
dev-libs/fribidi
|
||||
dev-libs/libcdio[-minimal]
|
||||
cec? ( >=dev-libs/libcec-2 )
|
||||
dev-libs/libpcre[cxx]
|
||||
>=dev-libs/lzo-2.04
|
||||
dev-libs/tinyxml[stl]
|
||||
dev-libs/yajl
|
||||
dev-python/simplejson
|
||||
media-libs/alsa-lib
|
||||
media-libs/flac
|
||||
media-libs/fontconfig
|
||||
media-libs/freetype
|
||||
>=media-libs/glew-1.5.6
|
||||
media-libs/jasper
|
||||
media-libs/jbigkit
|
||||
>=media-libs/libass-0.9.7
|
||||
bluray? ( media-libs/libbluray )
|
||||
css? ( media-libs/libdvdcss )
|
||||
media-libs/libmad
|
||||
media-libs/libmodplug
|
||||
media-libs/libmpeg2
|
||||
media-libs/libogg
|
||||
media-libs/libpng
|
||||
projectm? ( media-libs/libprojectm )
|
||||
media-libs/libsamplerate
|
||||
media-libs/libsdl[audio,opengl,video,X]
|
||||
alsa? ( media-libs/libsdl[alsa] )
|
||||
>=media-libs/taglib-1.8
|
||||
media-libs/libvorbis
|
||||
media-libs/sdl-gfx
|
||||
>=media-libs/sdl-image-1.2.10[gif,jpeg,png]
|
||||
media-libs/sdl-mixer
|
||||
media-libs/sdl-sound
|
||||
media-libs/tiff
|
||||
pulseaudio? ( media-sound/pulseaudio )
|
||||
media-sound/wavpack
|
||||
|| ( media-libs/libpostproc <media-video/libav-0.8.2-r1 media-video/ffmpeg )
|
||||
>=virtual/ffmpeg-0.6[encode]
|
||||
rtmp? ( media-video/rtmpdump )
|
||||
avahi? ( net-dns/avahi )
|
||||
nfs? ( net-fs/libnfs )
|
||||
webserver? ( net-libs/libmicrohttpd[messages] )
|
||||
sftp? ( net-libs/libssh )
|
||||
net-misc/curl
|
||||
samba? ( >=net-fs/samba-3.4.6[smbclient] )
|
||||
bluetooth? ( net-wireless/bluez )
|
||||
sys-apps/dbus
|
||||
sys-libs/zlib
|
||||
virtual/jpeg
|
||||
mysql? ( virtual/mysql )
|
||||
x11-apps/xdpyinfo
|
||||
x11-apps/mesa-progs
|
||||
vaapi? ( x11-libs/libva[opengl] )
|
||||
vdpau? (
|
||||
|| ( x11-libs/libvdpau >=x11-drivers/nvidia-drivers-180.51 )
|
||||
virtual/ffmpeg[vdpau]
|
||||
)
|
||||
x11-libs/libXinerama
|
||||
xrandr? ( x11-libs/libXrandr )
|
||||
x11-libs/libXrender"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
udev? ( sys-fs/udisks:0 sys-power/upower )"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
app-arch/xz-utils
|
||||
dev-lang/swig
|
||||
dev-util/gperf
|
||||
x11-proto/xineramaproto
|
||||
dev-util/cmake
|
||||
x86? ( dev-lang/nasm )
|
||||
java? ( virtual/jre )"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
pkg_setup() {
|
||||
python_set_active_version 2
|
||||
python_pkg_setup
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
[[ ${PV} == "9999" ]] && git-2_src_unpack || default
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${PN}-9999-nomythtv.patch
|
||||
epatch "${FILESDIR}"/${PN}-9999-no-arm-flags.patch #400617
|
||||
# The mythtv patch touches configure.ac, so force a regen
|
||||
rm -f configure
|
||||
|
||||
# some dirs ship generated autotools, some dont
|
||||
multijob_init
|
||||
local d
|
||||
for d in $(printf 'f:\n\t@echo $(BOOTSTRAP_TARGETS)\ninclude bootstrap.mk\n' | emake -f - f) ; do
|
||||
[[ -e ${d} ]] && continue
|
||||
pushd ${d/%configure/.} >/dev/null || die
|
||||
AT_NOELIBTOOLIZE="yes" AT_TOPLEVEL_EAUTORECONF="yes" \
|
||||
multijob_child_init eautoreconf
|
||||
popd >/dev/null
|
||||
done
|
||||
multijob_finish
|
||||
elibtoolize
|
||||
|
||||
# Disable internal func checks as our USE/DEPEND
|
||||
# stuff handles this just fine already #408395
|
||||
export ac_cv_lib_avcodec_ff_vdpau_vc1_decode_picture=yes
|
||||
|
||||
local squish #290564
|
||||
use altivec && squish="-DSQUISH_USE_ALTIVEC=1 -maltivec"
|
||||
use sse && squish="-DSQUISH_USE_SSE=1 -msse"
|
||||
use sse2 && squish="-DSQUISH_USE_SSE=2 -msse2"
|
||||
sed -i \
|
||||
-e '/^CXXFLAGS/{s:-D[^=]*=.::;s:-m[[:alnum:]]*::}' \
|
||||
-e "1iCXXFLAGS += ${squish}" \
|
||||
lib/libsquish/Makefile.in || die
|
||||
|
||||
# Fix XBMC's final version string showing as "exported"
|
||||
# instead of the SVN revision number.
|
||||
export HAVE_GIT=no GIT_REV=${EGIT_VERSION:-exported}
|
||||
|
||||
# avoid long delays when powerkit isn't running #348580
|
||||
sed -i \
|
||||
-e '/dbus_connection_send_with_reply_and_block/s:-1:3000:' \
|
||||
xbmc/linux/*.cpp || die
|
||||
|
||||
epatch_user #293109
|
||||
|
||||
# Tweak autotool timestamps to avoid regeneration
|
||||
find . -type f -print0 | xargs -0 touch -r configure
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Disable documentation generation
|
||||
export ac_cv_path_LATEX=no
|
||||
# Avoid help2man
|
||||
export HELP2MAN=$(type -P help2man || echo true)
|
||||
# No configure flage for this #403561
|
||||
export ac_cv_lib_bluetooth_hci_devid=$(usex bluetooth)
|
||||
# Requiring java is asine #434662
|
||||
export ac_cv_path_JAVA_EXE=$(which $(usex java java true))
|
||||
|
||||
econf \
|
||||
--docdir=/usr/share/doc/${PF} \
|
||||
--disable-ccache \
|
||||
--disable-optimizations \
|
||||
--enable-external-libraries \
|
||||
--enable-gl \
|
||||
$(use_enable airplay) \
|
||||
$(use_enable avahi) \
|
||||
$(use_enable bluray libbluray) \
|
||||
$(use_enable cec libcec) \
|
||||
$(use_enable css dvdcss) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable goom) \
|
||||
--disable-hal \
|
||||
$(use_enable joystick) \
|
||||
$(use_enable midi mid) \
|
||||
$(use_enable mysql) \
|
||||
$(use_enable nfs) \
|
||||
$(use_enable profile profiling) \
|
||||
$(use_enable projectm) \
|
||||
$(use_enable pulseaudio pulse) \
|
||||
$(use_enable pvr mythtv) \
|
||||
$(use_enable rsxs) \
|
||||
$(use_enable rtmp) \
|
||||
$(use_enable samba) \
|
||||
$(use_enable sftp ssh) \
|
||||
$(use_enable upnp) \
|
||||
$(use_enable vaapi) \
|
||||
$(use_enable vdpau) \
|
||||
$(use_enable webserver) \
|
||||
$(use_enable xrandr)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
rm "${ED}"/usr/share/doc/*/{LICENSE.GPL,copying.txt}*
|
||||
|
||||
domenu tools/Linux/xbmc.desktop
|
||||
newicon tools/Linux/xbmc-48x48.png xbmc.png
|
||||
|
||||
insinto "$(python_get_sitedir)" #309885
|
||||
doins tools/EventClients/lib/python/xbmcclient.py || die
|
||||
newbin "tools/EventClients/Clients/XBMC Send/xbmc-send.py" xbmc-send || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "Visit http://wiki.xbmc.org/?title=XBMC_Online_Manual"
|
||||
}
|
|
@ -1 +1 @@
|
|||
Fri, 18 Jan 2013 04:36:52 +0000
|
||||
Fri, 18 Jan 2013 09:06:53 +0000
|
||||
|
|
|
@ -1 +1 @@
|
|||
Fri, 18 Jan 2013 04:36:52 +0000
|
||||
Fri, 18 Jan 2013 09:06:53 +0000
|
||||
|
|
11
metadata/md5-cache/dev-lang/v8-3.16.4.1
Normal file
11
metadata/md5-cache/dev-lang/v8-3.16.4.1
Normal file
|
@ -0,0 +1,11 @@
|
|||
DEFINED_PHASES=compile install setup test
|
||||
DEPEND=|| ( dev-lang/python:2.7 dev-lang/python:2.6 )
|
||||
DESCRIPTION=Google's open source JavaScript engine
|
||||
EAPI=5
|
||||
HOMEPAGE=http://code.google.com/p/v8
|
||||
KEYWORDS=~amd64 ~arm ~x86 ~x86-fbsd ~x64-macos ~x86-macos
|
||||
LICENSE=BSD
|
||||
SLOT=0/3.16.4
|
||||
SRC_URI=http://commondatastorage.googleapis.com/chromium-browser-official/v8-3.16.4.1.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 pax-utils 0ace932c4045349c7fc1af0fe7091acf python-any-r1 f6b255f0bf44569e52128b09ad30fcec python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=20795d606e5d5bf3b8d60731ce03d33d
|
13
metadata/md5-cache/dev-python/chardet-2.0.1-r1
Normal file
13
metadata/md5-cache/dev-python/chardet-2.0.1-r1
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEFINED_PHASES=compile configure install prepare test unpack
|
||||
DEPEND=dev-python/python-exec[python_targets_python2_5?,python_targets_python2_6?,python_targets_python2_7?,python_targets_python3_1?,python_targets_python3_2?,python_targets_python3_3?,python_targets_pypy1_9?,python_targets_pypy2_0?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 )
|
||||
DESCRIPTION=Character encoding auto-detection in Python.
|
||||
EAPI=5
|
||||
HOMEPAGE=http://chardet.feedparser.org/ http://code.google.com/p/chardet/
|
||||
IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 python_targets_pypy2_0
|
||||
KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
|
||||
LICENSE=LGPL-2.1
|
||||
RDEPEND=dev-python/python-exec[python_targets_python2_5?,python_targets_python2_6?,python_targets_python2_7?,python_targets_python3_1?,python_targets_python3_2?,python_targets_python3_3?,python_targets_pypy1_9?,python_targets_pypy2_0?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 )
|
||||
SLOT=0
|
||||
SRC_URI=http://chardet.feedparser.org/download/python2-chardet-2.0.1.tgz http://chardet.feedparser.org/download/python3-chardet-2.0.1.tgz
|
||||
_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=bde0ccd0c0a1cb1d097202b443b9c9eb
|
|
@ -10,4 +10,4 @@ RDEPEND==dev-lang/python-2*
|
|||
SLOT=0
|
||||
SRC_URI=mirror://pypi/c/chardet/chardet-2.1.1.tar.gz
|
||||
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e
|
||||
_md5_=c67a3b1def08c1ee2aed93863844eb48
|
||||
_md5_=d2d341127d7c3ca801f3e12149c6b2a4
|
||||
|
|
12
metadata/md5-cache/games-arcade/cavezofphear-0.5.1
Normal file
12
metadata/md5-cache/games-arcade/cavezofphear-0.5.1
Normal file
|
@ -0,0 +1,12 @@
|
|||
DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack
|
||||
DEPEND=>=sys-libs/ncurses-5
|
||||
DESCRIPTION=A boulder dash / digger-like game for console using ncurses
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.x86.no/cavezofphear/
|
||||
KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=>=sys-libs/ncurses-5
|
||||
SLOT=0
|
||||
SRC_URI=http://www.x86.no/cavezofphear/phear-0.5.1.tar.bz2
|
||||
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=2d2831dda7239ded4c21bd6c2db108c6
|
12
metadata/md5-cache/games-board/gtkatlantic-0.4.3
Normal file
12
metadata/md5-cache/games-board/gtkatlantic-0.4.3
Normal file
|
@ -0,0 +1,12 @@
|
|||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack
|
||||
DEPEND=x11-libs/gtk+:2 dev-libs/libxml2 media-libs/libpng:0 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
|
||||
DESCRIPTION=Monopoly-like game that works with the monopd server
|
||||
EAPI=5
|
||||
HOMEPAGE=http://gtkatlantic.gradator.net/
|
||||
KEYWORDS=~amd64 ~ppc ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=x11-libs/gtk+:2 dev-libs/libxml2 media-libs/libpng:0
|
||||
SLOT=0
|
||||
SRC_URI=http://gtkatlantic.gradator.net/downloads/v0.4/gtkatlantic-0.4.3.tar.bz2
|
||||
_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils d40dc948067bd3db1c8ebf7d51897313 games e0a83e3f3f024b8c8ef7a8217d716cbf gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=20cfecf67cc8bd45c38fe95dd2ca0489
|
|
@ -10,4 +10,4 @@ RDEPEND=server? ( >=dev-db/sqlite-3.3.4 aac? ( >=media-libs/faad2-2.0 ) airplay?
|
|||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/xmms2/xmms2-0.8DrO_o.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=34c133f918a356ab82d050ed2a7a8778
|
||||
_md5_=f98ce96965e83afb7c681a4de0b77d4a
|
||||
|
|
14
metadata/md5-cache/media-tv/xbmc-12.0_rc3
Normal file
14
metadata/md5-cache/media-tv/xbmc-12.0_rc3
Normal file
|
@ -0,0 +1,14 @@
|
|||
DEFINED_PHASES=configure install postinst prepare setup unpack
|
||||
DEPEND=virtual/glu virtual/opengl app-arch/bzip2 app-arch/unzip app-arch/zip app-i18n/enca airplay? ( app-pda/libplist ) >=dev-lang/python-2.4 dev-libs/boost dev-libs/fribidi dev-libs/libcdio[-minimal] cec? ( >=dev-libs/libcec-2 ) dev-libs/libpcre[cxx] >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] dev-libs/yajl dev-python/simplejson media-libs/alsa-lib media-libs/flac media-libs/fontconfig media-libs/freetype >=media-libs/glew-1.5.6 media-libs/jasper media-libs/jbigkit >=media-libs/libass-0.9.7 bluray? ( media-libs/libbluray ) css? ( media-libs/libdvdcss ) media-libs/libmad media-libs/libmodplug media-libs/libmpeg2 media-libs/libogg media-libs/libpng projectm? ( media-libs/libprojectm ) media-libs/libsamplerate media-libs/libsdl[audio,opengl,video,X] alsa? ( media-libs/libsdl[alsa] ) >=media-libs/taglib-1.8 media-libs/libvorbis media-libs/sdl-gfx >=media-libs/sdl-image-1.2.10[gif,jpeg,png] media-libs/sdl-mixer media-libs/sdl-sound media-libs/tiff pulseaudio? ( media-sound/pulseaudio ) media-sound/wavpack || ( media-libs/libpostproc <media-video/libav-0.8.2-r1 media-video/ffmpeg ) >=virtual/ffmpeg-0.6[encode] rtmp? ( media-video/rtmpdump ) avahi? ( net-dns/avahi ) nfs? ( net-fs/libnfs ) webserver? ( net-libs/libmicrohttpd[messages] ) sftp? ( net-libs/libssh ) net-misc/curl samba? ( >=net-fs/samba-3.4.6[smbclient] ) bluetooth? ( net-wireless/bluez ) sys-apps/dbus sys-libs/zlib virtual/jpeg mysql? ( virtual/mysql ) x11-apps/xdpyinfo x11-apps/mesa-progs vaapi? ( x11-libs/libva[opengl] ) vdpau? ( || ( x11-libs/libvdpau >=x11-drivers/nvidia-drivers-180.51 ) virtual/ffmpeg[vdpau] ) x11-libs/libXinerama xrandr? ( x11-libs/libXrandr ) x11-libs/libXrender app-arch/xz-utils dev-lang/swig dev-util/gperf x11-proto/xineramaproto dev-util/cmake x86? ( dev-lang/nasm ) java? ( virtual/jre ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-2.7*[sqlite] =dev-lang/python-2.6*[sqlite] ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|
||||
DESCRIPTION=XBMC is a free and open source media-player and entertainment hub
|
||||
EAPI=4
|
||||
HOMEPAGE=http://xbmc.org/
|
||||
IUSE=airplay alsa altivec avahi bluetooth bluray cec css debug goom java joystick midi mysql nfs profile +projectm pulseaudio pvr +rsxs rtmp +samba sse sse2 sftp udev upnp vaapi vdpau webserver +xrandr
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=virtual/glu virtual/opengl app-arch/bzip2 app-arch/unzip app-arch/zip app-i18n/enca airplay? ( app-pda/libplist ) >=dev-lang/python-2.4 dev-libs/boost dev-libs/fribidi dev-libs/libcdio[-minimal] cec? ( >=dev-libs/libcec-2 ) dev-libs/libpcre[cxx] >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] dev-libs/yajl dev-python/simplejson media-libs/alsa-lib media-libs/flac media-libs/fontconfig media-libs/freetype >=media-libs/glew-1.5.6 media-libs/jasper media-libs/jbigkit >=media-libs/libass-0.9.7 bluray? ( media-libs/libbluray ) css? ( media-libs/libdvdcss ) media-libs/libmad media-libs/libmodplug media-libs/libmpeg2 media-libs/libogg media-libs/libpng projectm? ( media-libs/libprojectm ) media-libs/libsamplerate media-libs/libsdl[audio,opengl,video,X] alsa? ( media-libs/libsdl[alsa] ) >=media-libs/taglib-1.8 media-libs/libvorbis media-libs/sdl-gfx >=media-libs/sdl-image-1.2.10[gif,jpeg,png] media-libs/sdl-mixer media-libs/sdl-sound media-libs/tiff pulseaudio? ( media-sound/pulseaudio ) media-sound/wavpack || ( media-libs/libpostproc <media-video/libav-0.8.2-r1 media-video/ffmpeg ) >=virtual/ffmpeg-0.6[encode] rtmp? ( media-video/rtmpdump ) avahi? ( net-dns/avahi ) nfs? ( net-fs/libnfs ) webserver? ( net-libs/libmicrohttpd[messages] ) sftp? ( net-libs/libssh ) net-misc/curl samba? ( >=net-fs/samba-3.4.6[smbclient] ) bluetooth? ( net-wireless/bluez ) sys-apps/dbus sys-libs/zlib virtual/jpeg mysql? ( virtual/mysql ) x11-apps/xdpyinfo x11-apps/mesa-progs vaapi? ( x11-libs/libva[opengl] ) vdpau? ( || ( x11-libs/libvdpau >=x11-drivers/nvidia-drivers-180.51 ) virtual/ffmpeg[vdpau] ) x11-libs/libXinerama xrandr? ( x11-libs/libXrandr ) x11-libs/libXrender udev? ( sys-fs/udisks:0 sys-power/upower ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-2.7*[sqlite] =dev-lang/python-2.6*[sqlite] )
|
||||
REQUIRED_USE=pvr? ( mysql )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/xbmc/xbmc/archive/Frodo_rc3.tar.gz -> xbmc-12.0_rc3.tar.gz !java? ( mirror://gentoo/xbmc-12.0_rc3-generated-addons.tar.xz )
|
||||
_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python e5b3412fa9f03670a666c8a137bd1060 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=c7b59ab8dc60271585ae0c9b63bfe4c1
|
11
metadata/md5-cache/net-dialup/accel-ppp-1.7.9999
Normal file
11
metadata/md5-cache/net-dialup/accel-ppp-1.7.9999
Normal file
|
@ -0,0 +1,11 @@
|
|||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=postgres? ( dev-db/postgresql-base ) snmp? ( net-analyzer/net-snmp ) dev-libs/libpcre dev-libs/openssl:0 >=dev-util/cmake-2.8.8 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-vcs/git
|
||||
DESCRIPTION=High performance PPTP, PPPoE and L2TP server
|
||||
EAPI=5
|
||||
HOMEPAGE=http://accel-ppp.sourceforge.net/
|
||||
IUSE=debug doc postgres radius shaper snmp
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=postgres? ( dev-db/postgresql-base ) snmp? ( net-analyzer/net-snmp ) dev-libs/libpcre dev-libs/openssl:0
|
||||
SLOT=0
|
||||
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 3cb7a29aafd4b984d2bf12bc50abe5da eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=fa2432b9e1513886028a2f815a1ba585
|
|
@ -1,13 +0,0 @@
|
|||
DEFINED_PHASES=configure install
|
||||
DEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) xml? ( dev-libs/libxml2 ) virtual/pkgconfig numa? ( sys-process/numactl )
|
||||
DESCRIPTION=displays the hardware topology in convenient formats
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.open-mpi.org/projects/hwloc/
|
||||
IUSE=cairo debug +numa +pci svg static-libs xml X
|
||||
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux
|
||||
LICENSE=BSD
|
||||
RDEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) xml? ( dev-libs/libxml2 )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.open-mpi.org/software/hwloc/v1.3/downloads/hwloc-1.3.1.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=763966b980cf236de369576982d8c859
|
|
@ -1,13 +0,0 @@
|
|||
DEFINED_PHASES=configure install
|
||||
DEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) xml? ( dev-libs/libxml2 ) virtual/pkgconfig numa? ( sys-process/numactl )
|
||||
DESCRIPTION=displays the hardware topology in convenient formats
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.open-mpi.org/projects/hwloc/
|
||||
IUSE=cairo debug +numa +pci svg static-libs xml X
|
||||
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux
|
||||
LICENSE=BSD
|
||||
RDEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) xml? ( dev-libs/libxml2 )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.open-mpi.org/software/hwloc/v1.3/downloads/hwloc-1.3.2.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=3ba0a6745673ce77ba3c882e2b47100b
|
|
@ -1,13 +0,0 @@
|
|||
DEFINED_PHASES=configure install
|
||||
DEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) xml? ( dev-libs/libxml2 ) virtual/pkgconfig numa? ( sys-process/numactl )
|
||||
DESCRIPTION=displays the hardware topology in convenient formats
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.open-mpi.org/projects/hwloc/
|
||||
IUSE=cairo debug +numa +pci svg static-libs xml X
|
||||
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux
|
||||
LICENSE=BSD
|
||||
RDEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) xml? ( dev-libs/libxml2 )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.open-mpi.org/software/hwloc/v1.4/downloads/hwloc-1.4.1.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=ee080dc66679fd60f7feb5a639e1a1fb
|
|
@ -1,13 +0,0 @@
|
|||
DEFINED_PHASES=configure install
|
||||
DEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) xml? ( dev-libs/libxml2 ) virtual/pkgconfig numa? ( sys-process/numactl )
|
||||
DESCRIPTION=displays the hardware topology in convenient formats
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.open-mpi.org/projects/hwloc/
|
||||
IUSE=cairo debug +numa +pci svg static-libs xml X
|
||||
KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux
|
||||
LICENSE=BSD
|
||||
RDEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) xml? ( dev-libs/libxml2 )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.open-mpi.org/software/hwloc/v1.4/downloads/hwloc-1.4.2.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=6bb88ba3f8ccb584eb060048afff400e
|
|
@ -8,6 +8,6 @@ KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd
|
|||
LICENSE=BSD
|
||||
RDEPEND=sys-libs/ncurses cairo? ( x11-libs/cairo[X?,svg?] ) pci? ( sys-apps/pciutils ) plugins? ( sys-devel/libtool ) numa? ( sys-process/numactl ) xml? ( dev-libs/libxml2 )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.open-mpi.org/software/hwloc/v1.6/downloads/hwloc-1.6.tar.bz2
|
||||
SRC_URI=http://www.open-mpi.org/software/hwloc/v1.6/downloads/hwloc-1.6.1.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=452c553a3f8fd9be1d8c0308ad76ec3d
|
||||
_md5_=851bec267df982fd8211653e58937759
|
|
@ -6,9 +6,10 @@ HOMEPAGE=https://launchpad.net/keystone
|
|||
IUSE=+sqlite mysql postgres ldap python_targets_python2_6 python_targets_python2_7
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=dev-python/setuptools[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/eventlet dev-python/greenlet dev-python/iso8601[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/passlib dev-python/paste dev-python/pastedeploy dev-python/python-daemon dev-python/python-pam[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/routes >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.0.8 virtual/python-argparse[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sqlite? ( dev-python/sqlalchemy[sqlite] ) mysql? ( dev-python/sqlalchemy[mysql] ) postgres? ( dev-python/sqlalchemy[postgres] ) ldap? ( dev-python/python-ldap ) ( || ( sys-auth/keystone[sqlite] sys-auth/keystone[mysql] sys-auth/keystone[postgres] sys-auth/keystone[ldap] ) ) dev-python/python-exec[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 )
|
||||
RDEPEND=dev-python/setuptools[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/eventlet dev-python/greenlet dev-python/iso8601[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/passlib dev-python/paste dev-python/pastedeploy dev-python/python-daemon dev-python/python-pam[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/routes >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.0.8 virtual/python-argparse[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sqlite? ( dev-python/sqlalchemy[sqlite] ) mysql? ( dev-python/sqlalchemy[mysql] ) postgres? ( dev-python/sqlalchemy[postgres] ) ldap? ( dev-python/python-ldap ) dev-python/python-exec[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 )
|
||||
REQUIRED_USE=|| ( ldap mysql postgres sqlite )
|
||||
RESTRICT=test
|
||||
SLOT=folsom
|
||||
SRC_URI=http://launchpad.net/keystone/folsom/2012.2/+download/keystone-2012.2.tar.gz
|
||||
_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=8f14bb691e40052f5571dd12d359a489
|
||||
_md5_=469c40d2d157e79a375633280e5208c7
|
||||
|
|
|
@ -5,8 +5,9 @@ EAPI=5
|
|||
HOMEPAGE=https://launchpad.net/keystone
|
||||
IUSE=+sqlite mysql postgres ldap python_targets_python2_6 python_targets_python2_7
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=dev-python/setuptools[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/eventlet dev-python/greenlet dev-python/iso8601[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/passlib dev-python/paste dev-python/pastedeploy dev-python/python-daemon dev-python/python-pam[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/routes >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.0.8 virtual/python-argparse[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sqlite? ( dev-python/sqlalchemy[sqlite] ) mysql? ( dev-python/sqlalchemy[mysql] ) postgres? ( dev-python/sqlalchemy[postgres] ) ldap? ( dev-python/python-ldap ) ( || ( sys-auth/keystone[sqlite] sys-auth/keystone[mysql] sys-auth/keystone[postgres] sys-auth/keystone[ldap] ) ) dev-python/python-exec[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 )
|
||||
RDEPEND=dev-python/setuptools[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/eventlet dev-python/greenlet dev-python/iso8601[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/passlib dev-python/paste dev-python/pastedeploy dev-python/python-daemon dev-python/python-pam[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/routes >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.0.8 virtual/python-argparse[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sqlite? ( dev-python/sqlalchemy[sqlite] ) mysql? ( dev-python/sqlalchemy[mysql] ) postgres? ( dev-python/sqlalchemy[postgres] ) ldap? ( dev-python/python-ldap ) dev-python/python-exec[python_targets_python2_6?,python_targets_python2_7?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 )
|
||||
REQUIRED_USE=|| ( ldap mysql postgres sqlite )
|
||||
RESTRICT=test
|
||||
SLOT=folsom
|
||||
_eclasses_=distutils-r1 4de2bc5d5fcf225878bcf75551a1bd90 eutils d40dc948067bd3db1c8ebf7d51897313 git-2 e92e09651292b1bef5656592364550f7 multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 b9091432451f035281bf6fc17720e820 python-utils-r1 069a968fde0ceb8a9cd5c6a89d77cbc2 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=56bfd7dd0f0616ed0cfd2bb2e797038f
|
||||
_md5_=2abbd5184ceca7c72512167edee8c4b6
|
||||
|
|
|
@ -10,4 +10,4 @@ RDEPEND=selinux? ( sys-libs/libselinux ) extras? ( dev-libs/glib:2 dev-libs/gobj
|
|||
SLOT=0
|
||||
SRC_URI=mirror://gentoo/udev-171.tar.bz2 test? ( mirror://gentoo/udev-171-testsys.tar.bz2 ) mirror://gentoo/udev-gentoo-legacy-patchset-2.tar.bz2 mirror://gentoo/udev-171-gentoo-patchset-v1.tar.bz2 mirror://gentoo/udev-gentoo-scripts-7.1.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=ee9e1e5c2ac77a838422936b57942b28
|
||||
_md5_=67a4c624e92f99c929889a9ebaf14776
|
||||
|
|
|
@ -12,4 +12,4 @@ RESTRICT=test
|
|||
SLOT=0
|
||||
SRC_URI=http://www.freedesktop.org/software/systemd/systemd-197.tar.xz http://dev.gentoo.org/~williamh/dist/udev-197-patches-1.tar.bz2
|
||||
_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 libtool 2b273eea1976cfaed3449345d94331ac linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=9c3d008912e14f78b8f2b07f70b636c1
|
||||
_md5_=c54a813649f14b24fbfc16921ab20e01
|
||||
|
|
|
@ -10,4 +10,4 @@ RDEPEND=>=sys-apps/util-linux-2.20 acl? ( sys-apps/acl ) gudev? ( >=dev-libs/gli
|
|||
RESTRICT=test
|
||||
SLOT=0
|
||||
_eclasses_=autotools 5116b10b2150724f41b564f1cc863e47 eutils d40dc948067bd3db1c8ebf7d51897313 git-2 e92e09651292b1bef5656592364550f7 libtool 2b273eea1976cfaed3449345d94331ac linux-info 6923bbfed4371639315c56d17e2da90c multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 systemd 28706ddc21464b4ed255eee9fc70b516 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=a18d5f1837fcf1806ae84f1f7f144416
|
||||
_md5_=0f3b9df2d5ebccbaf89c37fb295dc2d3
|
||||
|
|
15
metadata/md5-cache/sys-kernel/git-sources-3.8_rc4
Normal file
15
metadata/md5-cache/sys-kernel/git-sources-3.8_rc4
Normal file
|
@ -0,0 +1,15 @@
|
|||
DEFINED_PHASES=compile install postinst postrm preinst setup test unpack
|
||||
DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
|
||||
DESCRIPTION=The very latest -git version of the Linux kernel
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.kernel.org
|
||||
IUSE=symlink build
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86
|
||||
LICENSE=GPL-2 freedist
|
||||
PDEPEND=!build? ( virtual/dev-manager )
|
||||
RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=3.8_rc4
|
||||
SRC_URI=mirror://kernel/linux/kernel/v3.x/testing/patch-3.8-rc4.bz2 mirror://kernel/linux/kernel/v3.x/linux-3.7.tar.bz2
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 kernel-2 dd451098928ff900df7c254820871c00 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=a3b129a363d2038e04bce6543b3d4254
|
15
metadata/md5-cache/sys-kernel/vanilla-sources-3.0.59
Normal file
15
metadata/md5-cache/sys-kernel/vanilla-sources-3.0.59
Normal file
|
@ -0,0 +1,15 @@
|
|||
DEFINED_PHASES=compile install postinst postrm preinst setup test unpack
|
||||
DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
|
||||
DESCRIPTION=Full sources for the Linux kernel
|
||||
EAPI=2
|
||||
HOMEPAGE=http://www.kernel.org
|
||||
IUSE=deblob symlink build deblob
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
|
||||
LICENSE=GPL-2 !deblob? ( freedist )
|
||||
PDEPEND=!build? ( virtual/dev-manager )
|
||||
RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=3.0.59
|
||||
SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.0.59.bz2 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 )
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 kernel-2 dd451098928ff900df7c254820871c00 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=4a282db175909d089b90f0dc3110e1bb
|
15
metadata/md5-cache/sys-kernel/vanilla-sources-3.4.26
Normal file
15
metadata/md5-cache/sys-kernel/vanilla-sources-3.4.26
Normal file
|
@ -0,0 +1,15 @@
|
|||
DEFINED_PHASES=compile install postinst postrm preinst setup test unpack
|
||||
DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
|
||||
DESCRIPTION=Full sources for the Linux kernel
|
||||
EAPI=2
|
||||
HOMEPAGE=http://www.kernel.org
|
||||
IUSE=deblob symlink build deblob
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
|
||||
LICENSE=GPL-2 !deblob? ( freedist )
|
||||
PDEPEND=!build? ( virtual/dev-manager )
|
||||
RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=3.4.26
|
||||
SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.4.26.bz2 mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-3.4 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-check -> deblob-check-3.4 )
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 kernel-2 dd451098928ff900df7c254820871c00 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=863335a90ff2500b6bb9e5c20766d81c
|
15
metadata/md5-cache/sys-kernel/vanilla-sources-3.7.3
Normal file
15
metadata/md5-cache/sys-kernel/vanilla-sources-3.7.3
Normal file
|
@ -0,0 +1,15 @@
|
|||
DEFINED_PHASES=compile install postinst postrm preinst setup test unpack
|
||||
DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 )
|
||||
DESCRIPTION=Full sources for the Linux kernel
|
||||
EAPI=2
|
||||
HOMEPAGE=http://www.kernel.org
|
||||
IUSE=deblob symlink build deblob
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
|
||||
LICENSE=GPL-2 !deblob? ( freedist )
|
||||
PDEPEND=!build? ( virtual/dev-manager )
|
||||
RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=3.7.3
|
||||
SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.7.3.bz2 mirror://kernel/linux/kernel/v3.x/linux-3.7.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.7.N/deblob-3.7 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.7.N/deblob-check -> deblob-check-3.7 )
|
||||
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 kernel-2 dd451098928ff900df7c254820871c00 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=7d72a2f4760b948e4c6982d95076c786
|
|
@ -1 +1 @@
|
|||
Fri, 18 Jan 2013 04:36:54 +0000
|
||||
Fri, 18 Jan 2013 09:06:55 +0000
|
||||
|
|
|
@ -1 +1 @@
|
|||
Fri Jan 18 04:36:52 UTC 2013
|
||||
Fri Jan 18 09:06:53 UTC 2013
|
||||
|
|
|
@ -1 +1 @@
|
|||
Fri, 18 Jan 2013 05:00:01 +0000
|
||||
Fri, 18 Jan 2013 09:30:01 +0000
|
||||
|
|
|
@ -1 +1 @@
|
|||
1358483701 Fri Jan 18 04:35:01 2013 UTC
|
||||
1358499901 Fri Jan 18 09:05:01 2013 UTC
|
||||
|
|
67
net-dialup/accel-ppp/accel-ppp-1.7.9999.ebuild
Normal file
67
net-dialup/accel-ppp/accel-ppp-1.7.9999.ebuild
Normal file
|
@ -0,0 +1,67 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/net-dialup/accel-ppp/accel-ppp-1.7.9999.ebuild,v 1.1 2013/01/18 07:07:41 pinkbyte Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
EGIT_REPO_URI="git://accel-ppp.git.sourceforge.net/gitroot/accel-ppp/accel-ppp"
|
||||
EGIT_BRANCH="1.7"
|
||||
inherit cmake-utils git-2 linux-info
|
||||
|
||||
DESCRIPTION="High performance PPTP, PPPoE and L2TP server"
|
||||
HOMEPAGE="http://accel-ppp.sourceforge.net/"
|
||||
SRC_URI=""
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS=""
|
||||
IUSE="debug doc postgres radius shaper snmp"
|
||||
|
||||
DEPEND="postgres? ( dev-db/postgresql-base )
|
||||
snmp? ( net-analyzer/net-snmp )
|
||||
dev-libs/libpcre
|
||||
dev-libs/openssl:0"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
DOCS=( README )
|
||||
CONFIG_CHECK="~CONFIG_L2TP ~CONFIG_PPPOE ~CONFIG_PPTP"
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e "/mkdir/d" \
|
||||
-e "/echo/d" \
|
||||
-e "s: RENAME accel-ppp.conf.dist::" accel-pppd/CMakeLists.txt || die 'sed on accel-pppd/CMakeLists.txt failed'
|
||||
|
||||
epatch_user
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# There must be also dev-libs/tomcrypt (TOMCRYPT) as crypto alternative to OpenSSL
|
||||
local mycmakeargs=(
|
||||
-DBUILD_DRIVER=FALSE
|
||||
-DCRYPTO=OPENSSL
|
||||
$(cmake-utils_use debug MEMDEBUG)
|
||||
$(cmake-utils_use debug VALGRIND)
|
||||
$(cmake-utils_use postgres LOG_PGSQL)
|
||||
$(cmake-utils_use radius RADIUS)
|
||||
$(cmake-utils_use shaper SHAPER)
|
||||
$(cmake-utils_use snmp NETSNMP)
|
||||
)
|
||||
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
|
||||
use doc && dodoc -r rfc
|
||||
|
||||
if use snmp; then
|
||||
insinto /usr/share/snmp/mibs
|
||||
doins accel-pppd/extra/net-snmp/ACCEL-PPP-MIB.txt
|
||||
fi
|
||||
|
||||
newinitd "${FILESDIR}"/${PN}.initd ${PN}d
|
||||
newconfd "${FILESDIR}"/${PN}.confd ${PN}d
|
||||
|
||||
dodir /var/log/accel-ppp
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
####################################################################
|
||||
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.14386 2013/01/17 19:20:18 pacho Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.14388 2013/01/18 06:57:08 xarthisius Exp $
|
||||
#
|
||||
# When you add an entry to the top of this file, add your name, the date, and
|
||||
# an explanation of why something is getting masked. Please be extremely
|
||||
|
@ -31,6 +31,11 @@
|
|||
|
||||
#--- END OF EXAMPLES ---
|
||||
|
||||
# Mike Gilbert <floppym@gentoo.org (18 Jan 2013)
|
||||
# Release made by unofficial maintainer. Drops support for Python 3 with
|
||||
# very few improvements. Should be replaced by dev-python/charade eventually.
|
||||
=dev-python/chardet-2.1.1
|
||||
|
||||
# Pacho Ramos <pacho@gentoo.org>
|
||||
# Dead since 2003, doesn't work with journaling filesystems.
|
||||
# Also collides with dev-util/smem (#288721). Removal in a month.
|
||||
|
@ -325,7 +330,7 @@ app-admin/webalizer-xtended
|
|||
# Necessary removal to get rid of very unstable sci-libs/lapack-atlas
|
||||
# Packages are in the science overlay
|
||||
# until sci-libs/atlas replacement make it to the main tree
|
||||
sci-astronomy/sextractor
|
||||
<sci-astronomy/sextractor-2.8.6-r1
|
||||
sci-astronomy/scamp
|
||||
|
||||
# Justin Lecher <jlec@gentoo.org> (13 Dec 2012)
|
||||
|
|
|
@ -1,6 +1,2 @@
|
|||
DIST hwloc-1.3.1.tar.bz2 2616262 SHA256 a38ab3f60995d8f511129499b558a22c3e8907b0a08ef02bb664ee9fc269cc70
|
||||
DIST hwloc-1.3.2.tar.bz2 2693821 SHA256 d4b68c191e8f82e2d105f415af66816fedfb81ed4170fc40658f9d7f600f5046
|
||||
DIST hwloc-1.4.1.tar.bz2 2699125 SHA256 a08850e640ef24f2a0b63aa336fa646755b9859b899c790f49178785806379f3
|
||||
DIST hwloc-1.4.2.tar.bz2 2703403 SHA256 bcb917dfa5b5ccc150f54afef74d77ee11cb4c6fcd402273d828b83c97655575 SHA512 5f65e18da0f1599d0b4ae0b868e404f8f0e9586a8a9b141fb3863a7d724bcada6ed2eb7327e06e30f01e70c66535be62ec3ca83dfff4d573adaa54b08897ae6b WHIRLPOOL c47c56fb26a092711c50e8bbf922aca66273c8d33dd74d9e871e551014683f77eb29e9132016504a6b6b06a8a610b8d88ea83260fd30e056bb3a37946ebcdb7d
|
||||
DIST hwloc-1.5.tar.bz2 2887977 SHA256 ba8519c27eb5637d184a0673a701265a94c4e8ab1ca6bfcf903bcd1f627474ea SHA512 eebd0dbb8181d9c67934b457ed4ca4526a2bbd8b59fb65c752b4709df2a69781e3b1f946ff749e72c29fb2fa4b9b316776fb5e732bc95ec75b6324ba66c23a92 WHIRLPOOL 00e56be78525bf44ec7ec111b5ab478a2f2fc424a60b019370dba60c6227db052b74730dead796df8a8fe712542a3cd9497bfffce09eeb2c885742b309755a77
|
||||
DIST hwloc-1.6.tar.bz2 3067679 SHA256 bc08c84cb37d6aa3f889ba142ec3e57d24ce9a18a4d2e25471e1e2e8f30aa678 SHA512 e54f5e9aa1248e773a3a18cc9567950feb2d9fc5c12092e28742160484f9651d861c13ad2d10ab9fa842b1a0fddb6c6ae9791ac23b5cba310ffa4e687197c6ac WHIRLPOOL eb0f54c60027fcdb259b3ca5f2512ae58e40148a86cc1a2ae1d26fbef1b19771f2a1670c80fba686b94bd5895b5bfeccbabb0e82b1895edd840cf5891fbe9eb6
|
||||
DIST hwloc-1.6.1.tar.bz2 3075453 SHA256 8bb0a13d70852442cfce8883a99113e9238e187a91b3160279e260a10048057b SHA512 9bf613c35e27d7e0e7e4aee39602e949dd035c84ceab37a716c48d9be25f319cd7888448c9771e8a8408dcf958370e9b54f7e1f764349fa5d39c2bd4358032ff WHIRLPOOL a319c94d306e18bd0f9a721eb637df667fc0831e2c84770255736205ba30abb9cc18e4b401cbbd3c419369b1c3aae638253bb826e973ff6c763a233c9c986742
|
||||
|
|
|
@ -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/sys-apps/hwloc/hwloc-1.3.1.ebuild,v 1.3 2012/05/04 09:17:27 jdhore Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit multilib versionator
|
||||
|
||||
MY_PV=v$(get_version_component_range 1-2)
|
||||
|
||||
DESCRIPTION="displays the hardware topology in convenient formats"
|
||||
HOMEPAGE="http://www.open-mpi.org/projects/hwloc/"
|
||||
SRC_URI="http://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux"
|
||||
IUSE="cairo debug +numa +pci svg static-libs xml X"
|
||||
|
||||
RDEPEND="sys-libs/ncurses
|
||||
cairo? ( x11-libs/cairo[X?,svg?] )
|
||||
pci? ( sys-apps/pciutils )
|
||||
xml? ( dev-libs/libxml2 )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
numa? ( sys-process/numactl )"
|
||||
|
||||
DOCS=( AUTHORS NEWS README VERSION )
|
||||
|
||||
src_configure() {
|
||||
export HWLOC_PKG_CONFIG=$(tc-getPKG_CONFIG) #393467
|
||||
econf \
|
||||
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
|
||||
$(use_enable cairo) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable pci) \
|
||||
$(use_enable static-libs static) \
|
||||
$(use_enable xml libxml2) \
|
||||
$(use_with X x) \
|
||||
--disable-silent-rules
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
use static-libs || rm "${D}"/usr/$(get_libdir)/lib${PN}.la
|
||||
}
|
|
@ -1,47 +0,0 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/hwloc-1.3.2.ebuild,v 1.2 2012/05/04 09:17:27 jdhore Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit multilib versionator
|
||||
|
||||
MY_PV=v$(get_version_component_range 1-2)
|
||||
|
||||
DESCRIPTION="displays the hardware topology in convenient formats"
|
||||
HOMEPAGE="http://www.open-mpi.org/projects/hwloc/"
|
||||
SRC_URI="http://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux"
|
||||
IUSE="cairo debug +numa +pci svg static-libs xml X"
|
||||
|
||||
RDEPEND="sys-libs/ncurses
|
||||
cairo? ( x11-libs/cairo[X?,svg?] )
|
||||
pci? ( sys-apps/pciutils )
|
||||
xml? ( dev-libs/libxml2 )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
numa? ( sys-process/numactl )"
|
||||
|
||||
DOCS=( AUTHORS NEWS README VERSION )
|
||||
|
||||
src_configure() {
|
||||
export HWLOC_PKG_CONFIG=$(tc-getPKG_CONFIG) #393467
|
||||
econf \
|
||||
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
|
||||
$(use_enable cairo) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable pci) \
|
||||
$(use_enable numa libnuma) \
|
||||
$(use_enable static-libs static) \
|
||||
$(use_enable xml libxml2) \
|
||||
$(use_with X x) \
|
||||
--disable-silent-rules
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
use static-libs || rm "${D}"/usr/$(get_libdir)/lib${PN}.la
|
||||
}
|
|
@ -1,47 +0,0 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/hwloc-1.4.1.ebuild,v 1.2 2012/05/04 09:17:27 jdhore Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit multilib versionator
|
||||
|
||||
MY_PV=v$(get_version_component_range 1-2)
|
||||
|
||||
DESCRIPTION="displays the hardware topology in convenient formats"
|
||||
HOMEPAGE="http://www.open-mpi.org/projects/hwloc/"
|
||||
SRC_URI="http://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux"
|
||||
IUSE="cairo debug +numa +pci svg static-libs xml X"
|
||||
|
||||
RDEPEND="sys-libs/ncurses
|
||||
cairo? ( x11-libs/cairo[X?,svg?] )
|
||||
pci? ( sys-apps/pciutils )
|
||||
xml? ( dev-libs/libxml2 )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
numa? ( sys-process/numactl )"
|
||||
|
||||
DOCS=( AUTHORS NEWS README VERSION )
|
||||
|
||||
src_configure() {
|
||||
export HWLOC_PKG_CONFIG=$(tc-getPKG_CONFIG) #393467
|
||||
econf \
|
||||
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
|
||||
$(use_enable cairo) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable pci) \
|
||||
$(use_enable numa libnuma) \
|
||||
$(use_enable static-libs static) \
|
||||
$(use_enable xml libxml2) \
|
||||
$(use_with X x) \
|
||||
--disable-silent-rules
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
use static-libs || rm "${D}"/usr/$(get_libdir)/lib${PN}.la
|
||||
}
|
|
@ -1,47 +0,0 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/hwloc-1.4.2.ebuild,v 1.2 2012/05/30 12:33:17 aballier Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit multilib versionator
|
||||
|
||||
MY_PV=v$(get_version_component_range 1-2)
|
||||
|
||||
DESCRIPTION="displays the hardware topology in convenient formats"
|
||||
HOMEPAGE="http://www.open-mpi.org/projects/hwloc/"
|
||||
SRC_URI="http://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux"
|
||||
IUSE="cairo debug +numa +pci svg static-libs xml X"
|
||||
|
||||
RDEPEND="sys-libs/ncurses
|
||||
cairo? ( x11-libs/cairo[X?,svg?] )
|
||||
pci? ( sys-apps/pciutils )
|
||||
xml? ( dev-libs/libxml2 )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
numa? ( sys-process/numactl )"
|
||||
|
||||
DOCS=( AUTHORS NEWS README VERSION )
|
||||
|
||||
src_configure() {
|
||||
export HWLOC_PKG_CONFIG=$(tc-getPKG_CONFIG) #393467
|
||||
econf \
|
||||
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
|
||||
$(use_enable cairo) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable pci) \
|
||||
$(use_enable numa libnuma) \
|
||||
$(use_enable static-libs static) \
|
||||
$(use_enable xml libxml2) \
|
||||
$(use_with X x) \
|
||||
--disable-silent-rules
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
use static-libs || rm "${D}"/usr/$(get_libdir)/lib${PN}.la
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/hwloc-1.6.ebuild,v 1.1 2012/12/06 19:52:10 xarthisius Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwloc/hwloc-1.6.1.ebuild,v 1.1 2013/01/18 06:52:18 xarthisius Exp $
|
||||
|
||||
EAPI=4
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/keystone-2012.2.ebuild,v 1.4 2013/01/16 21:19:33 mgorny Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/keystone-2012.2.ebuild,v 1.5 2013/01/18 07:34:03 prometheanfire Exp $
|
||||
|
||||
EAPI=5
|
||||
#test restricted becaues of bad requirements given (old webob for instance)
|
||||
|
@ -19,6 +19,7 @@ SLOT="folsom"
|
|||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="+sqlite mysql postgres ldap"
|
||||
#IUSE="+sqlite mysql postgres ldap test"
|
||||
REQUIRED_USE="|| ( ldap mysql postgres sqlite )"
|
||||
|
||||
#todo, seperate out rdepend via use flags
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
|
@ -39,14 +40,7 @@ RDEPEND="${DEPEND}
|
|||
sqlite? ( dev-python/sqlalchemy[sqlite] )
|
||||
mysql? ( dev-python/sqlalchemy[mysql] )
|
||||
postgres? ( dev-python/sqlalchemy[postgres] )
|
||||
ldap? ( dev-python/python-ldap )
|
||||
( || (
|
||||
sys-auth/keystone[sqlite]
|
||||
sys-auth/keystone[mysql]
|
||||
sys-auth/keystone[postgres]
|
||||
sys-auth/keystone[ldap]
|
||||
) )
|
||||
"
|
||||
ldap? ( dev-python/python-ldap )"
|
||||
# test? ( dev-python/Babel
|
||||
# dev-python/decorator
|
||||
# dev-python/eventlet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/keystone-9999.ebuild,v 1.6 2013/01/16 21:19:33 mgorny Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/keystone-9999.ebuild,v 1.7 2013/01/18 07:34:03 prometheanfire Exp $
|
||||
|
||||
EAPI=5
|
||||
#test restricted becaues of bad requirements given (old webob for instance)
|
||||
|
@ -19,6 +19,7 @@ SLOT="folsom"
|
|||
KEYWORDS=""
|
||||
IUSE="+sqlite mysql postgres ldap"
|
||||
#IUSE="+sqlite mysql postgres ldap test"
|
||||
REQUIRED_USE="|| ( ldap mysql postgres sqlite )"
|
||||
|
||||
#todo, seperate out rdepend via use flags
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
|
@ -39,14 +40,7 @@ RDEPEND="${DEPEND}
|
|||
sqlite? ( dev-python/sqlalchemy[sqlite] )
|
||||
mysql? ( dev-python/sqlalchemy[mysql] )
|
||||
postgres? ( dev-python/sqlalchemy[postgres] )
|
||||
ldap? ( dev-python/python-ldap )
|
||||
( || (
|
||||
sys-auth/keystone[sqlite]
|
||||
sys-auth/keystone[mysql]
|
||||
sys-auth/keystone[postgres]
|
||||
sys-auth/keystone[ldap]
|
||||
) )
|
||||
"
|
||||
ldap? ( dev-python/python-ldap )"
|
||||
# test? ( dev-python/Babel
|
||||
# dev-python/decorator
|
||||
# dev-python/eventlet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-171-r9.ebuild,v 1.6 2012/11/24 17:30:44 ssuominen Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-171-r9.ebuild,v 1.7 2013/01/18 06:24:05 ssuominen Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-197-r3.ebuild,v 1.8 2013/01/17 21:04:58 ssuominen Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-197-r3.ebuild,v 1.10 2013/01/18 06:42:22 ssuominen Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v 1.139 2013/01/17 21:04:58 ssuominen Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v 1.141 2013/01/18 06:42:22 ssuominen Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
|
|
|
@ -2,3 +2,4 @@ DIST linux-3.7.tar.bz2 83671392 SHA256 dc08d87a579fe2918362e6666e503a95a76296419
|
|||
DIST patch-3.8-rc1.bz2 7030947 SHA256 e425e7f5cf47a8d8a507dfb56dd2e9af1c9c4f6470c65ff4189ea81b106920c6 SHA512 1a90ed2be56a68648e64d53ea377f337c1ee4459303ba7a6ed00691cc4e38369252e1102bf49f05b3f4eec1c3e526408158ecefcafb715085bd79a682721292e WHIRLPOOL 4011dcaac28fc80338977a97d92641bf09982d48a29ab90152fda800f6635d3acdf3e57a6ab437399005337bf732d90f2aa27ff69f3f4316d96e95ff764cddac
|
||||
DIST patch-3.8-rc2.bz2 7080458 SHA256 2652857b3db5ca3f38a82fb622ea157148d64547b0ade48383d0542609133a59 SHA512 fae4a0c5d08fa79d13da15923e48ca9c1e04f07478ed3921c326f37b7a58c44b5b91f14a24b88ae569ce7dfae80272e98259edc7892f4a43ebbbf2d2ed9148f7 WHIRLPOOL 480cd38c6012d9d396762d267f5b0e0ae98201327feb0575a6742a266a5a8ad9d4929ae69e20478566f3007fa4c69353c8a5e6963387be2825e839a8da93e56a
|
||||
DIST patch-3.8-rc3.bz2 7327190 SHA256 d93873b1443ded5393fc623bd8a5eedebf418236a52500161008db32e82718cb SHA512 5d810242b3e2f54cb61d96463b12880bf031aaed504e84c96b2d76de5d66b488cda3af70199b20e9a506017ecf1418437127d3d21ceb3f4481ca77353285141b WHIRLPOOL a436a38167a9370015b5920768779f7861d30af195ab1eb27136954e4a7c4756745c05d0ecd834edf0ae9240ca3c0df798344f1cc9b41c64b7da0ce42e19d66d
|
||||
DIST patch-3.8-rc4.bz2 7419822 SHA256 7777202315e260e119e0c5c39fbef177e04f5c80769f559e6c19f21a78ae545f SHA512 2307c65bcd382810976acb87b0c06a45791429794eab6269d80e754b3a6c3743b6cf5fe1e3ea3d77ef478f93a7ee8407a8149c2a6b0beb7e1f00a5ea18994301 WHIRLPOOL 8bf3d8fc64c9ea59bd0362576bc485cd88741b87456333259a5408ef609c3ff56f483344b4f3a2d8eaa491c9e5594a95414a357433a9efadd965e69da52cad82
|
||||
|
|
35
sys-kernel/git-sources/git-sources-3.8_rc4.ebuild
Normal file
35
sys-kernel/git-sources/git-sources-3.8_rc4.ebuild
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/git-sources-3.8_rc4.ebuild,v 1.1 2013/01/18 08:25:06 ago Exp $
|
||||
|
||||
EAPI="4"
|
||||
UNIPATCH_STRICTORDER="yes"
|
||||
K_NOUSENAME="yes"
|
||||
K_NOSETEXTRAVERSION="yes"
|
||||
K_NOUSEPR="yes"
|
||||
K_SECURITY_UNSUPPORTED="yes"
|
||||
K_DEBLOB_AVAILABLE=0
|
||||
ETYPE="sources"
|
||||
CKV="${PVR/-r/-git}"
|
||||
|
||||
# only use this if it's not an _rc/_pre release
|
||||
[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
|
||||
inherit kernel-2
|
||||
detect_version
|
||||
|
||||
DESCRIPTION="The very latest -git version of the Linux kernel"
|
||||
HOMEPAGE="http://www.kernel.org"
|
||||
SRC_URI="${KERNEL_URI}"
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
|
||||
IUSE=""
|
||||
|
||||
K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
|
||||
experimental nature. If you have any issues, try a matching vanilla-sources
|
||||
ebuild -- if the problem is not there, please contact the upstream kernel
|
||||
developers at http://bugzilla.kernel.org and on the linux-kernel mailing list to
|
||||
report the problem so it can be fixed in time for the next kernel release."
|
||||
|
||||
pkg_postinst() {
|
||||
postinst_sources
|
||||
}
|
|
@ -22,13 +22,16 @@ DIST linux-3.7.tar.bz2 83671392 SHA256 dc08d87a579fe2918362e6666e503a95a76296419
|
|||
DIST patch-2.6.32.60.bz2 987764 SHA256 611dbc724cd43617baff4500b0c8470889e4c6071f6ab916bfee7d097783394c SHA512 8228a7a6f7264b1a20802411c13f0d194fd48f5f5965cb96bfac0410b2a945b53c8e458eddafa58247125d3ba04e17dd68636302b57654934046a8bc0538834f WHIRLPOOL 834a654a5cb261226c57295ea3c60f5e405b11197103c4cd8721ff78adb3bbc4ced2c757492ee3b70735c8c28dd0717bfafeb9181280034b764bae18f2ab47b0
|
||||
DIST patch-3.0.57.bz2 784491 SHA256 448d7bbea999729a24bc3ecce71cb5386360e7d8abda9beb33dfbe72d73f3bfc SHA512 9c7a0a69c027179734a7708a85cafad4813623c8c40d22dedf5d5a85cf434abd8c577341d9dcfd9ab40f3f729a7109855d4b7e294960f8f913efaabb976bf3bb WHIRLPOOL 0103a4b94f8411035d1a208a01d069b48f425b37a6a5dcdb66850f245b14fb6936c27283693f3c51757015eaba013df1141d8648695d33e2d57e1b547f03c53c
|
||||
DIST patch-3.0.58.bz2 795395 SHA256 a64cc2aaaab6710858a639605cb5c91cf5aebf6aa6b7e132e9a7d2d862e84a66 SHA512 35987dc7c958c05f553dd16e05052721eded3515fb6600ac988af5c27cac3c438ebaa259c3ef985f50192afc535e63a621021f16f0708bf57e9c444dbcd2a756 WHIRLPOOL 7c4b339e4e1c5db186d7580ddb22641edb3e5b0f7a7f43b7b6ead4297b89546ad971187729889678adc2f9e616cbd9153f3530244e1a4c1496bbbb03ac13851e
|
||||
DIST patch-3.0.59.bz2 817348 SHA256 563f1b084b8f08a4b73d86657514a866157673b9e72ad039347f4300d6ff4a17 SHA512 5cb514df10a1f74ad2e77661677e4c1d23742402e36fb6332a1b69174360e6ac28a4408d502939e1d87713ace26820f24758efa42f7a08eaa42caa6e5b7c2ce8 WHIRLPOOL 6b498a1823d130f2bb04c6a5ad54d8e69a782a0714b5e0c51a5a9792ce0e94c54cc7aa4d69554211411da328d750afc2922d612fe780048c7ac68c93ceef7ed6
|
||||
DIST patch-3.2.35.bz2 707769 SHA256 c8b6e328b36dd14d9dfff7479d6dad6f5a601e63ab8498335f917daa6450cf6c SHA512 5ab1937eca7a95bc79a6a22b1114a100a92274b81e71078bffaf778fa2119a3e3d456f9027c76a55d278a298013b8be40ee0310ee9142623e4396b0ad18e45d2 WHIRLPOOL 5d4a3bf618bcffcbc643bfed656294a7f8c192ad3c5157b7a9c4dd51530f6521d0400b6f3ea41dd384e39d2f6f5520db75b91ce4dbacc10b2854623d5e3bd9cf
|
||||
DIST patch-3.2.36.bz2 747896 SHA256 c34e912a50c5b5c124ded6b497ba457d3d3411db4b89565819e9786e0019058b SHA512 9cf77bca0e8960b8411c51f5abad2d183e82c537079a5e3cf47a41c9086cb6ddc434792481651ab3a5deb85101a38beef808c77427752a5074a00998315fdd9b WHIRLPOOL 4b47bb24842c13e26e140d61842f68851f1509636eb8bc9918887a4cc71f851fcd6788d109903037d09a1131dc41ef8b6f17b97bd9c2b1d9121d0286e72e6c72
|
||||
DIST patch-3.2.37.bz2 761390 SHA256 c18a41baee6e3357fce16800d7b3ae786b7960a8a587be20e373e18319ae4159 SHA512 def6dbabd62c51bf60a2d72cc6bbd7cf9d99c39b8989c823a34ad0225a6f9ac4f68768ebb1e5f7f4bbd9e86ee8a4613a1710da72b0d6aab8e1fe6aa1a14e8351 WHIRLPOOL 62fde49729abe939ee3b235558736b384a5b0dc4f354d67e9256fbe481b0a94daa82a79c281d03d15642c94e28c78953feb96378f0dd3b8f2e014f75ec7fa656
|
||||
DIST patch-3.4.24.bz2 461671 SHA256 395b53b8a08d5e7df4b145928492fb0717e5d969c0fd87be3836407cd4f3d320 SHA512 768e6bb62c8cfd6d9c8a2bf9231a91a0a89ec08758d540e691f31401e24954a4a66746513c6ecb6dc2297820056c2903c359de9e41ec343d4cc23bce57b89aa2 WHIRLPOOL 361f0a12ecf2022728cf6bb29527364a939649c90f31a92c1fb28eb2614ba778e5558ab85622e420d04540cb4ea702b240cf4ed2ec1c067b082c4323e7c3229a
|
||||
DIST patch-3.4.25.bz2 484725 SHA256 c4d99bb1fe8e6ba834727ccf605e5a433f06bf44140e0766ad211cad2c0a8814 SHA512 a9f9dd5d5e9bd3090cbefe4605dc0aa2ba0d1ffa9998177bc57d6dac887eead44c3e97fb4e8dc9908ac95182e9941f4789daa4c3c3eb0f84d3d473b10e901c98 WHIRLPOOL be9fcf9438602453a80a53af17e945775a8b0987e0a88cf5723a503dd80cad3064d584efff85f6713857d4cf0b3b3c20a6553185ed3b802adfc78ee76ac6b6b2
|
||||
DIST patch-3.4.26.bz2 528063 SHA256 8e6e9609b2c939337f08f4aaf6e41ab7221ce207db96ab0616fd74a47793ac47 SHA512 d3ef430a247fda3615ece3f295b5c94c751decbb39c4a78702e160aa39fef4d163a8a9de26093afff9edb21dc0a04d0b88c82607c3d42d9a539e850334a8d704 WHIRLPOOL 445ffa5ac60505a6954e184c711a4322a6652dd2534e06165d72a6ad7e169cd9d30430f0949076f52d0b6d8747c9fd31ea889b8f8d551c38337bf6a1c74df19b
|
||||
DIST patch-3.5.7.bz2 241834 SHA256 c064888f2c815353b2ca483935a9e79572e2d033559b73971f7f32c8eaa4b66f SHA512 024bfbd23905805bf6ce8326b9e69b2d9cd539038cc8c00f3145b8a482caa6eec3993771c69800784ebab0d9c3d43910a9bd5e561012c67df44f663cfd61afc0 WHIRLPOOL 98239024aa4a702aa80fd53b2efb8614ab64eb23c2b35aeb75bc858ca3df4c05f986dd517f455c8fa04ce05079bd03ac1bc974b873e12f431fa773d7766f7015
|
||||
DIST patch-3.6.10.bz2 215423 SHA256 f5204e7f720d7e0a8f6770f4a335ca2269fed3e198bfd598a303cb0cc51b5b1e SHA512 5de981c7f74c4a3fbba6b9a712a2f6f2fda3380f4c7bf12894fb1d71592b1a1e7a02d7d8575f68606dfd0e3907c621fce617ff047e386b4d6df19c76ca89a551 WHIRLPOOL 78524510e98ba0129121098a4405c83c95f671198c8e167da3d52403d84e508da11ca1562ee4d6f5f3fe7057d5cfabd4275e4fe9d848db73a3f6b9533d6dfe0f
|
||||
DIST patch-3.6.11.bz2 229142 SHA256 bd25c577b623468286d228ef5e09f4126e1c16ed22fb1cfeebc80e47a40b1de1 SHA512 bd59c0cf8a1208161633344444de4e4b8ef1d536ab4c095cbf402dded968daa9b0cccf35eeaf4ec243a66de5fdfe84b3e5755f972854559af38221614b1c6665 WHIRLPOOL 67cd2b7a40407de46c1e9308ef3807a07e5df7338c7cc8dd08c380ece42c20d5e34acafde2861e3bdeced71523e764421c633172f563d39840f54130dabacb3e
|
||||
DIST patch-3.7.1.bz2 10095 SHA256 740c6be1b5cce242684e8979b5514716c5e914b12417a1e6400a0c5e304653e5 SHA512 ad38a2eb58792f33bdf1a666c45590744aee4a7b60e0c009d95232b143bd66a97af43dbc0789211aaa574557c98f443d50f21a1f92cf8fe5cc9915c1cee9f2c4 WHIRLPOOL eefc4a0d5681ba8b91eb4ceea258e57bc06b1b65633e32516a9a2c385b1083bbce2217cee0fc2812a145e5b05a6a8e49265bf751fccf58ff3b033b0cacc45c1c
|
||||
DIST patch-3.7.2.bz2 50031 SHA256 f4c94ccc8f9d7d6f6750c914ce0960c8b5acfe204866d7d8996afd6946288212 SHA512 7724634f6576d7cb6ebdac31d235770279b2a747895e09dbdc1bc8411442d089aebc46d34575a83b360ab440db1e3624ac4b1dddbda00a5503f55cf9905de6f9 WHIRLPOOL d4aaf0b538a6fea1e9146e6e9881011eaabdbd6493b7a1a216c592fbe18b8c63d12d8d551b3d330b2a70c13e8d04f8b512594e03b903a3fdb4e1c440e2a5eb8d
|
||||
DIST patch-3.7.3.bz2 124573 SHA256 942b7979a15e45dd5e43b2ad3d5a8bde22ce0ffe7329a2eb1af190d96bb4cf92 SHA512 8d6c69db1859f20e9c5f6552f516cd727119956129e045f14a575eef290edd38dfc407d2673ce25be8069e4d1948a95129cfe776bd7ff9c5600d7f1c19c43832 WHIRLPOOL 51ae4164658e1675b07e502a731fac1eaeaacc38120b4ecc0c72eb27309f477593e62e89def2de2f875e033935678708652527e381a72da3ae7f83934c608dee
|
||||
|
|
19
sys-kernel/vanilla-sources/vanilla-sources-3.0.59.ebuild
Normal file
19
sys-kernel/vanilla-sources/vanilla-sources-3.0.59.ebuild
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.0.59.ebuild,v 1.1 2013/01/18 08:27:14 ago Exp $
|
||||
|
||||
EAPI="2"
|
||||
K_NOUSENAME="yes"
|
||||
K_NOSETEXTRAVERSION="yes"
|
||||
K_SECURITY_UNSUPPORTED="1"
|
||||
K_DEBLOB_AVAILABLE="1"
|
||||
ETYPE="sources"
|
||||
inherit kernel-2
|
||||
detect_version
|
||||
|
||||
DESCRIPTION="Full sources for the Linux kernel"
|
||||
HOMEPAGE="http://www.kernel.org"
|
||||
SRC_URI="${KERNEL_URI}"
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
IUSE="deblob"
|
19
sys-kernel/vanilla-sources/vanilla-sources-3.4.26.ebuild
Normal file
19
sys-kernel/vanilla-sources/vanilla-sources-3.4.26.ebuild
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.4.26.ebuild,v 1.1 2013/01/18 08:28:14 ago Exp $
|
||||
|
||||
EAPI="2"
|
||||
K_NOUSENAME="yes"
|
||||
K_NOSETEXTRAVERSION="yes"
|
||||
K_SECURITY_UNSUPPORTED="1"
|
||||
K_DEBLOB_AVAILABLE="1"
|
||||
ETYPE="sources"
|
||||
inherit kernel-2
|
||||
detect_version
|
||||
|
||||
DESCRIPTION="Full sources for the Linux kernel"
|
||||
HOMEPAGE="http://www.kernel.org"
|
||||
SRC_URI="${KERNEL_URI}"
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
IUSE="deblob"
|
19
sys-kernel/vanilla-sources/vanilla-sources-3.7.3.ebuild
Normal file
19
sys-kernel/vanilla-sources/vanilla-sources-3.7.3.ebuild
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.7.3.ebuild,v 1.1 2013/01/18 08:29:12 ago Exp $
|
||||
|
||||
EAPI="2"
|
||||
K_NOUSENAME="yes"
|
||||
K_NOSETEXTRAVERSION="yes"
|
||||
K_SECURITY_UNSUPPORTED="1"
|
||||
K_DEBLOB_AVAILABLE="1"
|
||||
ETYPE="sources"
|
||||
inherit kernel-2
|
||||
detect_version
|
||||
|
||||
DESCRIPTION="Full sources for the Linux kernel"
|
||||
HOMEPAGE="http://www.kernel.org"
|
||||
SRC_URI="${KERNEL_URI}"
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
IUSE="deblob"
|
Loading…
Reference in a new issue