parent
f46db03da1
commit
cddea86799
@ -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
|
||||
|
@ -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
|
||||
}
|
@ -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 +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
|
||||
|
@ -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
|
@ -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
|
||||
}
|
@ -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
|
@ -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
|
@ -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}-*/
|
@ -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
|
||||
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
||||
|
@ -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,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
|
||||
|
@ -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
|
||||
}
|
@ -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"
|
@ -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"
|
@ -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 new issue