parent
bc6b4833b2
commit
ee59b44941
@ -0,0 +1,73 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.11.ebuild,v 1.1 2013/06/14 06:42:08 tomka Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_DEPEND="2:2.6"
|
||||
PYTHON_USE_WITH="sqlite"
|
||||
|
||||
inherit eutils python
|
||||
|
||||
DESCRIPTION="A spaced-repetition memory training program (flash cards)"
|
||||
HOMEPAGE="http://ichi2.net/anki/"
|
||||
SRC_URI="http://ankisrs.net/download/mirror/${P}.tgz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="latex +recording +sound"
|
||||
|
||||
RDEPEND="dev-python/PyQt4[X,svg,webkit]
|
||||
>=dev-python/httplib2-0.7.4
|
||||
dev-python/beautifulsoup:python-2
|
||||
recording? ( media-sound/lame
|
||||
>=dev-python/pyaudio-0.2.4 )
|
||||
sound? ( media-video/mplayer )
|
||||
latex? ( app-text/texlive
|
||||
app-text/dvipng )"
|
||||
DEPEND=""
|
||||
|
||||
pkg_setup(){
|
||||
python_set_active_version 2
|
||||
python_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# Need send2trash since its not yet available in Gentoo
|
||||
cp -r thirdparty/send2trash .
|
||||
rm -r thirdparty || die
|
||||
python_convert_shebangs -r 2 .
|
||||
}
|
||||
|
||||
# Nothing to configure or compile
|
||||
src_configure() {
|
||||
true;
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
true;
|
||||
}
|
||||
|
||||
src_install() {
|
||||
exeinto /usr/bin/
|
||||
doexe anki/anki
|
||||
|
||||
doicon ${PN}.png
|
||||
domenu ${PN}.desktop
|
||||
doman ${PN}.1
|
||||
|
||||
dodoc README README.development
|
||||
insinto "$(python_get_sitedir)"
|
||||
doins -r aqt anki send2trash
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
if has_version "<app-misc/anki-2" ; then
|
||||
elog "Anki 2 is a rewrite of Anki with many new features and"
|
||||
elog "a new database format. On the first run your decks are"
|
||||
elog "converted to the new format and a backup of your Anki-1"
|
||||
elog "decks is created. Please read the following:"
|
||||
elog "http://ankisrs.net/anki2.html"
|
||||
fi
|
||||
}
|
@ -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/dev-libs/libpipeline/libpipeline-1.2.4.ebuild,v 1.1 2013/06/14 04:26:31 radhermit Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit autotools-utils
|
||||
|
||||
DESCRIPTION="a pipeline manipulation library"
|
||||
HOMEPAGE="http://libpipeline.nongnu.org/"
|
||||
SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
|
||||
IUSE="static-libs test"
|
||||
|
||||
DEPEND="virtual/pkgconfig
|
||||
test? ( dev-libs/check )"
|
@ -0,0 +1,32 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/gdata-2.0.17-r1.ebuild,v 1.1 2013/06/14 08:22:31 idella4 Exp $
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy2_0 )
|
||||
PYTHON_REQ_USE="ssl(+),xml(+)"
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_P="gdata-${PV}"
|
||||
|
||||
DESCRIPTION="Python client library for Google data APIs"
|
||||
HOMEPAGE="http://code.google.com/p/gdata-python-client/ http://pypi.python.org/pypi/gdata"
|
||||
SRC_URI="http://gdata-python-client.googlecode.com/files/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
|
||||
IUSE="examples"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
python_test() {
|
||||
# run_service_tests.py requires interaction (and a valid Google account), so skip it.
|
||||
"${PYTHON}" tests/run_data_tests.py -v || die "Test failed under ${EPYTHON}"
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use examples && local EXAMPLES=( samples/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/pytools/pytools-2013.5.ebuild,v 1.1 2013/06/14 06:18:16 jlec Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A collection of tools missing from the Python standard library"
|
||||
HOMEPAGE="http://mathema.tician.de/software/pytools"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
|
||||
DEPEND="
|
||||
>=dev-python/setuptools-0.7.2[${PYTHON_USEDEP}]
|
||||
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
|
||||
RDEPEND=""
|
||||
|
||||
python_test() {
|
||||
py.test || die "Tests fail with ${EPYTHON}"
|
||||
}
|
@ -1,5 +1,15 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
AUX pyvtk-0.4.74.patch 972 SHA256 34a197ba98c8d88e704526f435c57915acde17557542ade76a99fa280ce85116 SHA512 697f38b9df00528ef1e82fe8302901b92a6f2ff4e38af1bdb45e8c47821b13248a0c79dabfa485eaf2e9b9fa256fac96381e8dcfa76f364e2a8b1a94beecda91 WHIRLPOOL 54b59b40856a4737dd2459693222d9913525ad99a92acb4eab3b685f466f205ae12990ad6d152a7e6265c600a351be62b90c1a4221b80a8776e96d58f944d28e
|
||||
DIST PyVTK-0.4.74.tar.gz 25700 SHA256 a34cc4660a85f4828bedf28ff2b4c95baad98fc8f79e2647c59b5ea66c9250c7 SHA512 c3b29dd067339c1708f9757b83a127cbe008b291265181272b69a85c0348bc1388c4914acc24efdefda0421a601eede10af762753e683fbd0518361035313098 WHIRLPOOL 2512351725cbfa744df521b3a4e44179a521a131f3fdcbee78ac6cdbfa7c7c3997a50665b1264d9cd9b9f18e5403854e85eb76c65dea640f1b888da9c66e6b17
|
||||
EBUILD pyvtk-0.4.74.ebuild 675 SHA256 06b3d41c4dacdfa859613f450edaa41df87523a85941cc39c5ed12e1f056865a SHA512 2e72b659323481c1d9d082c30154795f3d4fb3353c4147e5128621bdb1470a6cd1dced061e2df3aa2f3cad89ba2f57b900781f78e04840c65973e3dc20ae82ca WHIRLPOOL da671d525c9ce66b1e9135cc21c9768db2815137ae39f748dd895d21c4f75553e94b89b558c957e5430b3ec20a5a961c87e894549a2ad792df938fbef30f3931
|
||||
MISC ChangeLog 371 SHA256 3e4066b28d9c1b397d003a4454703ff54daf3b6fea443fa720f9403355a58ea6 SHA512 917f1a4b733ea83ac94449ab84ef7ea30c51bbe4e2aba7b996d5ac8a6836082e90b34559067a81981ac9d62890f0e7942e3b53392558d77dd5d232635ea8667a WHIRLPOOL e7ae4682153d991f2d3068c73ed1803058a07e038e0f948938644979a46e6dc4114932250229eefb75bf03c6ebb06f81fc09433f097238adfa4d29fe3703992d
|
||||
MISC metadata.xml 212 SHA256 509ca9b4863734d98cb9d1bfe375c56a4d6225151ff8d0b95e9c05497a1e609a SHA512 5ae0a4d452846ad031eb476a2622f6e72fe829162671c191cbc9b889d3a95c6c3a88b5cd95fb52014cf17defac085080977b230cf37c7c3a25488ba06e6588e1 WHIRLPOOL 56d01320ee2106737813fa18f4c94b1ca3e3c36b3f0b3863227087a6d3910f26f0974d3f0fc75ef90a44389c6ed1494ff97febede73ee62c7b09b535391fcadd
|
||||
EBUILD pyvtk-0.4.74.ebuild 592 SHA256 768daebeb05ca50462bb9b7f08e277259fd011bf7757902c580af9e6362b95d5 SHA512 9b7ce83a0714d51a1572df0b96fa6cd531289b731f28b837ed5e918b12008863637d535baefc85c73acfca6ca967c7e6866743545fca6f3931a40d9e97bbfa49 WHIRLPOOL 58686c225c64ed21bdb31f867aec129a29fd82e9817129e4c14052714817d16b30ddbce01139960cfa6517226d1485ee6018e6df01368cbf19e43dc6e545319f
|
||||
MISC ChangeLog 497 SHA256 2c2131d91f80a6e844b9dcf196596a74076ede9f210a085d0eb3d6b03cc47cff SHA512 153324550186dda562234711801c1c5be9b071bd53d16c50d675e0a4121410a28edd456df84698f04df83bffd0ebf09849771438c597786302e2b7056958f3a0 WHIRLPOOL 14c614743be9343c9447f55fb9f30193fb907ed7baf7125c00a6174e7f532bf21fd3c00c3f814fb8301032eef8369ebd225224cc49924be86c87bd6d714a4216
|
||||
MISC metadata.xml 224 SHA256 84b014a026c2945b1b4c6eda4a4576b09039b36c27c2f9f8920ae146a8acfa3e SHA512 3b70a09392d7a939bc59e483e63789152e8dc73351dc682548a47db282224b5d9df7eac8c51bca9847e0b647f88fe2a1e4059ffe262c89a84002a13507fb3586 WHIRLPOOL 078ad63719dd7c12015a2e69f1f00322eda7e4a85f8499b89779a9bdedc92e11bb6c8cb28d6cbdc61c144fe5f22b11264d65a06cc2e67d09a0e4ef37529df71a
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0.20 (GNU/Linux)
|
||||
|
||||
iEYEAREKAAYFAlG66PMACgkQgAnW8HDreRZYLgCcDUAPJcDLQd4B0lO5MeP3NNfe
|
||||
9VYAmwbdyBRyMoZ2zMV7j3Zv3sWmYjHt
|
||||
=ZVUd
|
||||
-----END PGP SIGNATURE-----
|
||||
|
@ -1,6 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>sci</herd>
|
||||
<maintainer><email>jlec@gentoo.org</email></maintainer>
|
||||
<herd>sci</herd>
|
||||
<maintainer>
|
||||
<email>jlec@gentoo.org</email>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
|
@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/ujson/ujson-1.33.ebuild,v 1.1 2013/06/14 08:48:17 swegener Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
# One test; FAIL: test_encodeToUTF8 (__main__.UltraJSONTests) under py2.5.
|
||||
# Fix and repair and re-insert if it's REALLY needed
|
||||
PYTHON_COMPAT=( python{2_6,2_7,3_2} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Ultra fast JSON encoder and decoder for Python"
|
||||
HOMEPAGE="http://pypi.python.org/pypi/ujson/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
app-arch/unzip"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
python_test() {
|
||||
# See setup.py; line 72. Again "${S}" is used for reading tests
|
||||
# Since py3_2 is first in the queue it needs its own copy
|
||||
# or else all py2s to follow will be reading read py3 tests
|
||||
if [[ "${EPYTHON}" == 'python3.2' ]]; then
|
||||
cd "${BUILD_DIR}"/lib || die
|
||||
cp -a "${S}"/tests/ . || die
|
||||
2to3 -w tests/tests.py
|
||||
"${PYTHON}" tests/tests.py || die
|
||||
rm -rf tests/ || die
|
||||
else
|
||||
"${PYTHON}" tests/tests.py || die
|
||||
fi
|
||||
}
|
@ -0,0 +1,354 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.0.7.ebuild,v 1.1 2013/06/14 09:37:10 lu_zero Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
SCM=""
|
||||
if [ "${PV%9999}" != "${PV}" ] ; then
|
||||
SCM=git-2
|
||||
EGIT_BOOTSTRAP="bootstrap"
|
||||
if [ "${PV%.9999}" != "${PV}" ] ; then
|
||||
EGIT_REPO_URI="git://git.videolan.org/vlc/vlc-${PV%.9999}.git"
|
||||
else
|
||||
EGIT_REPO_URI="git://git.videolan.org/vlc.git"
|
||||
fi
|
||||
fi
|
||||
|
||||
inherit eutils multilib autotools toolchain-funcs flag-o-matic ${SCM}
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
MY_PV="${MY_PV/-beta/-test}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
PATCHLEVEL="101"
|
||||
|
||||
DESCRIPTION="VLC media player - Video player and streamer"
|
||||
HOMEPAGE="http://www.videolan.org/vlc/"
|
||||
if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
|
||||
SRC_URI=""
|
||||
elif [[ "${MY_P}" == "${P}" ]]; then
|
||||
SRC_URI="http://download.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.xz"
|
||||
else
|
||||
SRC_URI="http://download.videolan.org/pub/videolan/testing/${MY_P}/${MY_P}.tar.xz"
|
||||
fi
|
||||
|
||||
SRC_URI="${SRC_URI}
|
||||
mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2
|
||||
"
|
||||
|
||||
LICENSE="LGPL-2.1 GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
if [ "${PV%9999}" = "${PV}" ] ; then
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 -sparc ~x86 ~amd64-fbsd ~x86-fbsd"
|
||||
else
|
||||
KEYWORDS=""
|
||||
fi
|
||||
IUSE="a52 aac aalib alsa altivec atmo +audioqueue avahi +avcodec
|
||||
+avformat bidi bluray cdda cddb dbus dc1394 debug dirac direct2d
|
||||
directfb directx dshow dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode
|
||||
fbosd fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls
|
||||
growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify
|
||||
libproxy libsamplerate libtiger linsys libtar lirc live lua +macosx
|
||||
+macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext
|
||||
+macosx-qtkit +macosx-vout matroska media-library mmx modplug mp3 mpeg
|
||||
mtp musepack ncurses neon ogg omxil opengl opus optimisememory oss png
|
||||
portaudio +postproc projectm pulseaudio pvr +qt4 rtsp run-as-root samba
|
||||
schroedinger sdl sdl-image shine shout sid skins speex sqlite sse svg
|
||||
+swscale switcher taglib theora truetype twolame udev upnp vaapi v4l
|
||||
vcdx vlm vorbis waveout wingdi wma-fixed +X x264 +xcb xml
|
||||
xosd xv zvbi"
|
||||
|
||||
RDEPEND="
|
||||
>=sys-libs/zlib-1.2.5.1-r2[minizip]
|
||||
a52? ( >=media-libs/a52dec-0.7.4-r3 )
|
||||
aalib? ( media-libs/aalib )
|
||||
aac? ( >=media-libs/faad2-2.6.1 )
|
||||
alsa? ( >=media-libs/alsa-lib-1.0.23 )
|
||||
avahi? ( >=net-dns/avahi-0.6[dbus] )
|
||||
avcodec? ( virtual/ffmpeg )
|
||||
avformat? ( virtual/ffmpeg )
|
||||
bidi? ( >=dev-libs/fribidi-0.10.4 )
|
||||
bluray? ( >=media-libs/libbluray-0.2.1 )
|
||||
cddb? ( >=media-libs/libcddb-1.2.0 )
|
||||
dbus? ( >=sys-apps/dbus-1.0.2 )
|
||||
dc1394? ( >=sys-libs/libraw1394-2.0.1 >=media-libs/libdc1394-2.0.2 )
|
||||
dirac? ( >=media-video/dirac-0.10.0 )
|
||||
directfb? ( dev-libs/DirectFB sys-libs/zlib )
|
||||
dts? ( media-libs/libdca )
|
||||
dvbpsi? ( >=media-libs/libdvbpsi-0.2.1 )
|
||||
dvd? ( media-libs/libdvdread >=media-libs/libdvdnav-0.1.9 )
|
||||
egl? ( virtual/opengl )
|
||||
elibc_glibc? ( >=sys-libs/glibc-2.8 )
|
||||
flac? ( media-libs/libogg >=media-libs/flac-1.1.2 )
|
||||
fluidsynth? ( media-sound/fluidsynth )
|
||||
fontconfig? ( media-libs/fontconfig )
|
||||
gcrypt? ( >=dev-libs/libgcrypt-1.2.0 )
|
||||
gme? ( media-libs/game-music-emu )
|
||||
gnome? ( gnome-base/gnome-vfs )
|
||||
gnutls? ( >=net-libs/gnutls-2.0.0 )
|
||||
ieee1394? ( >=sys-libs/libraw1394-2.0.1 >=sys-libs/libavc1394-0.5.3 )
|
||||
ios-vout? ( virtual/opengl )
|
||||
jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1 )
|
||||
kate? ( >=media-libs/libkate-0.1.1 )
|
||||
libass? ( >=media-libs/libass-0.9.8 media-libs/fontconfig )
|
||||
libcaca? ( >=media-libs/libcaca-0.99_beta14 )
|
||||
libnotify? ( x11-libs/libnotify x11-libs/gtk+:2 )
|
||||
libproxy? ( net-libs/libproxy )
|
||||
libsamplerate? ( media-libs/libsamplerate )
|
||||
libtar? ( >=dev-libs/libtar-1.2.11-r3 )
|
||||
libtiger? ( media-libs/libtiger )
|
||||
linsys? ( >=media-libs/zvbi-0.2.28 )
|
||||
lirc? ( app-misc/lirc )
|
||||
live? ( >=media-plugins/live-2011.12.23 )
|
||||
lua? ( >=dev-lang/lua-5.1 )
|
||||
macosx-vout? ( virtual/opengl )
|
||||
matroska? ( >=dev-libs/libebml-1.0.0 >=media-libs/libmatroska-1.0.0 )
|
||||
modplug? ( >=media-libs/libmodplug-0.8.8.1 )
|
||||
mp3? ( media-libs/libmad )
|
||||
mpeg? ( >=media-libs/libmpeg2-0.3.2 )
|
||||
mtp? ( >=media-libs/libmtp-1.0.0 )
|
||||
musepack? ( >=media-sound/musepack-tools-444 )
|
||||
ncurses? ( >=sys-libs/ncurses-5.9-r2[unicode] )
|
||||
ogg? ( media-libs/libogg )
|
||||
opengl? ( virtual/opengl >=x11-libs/libX11-1.3.99.901 )
|
||||
opus? ( media-libs/opus )
|
||||
png? ( media-libs/libpng sys-libs/zlib )
|
||||
portaudio? ( >=media-libs/portaudio-19_pre )
|
||||
postproc? ( || ( media-video/ffmpeg media-libs/libpostproc ) )
|
||||
projectm? ( media-libs/libprojectm )
|
||||
pulseaudio? ( >=media-sound/pulseaudio-0.9.22 )
|
||||
qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 )
|
||||
samba? ( >=net-fs/samba-3.4.6[smbclient] )
|
||||
schroedinger? ( >=media-libs/schroedinger-1.0.10 )
|
||||
sdl? ( >=media-libs/libsdl-1.2.8
|
||||
sdl-image? ( media-libs/sdl-image sys-libs/zlib ) )
|
||||
shout? ( media-libs/libshout )
|
||||
sid? ( media-libs/libsidplay:2 )
|
||||
skins? ( x11-libs/libXext x11-libs/libXpm x11-libs/libXinerama )
|
||||
speex? ( media-libs/speex )
|
||||
sqlite? ( >=dev-db/sqlite-3.6.0:3 )
|
||||
svg? ( >=gnome-base/librsvg-2.9.0 )
|
||||
swscale? ( virtual/ffmpeg )
|
||||
taglib? ( >=media-libs/taglib-1.5 sys-libs/zlib )
|
||||
theora? ( >=media-libs/libtheora-1.0_beta3 )
|
||||
truetype? ( media-libs/freetype virtual/ttf-fonts
|
||||
!fontconfig? ( media-fonts/dejavu ) )
|
||||
twolame? ( media-sound/twolame )
|
||||
udev? ( virtual/udev )
|
||||
upnp? ( net-libs/libupnp )
|
||||
v4l? ( media-libs/libv4l )
|
||||
vaapi? ( x11-libs/libva )
|
||||
vcdx? ( >=dev-libs/libcdio-0.78.2 >=media-video/vcdimager-0.7.22 )
|
||||
vorbis? ( media-libs/libvorbis )
|
||||
X? ( x11-libs/libX11 )
|
||||
x264? ( >=media-libs/x264-0.0.20090923 )
|
||||
xcb? ( >=x11-libs/libxcb-1.6 >=x11-libs/xcb-util-0.3.4 )
|
||||
xml? ( dev-libs/libxml2 )
|
||||
xosd? ( x11-libs/xosd )
|
||||
zvbi? ( >=media-libs/zvbi-0.2.25 )
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
fbosd? ( sys-kernel/linux-headers )
|
||||
kde? ( >=kde-base/kdelibs-4 )
|
||||
xcb? ( x11-proto/xproto )
|
||||
app-arch/xz-utils
|
||||
virtual/pkgconfig"
|
||||
|
||||
REQUIRED_USE="
|
||||
aalib? ( X )
|
||||
bidi? ( truetype )
|
||||
cddb? ( cdda )
|
||||
dvb? ( dvbpsi )
|
||||
dxva2? ( avcodec )
|
||||
egl? ( X )
|
||||
ffmpeg? ( avcodec avformat swscale postproc )
|
||||
fontconfig? ( truetype )
|
||||
gnutls? ( gcrypt )
|
||||
httpd? ( lua )
|
||||
libcaca? ( X )
|
||||
libtar? ( skins )
|
||||
libtiger? ( kate )
|
||||
media-library? ( sqlite )
|
||||
qt4? ( X )
|
||||
sdl? ( X )
|
||||
skins? ( truetype qt4 X )
|
||||
switcher? ( avcodec )
|
||||
vaapi? ( avcodec X )
|
||||
vlm? ( encode )
|
||||
xosd? ( X )
|
||||
xv? ( xcb )
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
if [ "${PV%9999}" != "${PV}" ] ; then
|
||||
git-2_src_unpack
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# Make it build with libtool 1.5
|
||||
rm -f m4/lt* m4/libtool.m4
|
||||
|
||||
epatch "${WORKDIR}/patches/010_all_freetype-font.patch"
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# needs libresid-builder from libsidplay:2 which is in another directory...
|
||||
# FIXME!
|
||||
use sid && append-ldflags "-L/usr/$(get_libdir)/sidplay/builders/"
|
||||
|
||||
econf \
|
||||
--docdir=/usr/share/doc/${PF} \
|
||||
$(use_enable a52) \
|
||||
$(use_enable aalib aa) \
|
||||
$(use_enable aac faad) \
|
||||
$(use_enable alsa) \
|
||||
$(use_enable altivec) \
|
||||
$(use_enable atmo) \
|
||||
$(use_enable audioqueue) \
|
||||
$(use_enable avahi bonjour) \
|
||||
$(use_enable avcodec) \
|
||||
$(use_enable avformat) \
|
||||
$(use_enable bidi fribidi) \
|
||||
$(use_enable bluray) \
|
||||
$(use_enable cdda vcd) \
|
||||
$(use_enable cddb libcddb) \
|
||||
$(use_enable dbus) $(use_enable dbus dbus-control) \
|
||||
$(use_enable dirac) \
|
||||
$(use_enable direct2d) \
|
||||
$(use_enable directfb) \
|
||||
$(use_enable directx) \
|
||||
$(use_enable dc1394) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable dshow) \
|
||||
$(use_enable dts dca) \
|
||||
$(use_enable dvbpsi) \
|
||||
$(use_enable dvd dvdread) $(use_enable dvd dvdnav) \
|
||||
$(use_enable dxva2) \
|
||||
$(use_enable egl) \
|
||||
$(use_enable encode sout) \
|
||||
$(use_enable fbosd) \
|
||||
$(use_enable flac) \
|
||||
$(use_enable fluidsynth) \
|
||||
$(use_enable fontconfig) \
|
||||
$(use_enable gcrypt libgcrypt) \
|
||||
$(use_enable gme) \
|
||||
$(use_enable gnome gnomevfs) \
|
||||
$(use_enable gnutls) \
|
||||
$(use_enable growl) \
|
||||
$(use_enable httpd) \
|
||||
$(use_enable ieee1394 dv) \
|
||||
$(use_enable ios-vout) \
|
||||
$(use_enable jack) \
|
||||
$(use_enable kate) \
|
||||
$(use_with kde kde-solid) \
|
||||
$(use_enable libass) \
|
||||
$(use_enable libcaca caca) \
|
||||
$(use_enable libnotify notify) \
|
||||
$(use_enable libproxy) \
|
||||
$(use_enable libsamplerate samplerate) \
|
||||
$(use_enable libtar) \
|
||||
$(use_enable libtiger tiger) \
|
||||
$(use_enable linsys) \
|
||||
$(use_enable lirc) \
|
||||
$(use_enable live live555) \
|
||||
$(use_enable lua) \
|
||||
$(use_enable macosx-audio) \
|
||||
$(use_enable macosx-dialog-provider) \
|
||||
$(use_enable macosx-eyetv) \
|
||||
$(use_enable macosx-qtkit) \
|
||||
$(use_enable macosx-quartztext) \
|
||||
$(use_enable macosx-vout) \
|
||||
$(use_enable matroska mkv) \
|
||||
$(use_enable media-library) \
|
||||
$(use_enable mmx) \
|
||||
$(use_enable modplug mod) \
|
||||
$(use_enable mp3 mad) \
|
||||
$(use_enable mpeg libmpeg2) \
|
||||
$(use_enable mtp) \
|
||||
$(use_enable musepack mpc) \
|
||||
$(use_enable ncurses) \
|
||||
$(use_enable neon) \
|
||||
$(use_enable ogg) $(use_enable ogg mux_ogg) \
|
||||
$(use_enable omxil) \
|
||||
$(use_enable opengl glx) \
|
||||
$(use_enable opus) \
|
||||
$(use_enable optimisememory optimize-memory) \
|
||||
$(use_enable oss) \
|
||||
$(use_enable png) \
|
||||
$(use_enable portaudio) \
|
||||
$(use_enable postproc) \
|
||||
$(use_enable projectm) \
|
||||
$(use_enable pulseaudio pulse) \
|
||||
$(use_enable pvr) \
|
||||
$(use_enable qt4) \
|
||||
$(use_enable rtsp realrtsp) \
|
||||
$(use_enable run-as-root) \
|
||||
$(use_enable samba smb) \
|
||||
$(use_enable schroedinger) \
|
||||
$(use_enable sdl) \
|
||||
$(use_enable sdl-image) \
|
||||
$(use_enable shine) \
|
||||
$(use_enable sid) \
|
||||
$(use_enable shout) \
|
||||
$(use_enable skins skins2) \
|
||||
$(use_enable speex) \
|
||||
$(use_enable sqlite) \
|
||||
$(use_enable sse) \
|
||||
$(use_enable svg) \
|
||||
$(use_enable switcher) \
|
||||
$(use_enable swscale) \
|
||||
$(use_enable taglib) \
|
||||
$(use_enable theora) \
|
||||
$(use_enable truetype freetype) \
|
||||
$(use_enable twolame) \
|
||||
$(use_enable udev) \
|
||||
$(use_enable upnp) \
|
||||
$(use_enable v4l v4l2) \
|
||||
$(use_enable vaapi libva) \
|
||||
$(use_enable vcdx) \
|
||||
$(use_enable vlm) \
|
||||
$(use_enable vorbis) \
|
||||
$(use_enable waveout) \
|
||||
$(use_enable wingdi) \
|
||||
$(use_enable wma-fixed) \
|
||||
$(use_with X x) \
|
||||
$(use_enable x264) \
|
||||
$(use_enable xcb) \
|
||||
$(use_enable xml libxml2) \
|
||||
$(use_enable xosd) \
|
||||
$(use_enable xv xvideo) \
|
||||
$(use_enable zvbi) $(use_enable !zvbi telx) \
|
||||
--disable-loader \
|
||||
--disable-optimizations \
|
||||
--without-tuning \
|
||||
--enable-fast-install
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "make install failed"
|
||||
|
||||
dodoc AUTHORS THANKS NEWS README \
|
||||
doc/fortunes.txt doc/intf-vcd.txt
|
||||
|
||||
# Punt useless libtool's .la files
|
||||
find "${D}" -name '*.la' -delete
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [ "$ROOT" = "/" ] && [ -x "/usr/$(get_libdir)/vlc/vlc-cache-gen" ] ; then
|
||||
einfo "Running /usr/$(get_libdir)/vlc/vlc-cache-gen on /usr/$(get_libdir)/vlc/plugins/"
|
||||
"/usr/$(get_libdir)/vlc/vlc-cache-gen" -f "/usr/$(get_libdir)/vlc/plugins/"
|
||||
else
|
||||
ewarn "We cannot run vlc-cache-gen (most likely ROOT!=/)"
|
||||
ewarn "Please run /usr/$(get_libdir)/vlc/vlc-cache-gen manually"
|
||||
ewarn "If you do not do it, vlc will take a long time to load."
|
||||
fi
|
||||
}
|
@ -1 +1 @@
|
||||
Fri, 14 Jun 2013 04:07:01 +0000
|
||||
Fri, 14 Jun 2013 11:36:56 +0000
|
||||
|
@ -1 +1 @@
|
||||
Fri, 14 Jun 2013 04:07:01 +0000
|
||||
Fri, 14 Jun 2013 11:36:56 +0000
|
||||
|
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install preinst prepare setup
|
||||
DEPEND=|| ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-2.7*[sqlite] =dev-lang/python-2.6*[sqlite] )
|
||||
DESCRIPTION=A spaced-repetition memory training program (flash cards)
|
||||
EAPI=5
|
||||
HOMEPAGE=http://ichi2.net/anki/
|
||||
IUSE=latex +recording +sound
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=dev-python/PyQt4[X,svg,webkit] >=dev-python/httplib2-0.7.4 dev-python/beautifulsoup:python-2 recording? ( media-sound/lame >=dev-python/pyaudio-0.2.4 ) sound? ( media-video/mplayer ) latex? ( app-text/texlive app-text/dvipng ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-2.7*[sqlite] =dev-lang/python-2.6*[sqlite] )
|
||||
SLOT=0
|
||||
SRC_URI=http://ankisrs.net/download/mirror/anki-2.0.11.tgz
|
||||
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=05c1d2c0491ccfd30ca1fd21bb295c47
|
@ -1,14 +1,14 @@
|
||||
DEFINED_PHASES=install postinst prepare
|
||||
DEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 dev-python/imaging >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 >=dev-python/setuptools-0.6_rc5
|
||||
DEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 virtual/python-imaging >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 >=dev-python/setuptools-0.6_rc5
|
||||
DESCRIPTION=Ebook management application.
|
||||
EAPI=5
|
||||
HOMEPAGE=http://calibre-ebook.com/
|
||||
IUSE=+udisks
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3+ GPL-3 GPL-2+ GPL-2 GPL-1+ LGPL-3+ LGPL-2.1+ LGPL-2.1 BSD MIT Old-MIT Apache-2.0 public-domain || ( Artistic GPL-1+ ) CC-BY-3.0 OFL-1.1 PSF-2 unRAR
|
||||
RDEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 dev-python/imaging >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) )
|
||||
RDEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 virtual/python-imaging >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) )
|
||||
RESTRICT=mirror
|
||||
SLOT=0
|
||||
SRC_URI=http://sourceforge.net/projects/calibre/files/0.9.33/calibre-0.9.33.tar.xz
|
||||
SRC_URI=http://sourceforge.net/projects/calibre/files/0.9.35/calibre-0.9.35.tar.xz
|
||||
_eclasses_=bash-completion-r1 5deec68e4713fd23ce30d4d9ed712908 eutils f31a0ec0d081047cbf9c0bbb4822d831 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=a74b7323c71eeffb28a459ab02653dc6
|
||||
_md5_=1896b18b651da58e7e1a5bc3da23a315
|
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=virtual/pkgconfig test? ( dev-libs/check )
|
||||
DESCRIPTION=a pipeline manipulation library
|
||||
EAPI=5
|
||||
HOMEPAGE=http://libpipeline.nongnu.org/
|
||||
IUSE=static-libs test
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux
|
||||
LICENSE=GPL-3
|
||||
SLOT=0
|
||||
SRC_URI=mirror://nongnu/libpipeline/libpipeline-1.2.4.tar.gz
|
||||
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 40663e8518211ef0f236bd75da8cf0c1 eutils f31a0ec0d081047cbf9c0bbb4822d831 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=9fbe8a5ac01eb09f62dc8d932fa9b847
|
@ -1,14 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-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_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 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-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(-)]
|
||||
DEPEND=dev-python/setuptools[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_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_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 ) 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_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(-)]
|
||||
DESCRIPTION=Simplifies the usage of decorators for the average programmer
|
||||
EAPI=5
|
||||
HOMEPAGE=http://pypi.python.org/pypi/decorator http://code.google.com/p/micheles/
|
||||
IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3
|
||||
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
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos
|
||||
LICENSE=BSD
|
||||
RDEPEND=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 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-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(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 )
|
||||
RDEPEND=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 ) 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_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(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/d/decorator/decorator-3.4.0.tar.gz
|
||||
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=07bd01c5079ad9a2677b06513c3fa296
|
||||
_md5_=16524430422c0ca17874602b7fc8b845
|
||||
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=python_targets_python2_5? ( dev-lang/python:2.5[ssl(+),xml(+)] ) python_targets_python2_6? ( dev-lang/python:2.6[ssl(+),xml(+)] ) python_targets_python2_7? ( dev-lang/python:2.7[ssl(+),xml(+)] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[ssl(+),xml(+)] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)]
|
||||
DESCRIPTION=Python client library for Google data APIs
|
||||
EAPI=5
|
||||
HOMEPAGE=http://code.google.com/p/gdata-python-client/ http://pypi.python.org/pypi/gdata
|
||||
IUSE=examples python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[ssl(+),xml(+)] ) python_targets_python2_6? ( dev-lang/python:2.6[ssl(+),xml(+)] ) python_targets_python2_7? ( dev-lang/python:2.7[ssl(+),xml(+)] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[ssl(+),xml(+)] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 )
|
||||
SLOT=0
|
||||
SRC_URI=http://gdata-python-client.googlecode.com/files/gdata-2.0.17.tar.gz
|
||||
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=16a52acb04d8ad1822b1e6191ba57ee6
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=>=dev-python/setuptools-0.7.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] test? ( dev-python/pytest[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) 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 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
|
||||
DESCRIPTION=A collection of tools missing from the Python standard library
|
||||
EAPI=5
|
||||
HOMEPAGE=http://mathema.tician.de/software/pytools
|
||||
IUSE=test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=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 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/p/pytools/pytools-2013.5.tar.gz
|
||||
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=9e489f865dd1c111f6712f61a2329006
|
@ -1,12 +1,14 @@
|
||||
DEFINED_PHASES=compile install postinst postrm prepare
|
||||
DEPEND==dev-lang/python-2*
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
|
||||
DESCRIPTION=Tools for manipulating VTK files in Python
|
||||
EAPI=2
|
||||
EAPI=5
|
||||
HOMEPAGE=http://cens.ioc.ee/projects/pyvtk/
|
||||
IUSE=python_targets_python2_6 python_targets_python2_7
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=LGPL-2.1
|
||||
RDEPEND==dev-lang/python-2*
|
||||
RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
|
||||
SLOT=0
|
||||
SRC_URI=http://cens.ioc.ee/projects/pyvtk/rel-0.x/PyVTK-0.4.74.tar.gz
|
||||
_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=a0ff2e35d3f7823717ed9dd1c9e9b1af
|
||||
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=cea646ba32bd4e0abd8de2270f486b9c
|
||||
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-)] app-arch/unzip python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-)]
|
||||
DESCRIPTION=Ultra fast JSON encoder and decoder for Python
|
||||
EAPI=5
|
||||
HOMEPAGE=http://pypi.python.org/pypi/ujson/
|
||||
IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_2
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-)] app-arch/unzip python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/u/ujson/ujson-1.33.zip
|
||||
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=53b8638bdf4ee79adb32c68bb0ac4673
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=configure install postinst prepare unpack
|
||||
DEPEND=>=sys-libs/zlib-1.2.5.1-r2[minizip] a52? ( >=media-libs/a52dec-0.7.4-r3 ) aalib? ( media-libs/aalib ) aac? ( >=media-libs/faad2-2.6.1 ) alsa? ( >=media-libs/alsa-lib-1.0.23 ) avahi? ( >=net-dns/avahi-0.6[dbus] ) avcodec? ( virtual/ffmpeg ) avformat? ( virtual/ffmpeg ) bidi? ( >=dev-libs/fribidi-0.10.4 ) bluray? ( >=media-libs/libbluray-0.2.1 ) cddb? ( >=media-libs/libcddb-1.2.0 ) dbus? ( >=sys-apps/dbus-1.0.2 ) dc1394? ( >=sys-libs/libraw1394-2.0.1 >=media-libs/libdc1394-2.0.2 ) dirac? ( >=media-video/dirac-0.10.0 ) directfb? ( dev-libs/DirectFB sys-libs/zlib ) dts? ( media-libs/libdca ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1 ) dvd? ( media-libs/libdvdread >=media-libs/libdvdnav-0.1.9 ) egl? ( virtual/opengl ) elibc_glibc? ( >=sys-libs/glibc-2.8 ) flac? ( media-libs/libogg >=media-libs/flac-1.1.2 ) fluidsynth? ( media-sound/fluidsynth ) fontconfig? ( media-libs/fontconfig ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0 ) gme? ( media-libs/game-music-emu ) gnome? ( gnome-base/gnome-vfs ) gnutls? ( >=net-libs/gnutls-2.0.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1 >=sys-libs/libavc1394-0.5.3 ) ios-vout? ( virtual/opengl ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1 ) kate? ( >=media-libs/libkate-0.1.1 ) libass? ( >=media-libs/libass-0.9.8 media-libs/fontconfig ) libcaca? ( >=media-libs/libcaca-0.99_beta14 ) libnotify? ( x11-libs/libnotify x11-libs/gtk+:2 ) libproxy? ( net-libs/libproxy ) libsamplerate? ( media-libs/libsamplerate ) libtar? ( >=dev-libs/libtar-1.2.11-r3 ) libtiger? ( media-libs/libtiger ) linsys? ( >=media-libs/zvbi-0.2.28 ) lirc? ( app-misc/lirc ) live? ( >=media-plugins/live-2011.12.23 ) lua? ( >=dev-lang/lua-5.1 ) macosx-vout? ( virtual/opengl ) matroska? ( >=dev-libs/libebml-1.0.0 >=media-libs/libmatroska-1.0.0 ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) mp3? ( media-libs/libmad ) mpeg? ( >=media-libs/libmpeg2-0.3.2 ) mtp? ( >=media-libs/libmtp-1.0.0 ) musepack? ( >=media-sound/musepack-tools-444 ) ncurses? ( >=sys-libs/ncurses-5.9-r2[unicode] ) ogg? ( media-libs/libogg ) opengl? ( virtual/opengl >=x11-libs/libX11-1.3.99.901 ) opus? ( media-libs/opus ) png? ( media-libs/libpng sys-libs/zlib ) portaudio? ( >=media-libs/portaudio-19_pre ) postproc? ( || ( media-video/ffmpeg media-libs/libpostproc ) ) projectm? ( media-libs/libprojectm ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22 ) qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 ) samba? ( >=net-fs/samba-3.4.6[smbclient] ) schroedinger? ( >=media-libs/schroedinger-1.0.10 ) sdl? ( >=media-libs/libsdl-1.2.8 sdl-image? ( media-libs/sdl-image sys-libs/zlib ) ) shout? ( media-libs/libshout ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext x11-libs/libXpm x11-libs/libXinerama ) speex? ( media-libs/speex ) sqlite? ( >=dev-db/sqlite-3.6.0:3 ) svg? ( >=gnome-base/librsvg-2.9.0 ) swscale? ( virtual/ffmpeg ) taglib? ( >=media-libs/taglib-1.5 sys-libs/zlib ) theora? ( >=media-libs/libtheora-1.0_beta3 ) truetype? ( media-libs/freetype virtual/ttf-fonts !fontconfig? ( media-fonts/dejavu ) ) twolame? ( media-sound/twolame ) udev? ( virtual/udev ) upnp? ( net-libs/libupnp ) v4l? ( media-libs/libv4l ) vaapi? ( x11-libs/libva ) vcdx? ( >=dev-libs/libcdio-0.78.2 >=media-video/vcdimager-0.7.22 ) vorbis? ( media-libs/libvorbis ) X? ( x11-libs/libX11 ) x264? ( >=media-libs/x264-0.0.20090923 ) xcb? ( >=x11-libs/libxcb-1.6 >=x11-libs/xcb-util-0.3.4 ) xml? ( dev-libs/libxml2 ) xosd? ( x11-libs/xosd ) zvbi? ( >=media-libs/zvbi-0.2.25 ) fbosd? ( sys-kernel/linux-headers ) kde? ( >=kde-base/kdelibs-4 ) xcb? ( x11-proto/xproto ) app-arch/xz-utils virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|
||||
DESCRIPTION=VLC media player - Video player and streamer
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.videolan.org/vlc/
|
||||
IUSE=a52 aac aalib alsa altivec atmo +audioqueue avahi +avcodec +avformat bidi bluray cdda cddb dbus dc1394 debug dirac direct2d directfb directx dshow dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode fbosd fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify libproxy libsamplerate libtiger linsys libtar lirc live lua +macosx +macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext +macosx-qtkit +macosx-vout matroska media-library mmx modplug mp3 mpeg mtp musepack ncurses neon ogg omxil opengl opus optimisememory oss png portaudio +postproc projectm pulseaudio pvr +qt4 rtsp run-as-root samba schroedinger sdl sdl-image shine shout sid skins speex sqlite sse svg +swscale switcher taglib theora truetype twolame udev upnp vaapi v4l vcdx vlm vorbis waveout wingdi wma-fixed +X x264 +xcb xml xosd xv zvbi
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 -sparc ~x86 ~amd64-fbsd ~x86-fbsd
|
||||
LICENSE=LGPL-2.1 GPL-2
|
||||
RDEPEND=>=sys-libs/zlib-1.2.5.1-r2[minizip] a52? ( >=media-libs/a52dec-0.7.4-r3 ) aalib? ( media-libs/aalib ) aac? ( >=media-libs/faad2-2.6.1 ) alsa? ( >=media-libs/alsa-lib-1.0.23 ) avahi? ( >=net-dns/avahi-0.6[dbus] ) avcodec? ( virtual/ffmpeg ) avformat? ( virtual/ffmpeg ) bidi? ( >=dev-libs/fribidi-0.10.4 ) bluray? ( >=media-libs/libbluray-0.2.1 ) cddb? ( >=media-libs/libcddb-1.2.0 ) dbus? ( >=sys-apps/dbus-1.0.2 ) dc1394? ( >=sys-libs/libraw1394-2.0.1 >=media-libs/libdc1394-2.0.2 ) dirac? ( >=media-video/dirac-0.10.0 ) directfb? ( dev-libs/DirectFB sys-libs/zlib ) dts? ( media-libs/libdca ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1 ) dvd? ( media-libs/libdvdread >=media-libs/libdvdnav-0.1.9 ) egl? ( virtual/opengl ) elibc_glibc? ( >=sys-libs/glibc-2.8 ) flac? ( media-libs/libogg >=media-libs/flac-1.1.2 ) fluidsynth? ( media-sound/fluidsynth ) fontconfig? ( media-libs/fontconfig ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0 ) gme? ( media-libs/game-music-emu ) gnome? ( gnome-base/gnome-vfs ) gnutls? ( >=net-libs/gnutls-2.0.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1 >=sys-libs/libavc1394-0.5.3 ) ios-vout? ( virtual/opengl ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1 ) kate? ( >=media-libs/libkate-0.1.1 ) libass? ( >=media-libs/libass-0.9.8 media-libs/fontconfig ) libcaca? ( >=media-libs/libcaca-0.99_beta14 ) libnotify? ( x11-libs/libnotify x11-libs/gtk+:2 ) libproxy? ( net-libs/libproxy ) libsamplerate? ( media-libs/libsamplerate ) libtar? ( >=dev-libs/libtar-1.2.11-r3 ) libtiger? ( media-libs/libtiger ) linsys? ( >=media-libs/zvbi-0.2.28 ) lirc? ( app-misc/lirc ) live? ( >=media-plugins/live-2011.12.23 ) lua? ( >=dev-lang/lua-5.1 ) macosx-vout? ( virtual/opengl ) matroska? ( >=dev-libs/libebml-1.0.0 >=media-libs/libmatroska-1.0.0 ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) mp3? ( media-libs/libmad ) mpeg? ( >=media-libs/libmpeg2-0.3.2 ) mtp? ( >=media-libs/libmtp-1.0.0 ) musepack? ( >=media-sound/musepack-tools-444 ) ncurses? ( >=sys-libs/ncurses-5.9-r2[unicode] ) ogg? ( media-libs/libogg ) opengl? ( virtual/opengl >=x11-libs/libX11-1.3.99.901 ) opus? ( media-libs/opus ) png? ( media-libs/libpng sys-libs/zlib ) portaudio? ( >=media-libs/portaudio-19_pre ) postproc? ( || ( media-video/ffmpeg media-libs/libpostproc ) ) projectm? ( media-libs/libprojectm ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22 ) qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 ) samba? ( >=net-fs/samba-3.4.6[smbclient] ) schroedinger? ( >=media-libs/schroedinger-1.0.10 ) sdl? ( >=media-libs/libsdl-1.2.8 sdl-image? ( media-libs/sdl-image sys-libs/zlib ) ) shout? ( media-libs/libshout ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext x11-libs/libXpm x11-libs/libXinerama ) speex? ( media-libs/speex ) sqlite? ( >=dev-db/sqlite-3.6.0:3 ) svg? ( >=gnome-base/librsvg-2.9.0 ) swscale? ( virtual/ffmpeg ) taglib? ( >=media-libs/taglib-1.5 sys-libs/zlib ) theora? ( >=media-libs/libtheora-1.0_beta3 ) truetype? ( media-libs/freetype virtual/ttf-fonts !fontconfig? ( media-fonts/dejavu ) ) twolame? ( media-sound/twolame ) udev? ( virtual/udev ) upnp? ( net-libs/libupnp ) v4l? ( media-libs/libv4l ) vaapi? ( x11-libs/libva ) vcdx? ( >=dev-libs/libcdio-0.78.2 >=media-video/vcdimager-0.7.22 ) vorbis? ( media-libs/libvorbis ) X? ( x11-libs/libX11 ) x264? ( >=media-libs/x264-0.0.20090923 ) xcb? ( >=x11-libs/libxcb-1.6 >=x11-libs/xcb-util-0.3.4 ) xml? ( dev-libs/libxml2 ) xosd? ( x11-libs/xosd ) zvbi? ( >=media-libs/zvbi-0.2.25 )
|
||||
REQUIRED_USE=aalib? ( X ) bidi? ( truetype ) cddb? ( cdda ) dvb? ( dvbpsi ) dxva2? ( avcodec ) egl? ( X ) ffmpeg? ( avcodec avformat swscale postproc ) fontconfig? ( truetype ) gnutls? ( gcrypt ) httpd? ( lua ) libcaca? ( X ) libtar? ( skins ) libtiger? ( kate ) media-library? ( sqlite ) qt4? ( X ) sdl? ( X ) skins? ( truetype qt4 X ) switcher? ( avcodec ) vaapi? ( avcodec X ) vlm? ( encode ) xosd? ( X ) xv? ( xcb )
|
||||
SLOT=0
|
||||
SRC_URI=http://download.videolan.org/pub/videolan/vlc/2.0.7/vlc-2.0.7.tar.xz mirror://gentoo/vlc-patches-101.tar.bz2
|
||||
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=de4de0068e9b7365e76c9fed6409a5b9
|
@ -1,14 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare pretend test unpack
|
||||
DEPEND=app-arch/bzip2 >=dev-libs/boost-1.38 >=dev-libs/openssl-0.9.8 sys-apps/attr sys-devel/gettext sys-libs/zlib virtual/libiconv idn? ( net-dns/libidn ) lua? ( >=dev-lang/lua-5.1 ) pcre? ( >=dev-libs/libpcre-4.2 ) upnp? ( >=net-libs/miniupnpc-1.6 ) cli? ( >=dev-lang/perl-5.10 perl-core/Getopt-Long dev-perl/Data-Dump dev-perl/Term-ShellUI json? ( dev-perl/JSON-RPC dev-perl/Data-Dump ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( >=dev-libs/xmlrpc-c-1.19.0[abyss,cxx] ) ) gtk? ( x11-libs/pango gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.24:2 ) >=dev-libs/glib-2.24:2 x11-themes/hicolor-icon-theme gnome? ( gnome-base/libgnome ) libcanberra? ( media-libs/libcanberra ) libnotify? ( >=x11-libs/libnotify-0.4.1 ) ) qt4? ( >=dev-qt/qtgui-4.6.0:4[dbus?] javascript? ( dev-qt/qtscript:4 x11-libs/qtscriptgenerator ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:4[sqlite] ) ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
|
||||
DEPEND=app-arch/bzip2 >=dev-libs/boost-1.38 >=dev-libs/openssl-0.9.8 sys-apps/attr sys-devel/gettext sys-libs/zlib virtual/libiconv idn? ( net-dns/libidn ) lua? ( >=dev-lang/lua-5.1 ) pcre? ( >=dev-libs/libpcre-4.2 ) upnp? ( >=net-libs/miniupnpc-1.6 ) cli? ( >=dev-lang/perl-5.10 perl-core/Getopt-Long dev-perl/Data-Dump dev-perl/Term-ShellUI json? ( dev-perl/JSON-RPC ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( >=dev-libs/xmlrpc-c-1.19.0[abyss,cxx] ) ) gtk? ( x11-libs/pango gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.24:2 ) >=dev-libs/glib-2.24:2 x11-themes/hicolor-icon-theme gnome? ( gnome-base/libgnome ) libcanberra? ( media-libs/libcanberra ) libnotify? ( >=x11-libs/libnotify-0.4.1 ) ) qt4? ( >=dev-qt/qtgui-4.6.0:4[dbus?] javascript? ( dev-qt/qtscript:4 x11-libs/qtscriptgenerator ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:4[sqlite] ) ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
|
||||
DESCRIPTION=Qt4 based client for DirectConnect and ADC protocols, based on DC++ library
|
||||
EAPI=4
|
||||
HOMEPAGE=http://eiskaltdc.googlecode.com/
|
||||
IUSE=cli daemon dbus +dht +emoticons examples -gnome -gtk -gtk3 idn -javascript json libcanberra libnotify lua +minimal pcre +qt4 sound spell sqlite upnp xmlrpc linguas_be linguas_bg linguas_cs linguas_de linguas_el linguas_en linguas_es linguas_fr linguas_hu linguas_it linguas_pl linguas_ru linguas_sk linguas_uk
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=GPL-2 GPL-3
|
||||
RDEPEND=app-arch/bzip2 >=dev-libs/boost-1.38 >=dev-libs/openssl-0.9.8 sys-apps/attr sys-devel/gettext sys-libs/zlib virtual/libiconv idn? ( net-dns/libidn ) lua? ( >=dev-lang/lua-5.1 ) pcre? ( >=dev-libs/libpcre-4.2 ) upnp? ( >=net-libs/miniupnpc-1.6 ) cli? ( >=dev-lang/perl-5.10 perl-core/Getopt-Long dev-perl/Data-Dump dev-perl/Term-ShellUI json? ( dev-perl/JSON-RPC dev-perl/Data-Dump ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( >=dev-libs/xmlrpc-c-1.19.0[abyss,cxx] ) ) gtk? ( x11-libs/pango gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.24:2 ) >=dev-libs/glib-2.24:2 x11-themes/hicolor-icon-theme gnome? ( gnome-base/libgnome ) libcanberra? ( media-libs/libcanberra ) libnotify? ( >=x11-libs/libnotify-0.4.1 ) ) qt4? ( >=dev-qt/qtgui-4.6.0:4[dbus?] javascript? ( dev-qt/qtscript:4 x11-libs/qtscriptgenerator ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:4[sqlite] ) )
|
||||
RDEPEND=app-arch/bzip2 >=dev-libs/boost-1.38 >=dev-libs/openssl-0.9.8 sys-apps/attr sys-devel/gettext sys-libs/zlib virtual/libiconv idn? ( net-dns/libidn ) lua? ( >=dev-lang/lua-5.1 ) pcre? ( >=dev-libs/libpcre-4.2 ) upnp? ( >=net-libs/miniupnpc-1.6 ) cli? ( >=dev-lang/perl-5.10 perl-core/Getopt-Long dev-perl/Data-Dump dev-perl/Term-ShellUI json? ( dev-perl/JSON-RPC ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( >=dev-libs/xmlrpc-c-1.19.0[abyss,cxx] ) ) gtk? ( x11-libs/pango gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.24:2 ) >=dev-libs/glib-2.24:2 x11-themes/hicolor-icon-theme gnome? ( gnome-base/libgnome ) libcanberra? ( media-libs/libcanberra ) libnotify? ( >=x11-libs/libnotify-0.4.1 ) ) qt4? ( >=dev-qt/qtgui-4.6.0:4[dbus?] javascript? ( dev-qt/qtscript:4 x11-libs/qtscriptgenerator ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:4[sqlite] ) )
|
||||
REQUIRED_USE=cli? ( ^^ ( json xmlrpc ) ) emoticons? ( || ( gtk qt4 ) ) dbus? ( qt4 ) gnome? ( gtk ) gtk3? ( gtk ) javascript? ( qt4 ) json? ( !xmlrpc ) libcanberra? ( !gnome gtk ) libnotify? ( gtk ) spell? ( qt4 ) sound? ( || ( gtk qt4 ) ) sqlite? ( qt4 )
|
||||
SLOT=0
|
||||
SRC_URI=http://eiskaltdc.googlecode.com/files/eiskaltdcpp-2.2.7.tar.xz
|
||||
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 7b98a49dffbb542252fe0051649e85b0 eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=3adf6994e0d08e89d5b41ed54709df9b
|
||||
_md5_=8eb72e6359d39e6097d0f0470c360aab
|
||||
|
@ -1,12 +1,12 @@
|
||||
DEFINED_PHASES=compile configure install prepare pretend test unpack
|
||||
DEPEND=app-arch/bzip2 >=dev-libs/boost-1.38 >=dev-libs/openssl-0.9.8 sys-apps/attr sys-devel/gettext sys-libs/zlib virtual/libiconv idn? ( net-dns/libidn ) lua? ( >=dev-lang/lua-5.1 ) pcre? ( >=dev-libs/libpcre-4.2 ) upnp? ( >=net-libs/miniupnpc-1.6 ) cli? ( >=dev-lang/perl-5.10 perl-core/Getopt-Long dev-perl/Data-Dump dev-perl/Term-ShellUI json? ( dev-perl/JSON-RPC dev-perl/Data-Dump ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( >=dev-libs/xmlrpc-c-1.19.0[abyss,cxx] ) ) gtk? ( x11-libs/pango x11-libs/gtk+:3 >=dev-libs/glib-2.24:2 x11-themes/hicolor-icon-theme gnome? ( gnome-base/libgnome ) libcanberra? ( media-libs/libcanberra ) libnotify? ( >=x11-libs/libnotify-0.4.1 ) ) qt4? ( >=dev-qt/qtgui-4.6.0:4[dbus?] javascript? ( dev-qt/qtscript:4 x11-libs/qtscriptgenerator ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:4[sqlite] ) ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-vcs/git
|
||||
DEPEND=app-arch/bzip2 >=dev-libs/boost-1.38 >=dev-libs/openssl-0.9.8 sys-apps/attr sys-devel/gettext sys-libs/zlib virtual/libiconv idn? ( net-dns/libidn ) lua? ( >=dev-lang/lua-5.1 ) pcre? ( >=dev-libs/libpcre-4.2 ) upnp? ( >=net-libs/miniupnpc-1.6 ) cli? ( >=dev-lang/perl-5.10 perl-core/Getopt-Long dev-perl/Data-Dump dev-perl/Term-ShellUI json? ( dev-perl/JSON-RPC ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( >=dev-libs/xmlrpc-c-1.19.0[abyss,cxx] ) ) gtk? ( x11-libs/pango x11-libs/gtk+:3 >=dev-libs/glib-2.24:2 x11-themes/hicolor-icon-theme libcanberra? ( media-libs/libcanberra ) libnotify? ( >=x11-libs/libnotify-0.4.1 ) ) qt4? ( >=dev-qt/qtgui-4.6.0:4[dbus?] javascript? ( dev-qt/qtscript:4 x11-libs/qtscriptgenerator ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:4[sqlite] ) ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-vcs/git
|
||||
DESCRIPTION=Qt4 based client for DirectConnect and ADC protocols, based on DC++ library
|
||||
EAPI=4
|
||||
HOMEPAGE=http://eiskaltdc.googlecode.com/
|
||||
IUSE=cli daemon dbus +dht +emoticons examples -gnome -gtk idn -javascript json libcanberra libnotify lua +minimal pcre +qt4 sound spell sqlite upnp xmlrpc linguas_be linguas_bg linguas_cs linguas_de linguas_el linguas_en linguas_es linguas_fr linguas_hu linguas_it linguas_pl linguas_ru linguas_sk linguas_sr@latin linguas_uk
|
||||
IUSE=cli daemon dbus +dht +emoticons examples -gtk idn -javascript json libcanberra libnotify lua +minimal pcre +qt4 sound spell sqlite upnp -xmlrpc linguas_be linguas_bg linguas_cs linguas_de linguas_el linguas_en linguas_es linguas_fr linguas_hu linguas_it linguas_pl linguas_pt_BR linguas_ru linguas_sk linguas_sr@latin linguas_uk
|
||||
LICENSE=GPL-2 GPL-3
|
||||
RDEPEND=app-arch/bzip2 >=dev-libs/boost-1.38 >=dev-libs/openssl-0.9.8 sys-apps/attr sys-devel/gettext sys-libs/zlib virtual/libiconv idn? ( net-dns/libidn ) lua? ( >=dev-lang/lua-5.1 ) pcre? ( >=dev-libs/libpcre-4.2 ) upnp? ( >=net-libs/miniupnpc-1.6 ) cli? ( >=dev-lang/perl-5.10 perl-core/Getopt-Long dev-perl/Data-Dump dev-perl/Term-ShellUI json? ( dev-perl/JSON-RPC dev-perl/Data-Dump ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( >=dev-libs/xmlrpc-c-1.19.0[abyss,cxx] ) ) gtk? ( x11-libs/pango x11-libs/gtk+:3 >=dev-libs/glib-2.24:2 x11-themes/hicolor-icon-theme gnome? ( gnome-base/libgnome ) libcanberra? ( media-libs/libcanberra ) libnotify? ( >=x11-libs/libnotify-0.4.1 ) ) qt4? ( >=dev-qt/qtgui-4.6.0:4[dbus?] javascript? ( dev-qt/qtscript:4 x11-libs/qtscriptgenerator ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:4[sqlite] ) )
|
||||
REQUIRED_USE=cli? ( ^^ ( json xmlrpc ) ) emoticons? ( || ( gtk qt4 ) ) dbus? ( qt4 ) gnome? ( gtk ) javascript? ( qt4 ) json? ( !xmlrpc ) libcanberra? ( !gnome gtk ) libnotify? ( gtk ) spell? ( qt4 ) sound? ( || ( gtk qt4 ) ) sqlite? ( qt4 )
|
||||
RDEPEND=app-arch/bzip2 >=dev-libs/boost-1.38 >=dev-libs/openssl-0.9.8 sys-apps/attr sys-devel/gettext sys-libs/zlib virtual/libiconv idn? ( net-dns/libidn ) lua? ( >=dev-lang/lua-5.1 ) pcre? ( >=dev-libs/libpcre-4.2 ) upnp? ( >=net-libs/miniupnpc-1.6 ) cli? ( >=dev-lang/perl-5.10 perl-core/Getopt-Long dev-perl/Data-Dump dev-perl/Term-ShellUI json? ( dev-perl/JSON-RPC ) xmlrpc? ( dev-perl/RPC-XML ) ) daemon? ( xmlrpc? ( >=dev-libs/xmlrpc-c-1.19.0[abyss,cxx] ) ) gtk? ( x11-libs/pango x11-libs/gtk+:3 >=dev-libs/glib-2.24:2 x11-themes/hicolor-icon-theme libcanberra? ( media-libs/libcanberra ) libnotify? ( >=x11-libs/libnotify-0.4.1 ) ) qt4? ( >=dev-qt/qtgui-4.6.0:4[dbus?] javascript? ( dev-qt/qtscript:4 x11-libs/qtscriptgenerator ) spell? ( app-text/aspell ) sqlite? ( dev-qt/qtsql:4[sqlite] ) )
|
||||
REQUIRED_USE=cli? ( ^^ ( json xmlrpc ) ) emoticons? ( || ( gtk qt4 ) ) dbus? ( qt4 ) javascript? ( qt4 ) json? ( !xmlrpc ) libcanberra? ( gtk ) libnotify? ( gtk ) spell? ( qt4 ) sound? ( || ( gtk qt4 ) ) sqlite? ( qt4 )
|
||||
SLOT=0
|
||||
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 7b98a49dffbb542252fe0051649e85b0 eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=6b2c489910ae14bf8f4d296f86916c5a
|
||||
_md5_=492e31ccb5a0a76fee2f61c89bce2955
|
||||
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=configure prepare unpack
|
||||
DEPEND=app-arch/unzip >=sys-fs/fuse-2.8.6:= lzma? ( >=app-arch/xz-utils-5.0.4:= ) zlib? ( >=sys-libs/zlib-1.2.5-r2:= ) lzo? ( >=dev-libs/lzo-2.06:= ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|
||||
DESCRIPTION=FUSE filesystem to mount squashfs archives
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/vasi/squashfuse
|
||||
IUSE=lzma lzo +zlib
|
||||
KEYWORDS=~amd64 ~x86 ~amd64-linux ~arm-linux ~x86-linux
|
||||
LICENSE=BSD-2
|
||||
RDEPEND=>=sys-fs/fuse-2.8.6:= lzma? ( >=app-arch/xz-utils-5.0.4:= ) zlib? ( >=sys-libs/zlib-1.2.5-r2:= ) lzo? ( >=dev-libs/lzo-2.06:= )
|
||||
REQUIRED_USE=|| ( lzma zlib lzo )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/vasi/squashfuse/archive/f03158f49cb4adbb6459cb2a1898e586b488cb10.zip -> squashfuse-0.1_p20130530.zip
|
||||
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
|
||||
_md5_=e34dbff56dd8864c4bacb6ed468cfe5e
|
@ -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 ) deblob? ( =dev-lang/python-2* )
|
||||
DESCRIPTION=Full sources for the Linux kernel
|
||||
EAPI=5
|
||||
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 sys-devel/bc )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=3.0.82
|
||||
SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.0.82.xz mirror://kernel/linux/kernel/v3.x/linux-3.0.tar.xz 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 f31a0ec0d081047cbf9c0bbb4822d831 kernel-2 353d0aef1046938e432ba587875e2027 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=b98ebaafb405c2325de69b73b7f87111
|
@ -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 ) deblob? ( =dev-lang/python-2* )
|
||||
DESCRIPTION=Full sources for the Linux kernel
|
||||
EAPI=5
|
||||
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 sys-devel/bc )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=3.4.49
|
||||
SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.4.49.xz mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz 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 f31a0ec0d081047cbf9c0bbb4822d831 kernel-2 353d0aef1046938e432ba587875e2027 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=f27300aec090944e6b0127aaa68ff414
|
@ -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 ) deblob? ( =dev-lang/python-2* )
|
||||
DESCRIPTION=Full sources for the Linux kernel
|
||||
EAPI=5
|
||||
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 sys-devel/bc )
|
||||
RESTRICT=binchecks strip
|
||||
SLOT=3.9.6
|
||||
SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.9.6.xz mirror://kernel/linux/kernel/v3.x/linux-3.9.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.9.N/deblob-3.9 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.9.N/deblob-check -> deblob-check-3.9 )
|
||||
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 kernel-2 353d0aef1046938e432ba587875e2027 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=518569143b312b831df558c59c74cfda
|
@ -1 +1 @@
|
||||
Fri, 14 Jun 2013 04:07:03 +0000
|
||||
Fri, 14 Jun 2013 11:36:58 +0000
|
||||
|
@ -1 +1 @@
|
||||
Fri Jun 14 04:07:01 UTC 2013
|
||||
Fri Jun 14 11:36:56 UTC 2013
|
||||
|
@ -1 +1 @@
|
||||
Fri, 14 Jun 2013 04:30:01 +0000
|
||||
Fri, 14 Jun 2013 12:00:01 +0000
|
||||
|
@ -1 +1 @@
|
||||
1371182701 Fri Jun 14 04:05:01 2013 UTC
|
||||
1371209701 Fri Jun 14 11:35:01 2013 UTC
|
||||
|
@ -1,6 +1,17 @@
|
||||
AUX 3.2.0-datadir.patch 1315 RMD160 94454e4038bb991c6136e6494b2e078df2ac2806 SHA1 941d60fc4c66c974fb058c8f8c2090ed639b7e42 SHA256 c15ecf476e2b8fb1382634cd94b25247897e2366d8d54f8ae2c0325d5c98bb5d
|
||||
AUX 3.2.0-flags.patch 2163 RMD160 51f1e973e0f61c5d500fbb1906864387e25d23b0 SHA1 6401d4b282f83036f2fe3f97bac5f2689ba5e5ad SHA256 4603b544b2cc7d7b48945453f2a3c462e5a3f175ee834dcd108d94de8db9bc81
|
||||
DIST apertium-3.2.0.tar.gz 767311 RMD160 85d444780558dc1aa19f36d250152bb9ee695c03 SHA1 1e784dcb20cf99215c04c642b62e1ff35ef76dba SHA256 6ce2fdc85da5d1e50d69da2e50cc97a87b689476f2c83417765636d9a4b7e9ac
|
||||
EBUILD apertium-3.2.0.ebuild 722 RMD160 235a6686556145f58f1b2be68991660f3989cda2 SHA1 ff0bf51d0c38e3fe6de2c06bdc0d48b0abfced42 SHA256 76e01a96c0db7e85dab489f00d7236b3e3e232a5924c259e4d4aee257f5d4ca4
|
||||
MISC ChangeLog 1041 RMD160 e1df01893458cc96c1ae4dfdcbcb39d9f2e179f2 SHA1 7fefe4c2d59f5abaca9a5e7830cbcdae9a7f0d2b SHA256 a7dcb9c25947b8507e21c0c7240a013aa0242d9361088df2c25a553d8b09ab29
|
||||
MISC metadata.xml 293 RMD160 7b9798535e877179cf0057d0706b282008021fc1 SHA1 7bb71673d2cc5ddeaa2e3553752f026128fe0b80 SHA256 b254b64d7faa178e3424db5846f80f32f526c0f176caa9b5c891adf5d67e3ca7
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA512
|
||||
|
||||
AUX 3.2.0-datadir.patch 1315 SHA256 c15ecf476e2b8fb1382634cd94b25247897e2366d8d54f8ae2c0325d5c98bb5d SHA512 51d4950ee82298a3b77a83e625c7bf788bdbc15b0fa16e1b5e0b57a8be1c28d5a499a1d3fa2436b7cdeedf397803b6ca6fe6740871b8c3a9687b57b3182f9e6a WHIRLPOOL 298b1c55a9216955910fa6716d28a07cab3edbc6cb86332e33a14f349444b5bdd791aa0321c6883ea5ad16a93e5309e6936061c5b65f455afb0b8de7e0b3769e
|
||||
AUX 3.2.0-flags.patch 2163 SHA256 4603b544b2cc7d7b48945453f2a3c462e5a3f175ee834dcd108d94de8db9bc81 SHA512 25a1e8687c38091b249fbbef4dac01c95f4b446ad7e3ffd829b8803d056e34ec49057855af80f8ec578d83894234ab0c87b900daec759a6fd3ba8ae3fc736fce WHIRLPOOL a247d99fac478f2289b69f955272de96ed25695224dccf57ede3fba0ebcf3f1ef39dd5a914712a1a5f27e7b69fc3bc0f8c38bd889b206d3a260e961918ab8aac
|
||||
AUX apertium-3.2.0-libpcre.patch 1480 SHA256 ce62b641ea49e838d22f716eb1ff40c99bfefd0a8ff04d57589c901317b689ea SHA512 e8816e99ea2e2c0c027e498d77bf6948002f84781a3af77bb6cf570dfbf29a4a111b94abadfd4b8e4c35737c17abc51c89d880ee938a71fd7a2e57fe88ac081b WHIRLPOOL 768d84121d1081182223835ebd18478c2d76e65776253cf236f2d6e0816c00cc47367620a9a96d87890965cfd6320c06cb5e3e9d14f5df4627977e51c397df28
|
||||
DIST apertium-3.2.0.tar.gz 767311 SHA256 6ce2fdc85da5d1e50d69da2e50cc97a87b689476f2c83417765636d9a4b7e9ac SHA512 ec80d72480e414eb9a169241d0921b21009dde7c1da9a773f500f16ac785741be1f4a221c25b3b32e7847405f76e93b5feadb6f541170c0742718e27dfa1fb25 WHIRLPOOL 44b8c6fcda7abe363540d1b3ce344322bec60ff1b822ffb5f228a50b156f9660798a9aafa3c9ccf25652cf858be32efb41b06d5d05e7d8fd3284db7d81aac4a4
|
||||
EBUILD apertium-3.2.0.ebuild 809 SHA256 b29f782317ad942caafcc1acccaba6fa05d956c0835c76a5a17f5ca23b23a13c SHA512 bf18ca7bba88b6313db43af50b1517ca6f9cd8a570ae005204aac5c0b2b7286d05660b0ba92dda7267f6d2ed060ef471011bea0268cb4614c9085ce3ec8f1c61 WHIRLPOOL bd9f6f963eff60e26e6b4b143ca63ceb1748fa738af0d2ab372bb0fbbde2bc2b8ff0b89fad2f5b3f49896c3632faf57dabe36629164dba119e57ee990e047af5
|
||||
MISC ChangeLog 1199 SHA256 02cf3ea216478118fea78ff32f9fe0d2704a77e6bf9c76d3dbc96fc6926879dd SHA512 9f0b5ecb5afb26e8274879bdd0bdb6d1261ba3e2a3d5944d8a6d5e83ffa169c7f5eb026f37e2396ef396d82fa7fde2795456364080fcdb9980e29c5254e73006 WHIRLPOOL ed1191076cfc0a2845f1fc7694845f05f35f52f04c7007f4c120780c9fd2d3a030ab29f6dee0f1392702a98eaf4c1567bb3006442cad81aca18af958b01d1a3a
|
||||
MISC metadata.xml 295 SHA256 bebb8563fe7a9d882d60d2f6e6918a97ac248e24bd59eef456cba77c788e2527 SHA512 c8cf2d828fc5885b984f920fb05166fc895f0ed1370a490de5b768ec96c21ae2d19944fca384ebde6d02b17663da40d188cd96c5c346bfbb39a5f786de90a3aa WHIRLPOOL 3edcb659dfc1ce014cb02982dd66d691539a165e5a27b16364f0095303b099c02b85cf101c12976d56f21e1b6ba1a92e3a37909d608df7aebec0b55c71db1f50
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0.20 (GNU/Linux)
|
||||
|
||||
iEYEAREKAAYFAlG6va0ACgkQgAnW8HDreRaOzgCgu9fEbtTmjHhvn/YqdxzP5TL4
|
||||
WPkAoJZ0VFuIma7Oor18IrXJ3V7TtjYa
|
||||
=JAfn
|
||||
-----END PGP SIGNATURE-----
|
||||
|
@ -0,0 +1,43 @@
|
||||
configure.ac | 28 ++++++++++++++++------------
|
||||
1 file changed, 16 insertions(+), 12 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 0bfca01..2d8ec3b 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -183,19 +183,23 @@ AC_CHECK_FUNCS(strcasecmp)
|
||||
|
||||
if test x$(uname) != xDarwin;
|
||||
then
|
||||
-AC_CHECK_HEADER(pcreposix.h,
|
||||
- AC_CHECK_LIB(pcre, pcre_info,[
|
||||
- LIBS="$LIBS -lpcreposix -lpcre"
|
||||
- no_comp_check=yes],
|
||||
- AC_MSG_ERROR([*** unable to locate pcre library ***])),
|
||||
- AC_MSG_ERROR([*** unable to locate pcreposix.h include file ***]))
|
||||
+PKG_CHECK_MODULES([PCRE],
|
||||
+ [libpcre libpcreposix libpcrecpp],
|
||||
+ [LIBS="${LIBS} ${PCRE_LIBS}" no_comp_check=yes], [
|
||||
+ AC_CHECK_HEADER(pcreposix.h,
|
||||
+ AC_CHECK_LIB(pcre, pcre_version,[
|
||||
+ LIBS="$LIBS -lpcreposix -lpcre"
|
||||
+ no_comp_check=yes],
|
||||
+ AC_MSG_ERROR([*** unable to locate pcre library ***])),
|
||||
+ AC_MSG_ERROR([*** unable to locate pcreposix.h include file ***]))
|
||||
|
||||
-AC_CHECK_HEADER(pcrecpp.h,
|
||||
- AC_CHECK_LIB(pcrecpp,pcre_compile,[
|
||||
- LIBS="$LIBS -lpcrecpp"
|
||||
- no_comp_check=yes],
|
||||
- AC_MSG_ERROR([*** unable to locate pcrecpp library ***])),
|
||||
- AC_MSG_ERROR([*** unable to locate pcrecpp.h include file ***]))
|
||||
+ AC_CHECK_HEADER(pcrecpp.h,
|
||||
+ AC_CHECK_LIB(pcrecpp,pcre_compile,[
|
||||
+ LIBS="$LIBS -lpcrecpp"
|
||||
+ no_comp_check=yes],
|
||||
+ AC_MSG_ERROR([*** unable to locate pcrecpp library ***])),
|
||||
+ AC_MSG_ERROR([*** unable to locate pcrecpp.h include file ***]))
|
||||
+ ])
|
||||
fi
|
||||
|
||||
|
@ -0,0 +1,12 @@
|
||||
# ChangeLog for sys-fs/squashfuse
|
||||
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfuse/ChangeLog,v 1.2 2013/06/14 09:20:10 zmedico Exp $
|
||||
|
||||
14 Jun 2013; Zac Medico <zmedico@gentoo.org> squashfuse-0.1_p20130530.ebuild:
|
||||
Use slot-operator deps.
|
||||
|
||||
*squashfuse-0.1_p20130530 (14 Jun 2013)
|
||||
|
||||
14 Jun 2013; Zac Medico <zmedico@gentoo.org> +metadata.xml,
|
||||
+squashfuse-0.1_p20130530.ebuild:
|
||||
Add sys-fs/squashfuse
|
@ -0,0 +1,14 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST squashfuse-0.1_p20130530.zip 70224 SHA256 821c2e3ea484315f27b424326a7488c8880a64ab5d212774864dcb0b5d95675d SHA512 1e2ba5a61cdc5eac3fcf13d5d2a55d0656ac247b057f7cff9ef5365eb59f52fa6159cd2ea73475627e62f53fab72c5d12819161e794c683d53059f7667a774f0 WHIRLPOOL 0d07722d4d7f22e4d2dc68b0eedbaf9f3d4d09a6eeaac31bd3956996e73842750f056eb88a1ba68bd4fb8584714913c09a0550180c31bd2ec182bb1901beac73
|
||||
EBUILD squashfuse-0.1_p20130530.ebuild 1188 SHA256 161fd97f3a91f0aa024d7a36934e34450da1cac45abc15cf1dc867701de9aebe SHA512 cf3ac0d75bc8b9fb5c17ee165974c74910c5153e49577452736aa6e7dd9f625f0fe7f8e67d6c8d3ccbe1f4254ee0cbbf54a29619086f670020caa4952911f4ab WHIRLPOOL 84b9792c788e884e73fa721f7c2c28eb9fb070f345d181bc136525d364818ad335c8300f661c5819113c814e51c635537cfedf8dec9378e11f7a103af88449e6
|
||||
MISC ChangeLog 478 SHA256 c0a7f4ffddacc02609874a5afd5412ea79c31ab26773cf03797f22f7adcb624f SHA512 cff6800ab0c7598e8497aac4b075991924dffb03e287751e1175b7ecb6eab498bd9f1fbcbf293ca2449a26ea69c76faee776ebc3777f0b5ea9dda52a6fda0b13 WHIRLPOOL cadf67f8958b730373f632791ac70017c576d00818abebe562e2eafc302782c4b8d5dc6547b2d66fef955facfb87cd5e8577cfd00f09b1e6b3b0b4b38783d5b0
|
||||
MISC metadata.xml 443 SHA256 9d168a84cfbd0e343e8364f21f033d3f02c47ae80deb898edf971738ec419f45 SHA512 d4249db406307f475a29147c92f18303d279b2e13a4a53e168015ab6780f6bc63147c2af1ac1625775f52a992ab4ee0e8c6e96bfe36f3d3269360debbb0ee9f3 WHIRLPOOL e778ddb84b44682d9df064232bfb2d54f51fbf108c62ca3d8520eb18f9242e126ff784d30e3256f7f51122755918981087efb1c1095b0c6d2f904940f02b7580
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0.20 (GNU/Linux)
|
||||
|
||||
iEYEAREIAAYFAlG64EwACgkQ/ejvha5XGaPAUQCeIAGhnAFX66Ls5zIPqK7CBMhP
|
||||
mAYAn226Mka4JHlnmXxYG42H7HaF/x8Y
|
||||
=++jU
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<bugs-to>mailto:dave@vasilevsky.ca</bugs-to>
|
||||
<changelog>https://github.com/vasi/squashfuse/commits/master</changelog>
|
||||
<doc>https://raw.github.com/vasi/squashfuse/master/README</doc>
|
||||
</upstream>
|
||||
<maintainer>
|
||||
<email>zmedico@gentoo.org</email>
|
||||
<name>Zac Medico</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
@ -0,0 +1,45 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfuse/squashfuse-0.1_p20130530.ebuild,v 1.2 2013/06/14 09:20:10 zmedico Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="FUSE filesystem to mount squashfs archives"
|
||||
HOMEPAGE="https://github.com/vasi/squashfuse"
|
||||
EGIT_COMMIT="f03158f49cb4adbb6459cb2a1898e586b488cb10"
|
||||
SRC_URI="https://github.com/vasi/squashfuse/archive/${EGIT_COMMIT}.zip -> ${P}.zip"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~arm-linux ~x86-linux"
|
||||
IUSE="lzma lzo +zlib"
|
||||
REQUIRED_USE="|| ( lzma zlib lzo )"
|
||||
|
||||
COMMON_DEPEND="
|
||||
>=sys-fs/fuse-2.8.6:=
|
||||
lzma? ( >=app-arch/xz-utils-5.0.4:= )
|
||||
zlib? ( >=sys-libs/zlib-1.2.5-r2:= )
|
||||
lzo? ( >=dev-libs/lzo-2.06:= )
|
||||
"
|
||||
DEPEND="app-arch/unzip
|
||||
${COMMON_DEPEND}"
|
||||
RDEPEND="${COMMON_DEPEND}"
|
||||
S=${WORKDIR}
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
mv ${PN}-${EGIT_COMMIT}/* ./ || die
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e "1s:\\[0\\.1\\]:[${PV}]:" configure.ac || die
|
||||
AT_M4DIR=${S}/m4 eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
$(use lzma || echo --without-xz) \
|
||||
$(use lzo || echo --without-lzo) \
|
||||
$(use zlib || echo --without-zlib)
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.9.0.ebuild,v 1.1 2013/04/29 20:20:04 jlec Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.9.6.ebuild,v 1.1 2013/06/14 06:55:44 jlec Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
ETYPE="sources"
|
||||
K_WANT_GENPATCHES="base extras"
|
||||
K_GENPATCHES_VER="1"
|
||||
K_GENPATCHES_VER="10"
|
||||
K_DEBLOB_AVAILABLE="1"
|
||||
inherit kernel-2 eutils
|
||||
detect_version
|
||||
detect_arch
|
||||
|
||||
AUFS_VERSION=3.x_p20130429
|
||||
AUFS_VERSION=3.9_p20130520
|
||||
AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
|
||||
# git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs3.9 > aufs-sources-${AUFS_VERSION}.tar
|
||||
AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
|
@ -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.82.ebuild,v 1.1 2013/06/14 07:55:34 tomwij Exp $
|
||||
|
||||
EAPI="5"
|
||||
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.4.49.ebuild,v 1.1 2013/06/14 07:55:34 tomwij Exp $
|
||||
|
||||
EAPI="5"
|
||||
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.9.6.ebuild,v 1.1 2013/06/14 07:55:34 tomwij Exp $
|
||||
|
||||
EAPI="5"
|
||||
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