diff --git a/app-accessibility/brltty/Manifest b/app-accessibility/brltty/Manifest index dcfde2e298b5..6e11ab2ba9c8 100644 --- a/app-accessibility/brltty/Manifest +++ b/app-accessibility/brltty/Manifest @@ -1,2 +1 @@ -DIST brltty-5.0.tar.xz 2213768 SHA256 e3613fa2e8c3450d7e7bee7107235344c474dc310af5adcc19761f361e8c8b92 SHA512 2a66f2fcf0ada9a499450e14c11efe2cffd1e9b465755aab60093f383c596d4f4f3be0651e6559df143fc1547a5d5be24caf485596cb8ad691b029de110f8dcc WHIRLPOOL 3f36f036f5eb6479e9c42cc79eead215d7133cfb6d2c4de3e4eaa6f776299d021c7830e32c914b7cb7686bd4d31902c0762d309702ef686ab7b37aff6ee4161a DIST brltty-5.2.tar.xz 2532684 SHA256 f1293940317a675d0eaeaf3f363bbfe4bfaa5225c2116123a61ce2d3c71943f7 SHA512 8e16701e9c9d776c76e3ad0cb4319b2753295fea229bd3f60cb0dffc0b6946037e6f98daafae873238c4eff90d4b8ddb697b7d425e700c5a098aba8fed9eed3f WHIRLPOOL 33fcf326be381309f2baa3f59807145a0ca3a614f32b0b27e4b76af1c1f46f6459f7be1d629002538588ce71ab017b52bfc642fc06aa2c3f883aba272e61f20e diff --git a/app-accessibility/brltty/brltty-5.0-r3.ebuild b/app-accessibility/brltty/brltty-5.0-r3.ebuild deleted file mode 100644 index e98a5e69b0d7..000000000000 --- a/app-accessibility/brltty/brltty-5.0-r3.ebuild +++ /dev/null @@ -1,185 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/brltty-5.0-r3.ebuild,v 1.12 2015/04/08 07:30:36 mgorny Exp $ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) -FINDLIB_USE="ocaml" - -inherit findlib eutils multilib toolchain-funcs java-pkg-opt-2 flag-o-matic \ - autotools udev systemd python-r1 - -DESCRIPTION="Daemon that provides access to the Linux/Unix console for a blind person" -HOMEPAGE="http://mielke.cc/brltty/" -SRC_URI="http://mielke.cc/brltty/archive/${P}.tar.xz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 x86" -IUSE="+api +beeper bluetooth +contracted-braille doc +fm gpm iconv icu - java +midi ncurses nls ocaml +pcm python usb +speech - tcl X" -REQUIRED_USE="doc? ( api ) - java? ( api ) - ocaml? ( api ) - python? ( api ) - tcl? ( api )" - -COMMON_DEP="bluetooth? ( net-wireless/bluez ) - gpm? ( >=sys-libs/gpm-1.20 ) - iconv? ( virtual/libiconv ) - icu? ( dev-libs/icu:= ) - python? ( ${PYTHON_DEPS} ) - ncurses? ( sys-libs/ncurses ) - nls? ( virtual/libintl ) - tcl? ( >=dev-lang/tcl-8.4.15:0= ) - usb? ( virtual/libusb:0 ) - X? ( x11-libs/libXaw )" -DEPEND="virtual/pkgconfig - java? ( >=virtual/jdk-1.4 ) - python? ( >=dev-python/cython-0.16[${PYTHON_USEDEP}] ) - ${COMMON_DEP}" -RDEPEND="java? ( >=virtual/jre-1.4 ) - ${COMMON_DEP}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-fix-ldflags.patch \ - "${FILESDIR}"/${P}-udev.patch \ - "${FILESDIR}"/${P}-respect-AR.patch - - java-pkg-opt-2_src_prepare - - # The code runs `pkg-config` directly instead of locating a suitable - # pkg-config wrapper (or respecting $PKG_CONFIG). - sed -i \ - -e 's/\/${PKG_CONFIG:-pkg-config}/' \ - aclocal.m4 configure.ac || die - - # We run eautoconf instead of using eautoreconf because brltty uses - # a custom build system that uses autoconf without the rest of the - # autotools. - eautoconf - python_copy_sources -} - -src_configure() { - tc-export AR LD PKG_CONFIG - # override prefix in order to install into / - # braille terminal needs to be available as soon in the boot process as - # possible - # Also override localstatedir so that the lib/brltty directory is installed - # correctly. - # Disable stripping since we do that ourselves. - local myconf=( - --prefix=/ - --localedir=/usr/share/locale - --includedir=/usr/include - --localstatedir=/var - --disable-stripping - --with-install-root="${D}" - --with-writable-directory="/run/brltty" - $(use_enable api) - $(use_with beeper beep-package) - $(use_enable contracted-braille) - $(use_with fm fm-package) - $(use_enable gpm) - $(use_enable iconv) - $(use_enable icu) - $(use_enable java java-bindings) - $(use_with midi midi-package) - $(use_enable nls i18n) - $(use_enable ocaml ocaml-bindings) - $(use_with pcm pcm-package) - $(use_enable speech speech-support) - $(use_enable tcl tcl-bindings) - $(use_enable X x) - $(use_with bluetooth bluetooth-package) - $(use_with ncurses curses) - $(use_with usb usb-package) ) - - econf "${myconf[@]}" - - if use python; then - myconf+=( $(use_enable python python-bindings ) ) - - python_configure() { - econf "${myconf[@]}" - } - python_foreach_impl run_in_build_dir python_configure - fi -} - -src_compile() { - local JAVAC_CONF="" - local OUR_JNI_FLAGS="" - if use java; then - OUR_JNI_FLAGS="$(java-pkg_get-jni-cflags)" - JAVAC_CONF="${JAVAC} -encoding UTF-8 $(java-pkg_javac-args)" - fi - - emake JAVA_JNI_FLAGS="${OUR_JNI_FLAGS}" JAVAC="${JAVAC_CONF}" - - if use python; then - python_build() { - cd "Bindings/Python" || die - emake - } - python_foreach_impl run_in_build_dir python_build - fi -} - -src_install() { - if use ocaml; then - findlib_src_preinst - fi - - emake OCAML_LDCONF= install - - if use python; then - python_install() { - cd "Bindings/Python" || die - emake install - } - python_foreach_impl run_in_build_dir python_install - fi - - if use java; then - # make install puts the _java.so there, and no it's not $(get_libdir) - rm -rf "${D}/usr/lib/java" - java-pkg_doso Bindings/Java/libbrlapi_java.so - java-pkg_dojar Bindings/Java/brlapi.jar - fi - - insinto /etc - doins Documents/brltty.conf - udev_newrules Autostart/Udev/udev.rules 70-brltty.rules - newinitd "${FILESDIR}"/brltty.rc brltty - systemd_dounit Autostart/Systemd/brltty.service - systemd_dotmpfilesd "${FILESDIR}/${PN}.tmpfiles.conf" - - libdir="$(get_libdir)" - mkdir -p "${D}"/usr/${libdir}/ - mv "${D}"/${libdir}/*.a "${D}"/usr/${libdir}/ - gen_usr_ldscript libbrlapi.so - - cd Documents - mv Manual-BRLTTY/English/BRLTTY.txt BRLTTY-en.txt - mv Manual-BRLTTY/French/BRLTTY.txt BRLTTY-fr.txt - mv Manual-BrlAPI/English/BrlAPI.txt BrlAPI-en.txt - dodoc CONTRIBUTORS ChangeLog HISTORY README* TODO BRLTTY-*.txt - dohtml -r Manual-BRLTTY - if use doc; then - dohtml -r Manual-BrlAPI - dodoc BrlAPI-*.txt - fi -} - -pkg_postinst() { - elog - elog please be sure "${ROOT}"etc/brltty.conf is correct for your system. - elog - elog To make brltty start on boot, type this command as root: - elog - elog rc-update add brltty boot -} diff --git a/app-accessibility/brltty/files/brltty-5.0-fix-ldflags.patch b/app-accessibility/brltty/files/brltty-5.0-fix-ldflags.patch deleted file mode 100644 index e60ea9a4e509..000000000000 --- a/app-accessibility/brltty/files/brltty-5.0-fix-ldflags.patch +++ /dev/null @@ -1,56 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -377,7 +377,7 @@ - case "${host_os}" - in - linux*|gnu*|openbsd*|freebsd*|kfreebsd*|netbsd*|*qnx*|cygwin*|mingw*|elf*) -- brltty_mkmod_ld_make="-shared" -+ brltty_mkmod_ld_make="-shared ${LDFLAGS}" - ;; - solaris*) - brltty_mkmod_ld_make="-G" -@@ -404,7 +404,7 @@ - esac - if test "${GCC}" = "yes" - then -- brltty_cv_prog_mkmod="\$(CC) ${brltty_mkmod_gcc_make=-shared} BRLTTY_OPTIONS_LD2CC([${brltty_mkmod_ld_options}]) -o" -+ brltty_cv_prog_mkmod="\$(CC) ${brltty_mkmod_gcc_make=-shared} ${LDFLAGS} BRLTTY_OPTIONS_LD2CC([${brltty_mkmod_ld_options}]) -o" - else - brltty_cv_prog_mkmod="\$(LD) ${brltty_mkmod_ld_make} ${brltty_mkmod_ld_options} -o" - fi]) -@@ -414,7 +414,7 @@ - case "${host_os}" - in - linux*|gnu*|openbsd*|freebsd*|kfreebsd*|netbsd*|*qnx*|elf*) -- brltty_mklib_ld_make="-shared" -+ brltty_mklib_ld_make="-shared ${LDFLAGS}" - brltty_mklib_ld_options="-soname" - ;; - solaris*) -@@ -449,7 +449,7 @@ - esac - if test "${GCC}" = "yes" - then -- brltty_cv_prog_mklib="\$(CC) ${brltty_mklib_gcc_make=-shared} BRLTTY_OPTIONS_LD2CC([${brltty_mklib_ld_options+${brltty_mklib_ld_options} }]) -o" -+ brltty_cv_prog_mklib="\$(CC) ${brltty_mklib_gcc_make=-shared} ${LDFLAGS} BRLTTY_OPTIONS_LD2CC([${brltty_mklib_ld_options+${brltty_mklib_ld_options} }]) -o" - else - brltty_cv_prog_mklib="\$(LD) ${brltty_mklib_ld_make} ${brltty_mklib_ld_options+${brltty_mklib_ld_options} } -o" - fi]) ---- a/Bindings/OCaml/Makefile.in -+++ b/Bindings/OCaml/Makefile.in -@@ -55,13 +55,13 @@ - all : $(OCAML_FILES) - - $(OCAML_CLIBS) : brlapi_stubs.$O brlapi -- $(OCAMLMKLIB) $(API_LDFLAGS) -oc $(OCAML_LIB)_stubs brlapi_stubs.$O -+ $(OCAMLMKLIB) -ldopt "$(LDFLAGS)" $(API_LDFLAGS) -oc $(OCAML_LIB)_stubs brlapi_stubs.$O - - $(OCAML_BCLIB) : $(OCAML_CLIBS) brlapi.cmo - $(OCAMLC) -a $(OCAMLMKLIB_FLAGS) -o $(OCAML_LIB).cma brlapi.cmo - - $(OCAML_NCLIB) : $(OCAML_CLIBS) brlapi.cmx -- $(OCAMLMKLIB) $(OCAMLMKLIBOPT_FLAGS) -o $(OCAML_LIB) brlapi.cmx -+ $(OCAMLMKLIB) -ldopt "$(LDFLAGS)" $(OCAMLMKLIBOPT_FLAGS) -o $(OCAML_LIB) brlapi.cmx - - brlapi.cmi: brlapi.mli - $(OCAMLC) -o $@ -c brlapi.mli diff --git a/app-accessibility/brltty/files/brltty-5.0-respect-AR.patch b/app-accessibility/brltty/files/brltty-5.0-respect-AR.patch deleted file mode 100644 index 09ae62973c2e..000000000000 --- a/app-accessibility/brltty/files/brltty-5.0-respect-AR.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur brltty-4.5/Programs/Makefile.in brltty-4.5-new/Programs/Makefile.in ---- brltty-4.5/Programs/Makefile.in 2013-03-27 15:51:35.000000000 -0700 -+++ brltty-4.5-new/Programs/Makefile.in 2013-09-19 14:57:56.268106076 -0700 -@@ -387,7 +387,7 @@ - [ ! -f lib.def ] || mv lib.def $(API_DEF) - - $(API_ARC): $(API_OBJS) -- ar rc $@ $(API_OBJS) -+ $(AR) rc $@ $(API_OBJS) - $(RANLIB) $@ - - brlapi_client.$O: diff --git a/app-accessibility/brltty/files/brltty-5.0-udev.patch b/app-accessibility/brltty/files/brltty-5.0-udev.patch deleted file mode 100644 index 6500a2af8ed6..000000000000 --- a/app-accessibility/brltty/files/brltty-5.0-udev.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff -Naur brltty-5.0/Autostart/Udev/udev.rules brltty-5.0.new/Autostart/Udev/udev.rules ---- brltty-5.0/Autostart/Udev/udev.rules 2014-01-27 10:39:20.000000000 -0800 -+++ brltty-5.0.new/Autostart/Udev/udev.rules 2014-02-09 04:24:08.146802299 -0800 -@@ -174,20 +174,22 @@ - # FreedomScientific [Focus Blue] - ENV{PRODUCT}=="f4e/114/*", ENV{BRLTTY_BRAILLE_DRIVER}="fs", GOTO="brltty_usb_run" - -+# Seika rules are commented out, because they conflict with USB-to-serial -+# converters. - # Device: 10C4:EA60 - # Generic Identifier - # Vendor: Cygnal Integrated Products, Inc. - # Product: CP210x UART Bridge / myAVR mySmartUSB light - # BrailleMemo [all models] - # Seika [Braille Display] --ENV{PRODUCT}=="10c4/ea60/*", ENV{BRLTTY_BRAILLE_DRIVER}="mm,sk", GOTO="brltty_usb_run" -+#ENV{PRODUCT}=="10c4/ea60/*", ENV{BRLTTY_BRAILLE_DRIVER}="mm,sk", GOTO="brltty_usb_run" - - # Device: 10C4:EA80 - # Generic Identifier - # Vendor: Cygnal Integrated Products, Inc. - # Product: CP210x UART Bridge - # Seika [Note Taker] --ENV{PRODUCT}=="10c4/ea80/*", ENV{BRLTTY_BRAILLE_DRIVER}="sk", GOTO="brltty_usb_run" -+#ENV{PRODUCT}=="10c4/ea80/*", ENV{BRLTTY_BRAILLE_DRIVER}="sk", GOTO="brltty_usb_run" - - # Device: 1C71:C005 - # HumanWare [all models] diff --git a/app-cdr/k3b/Manifest b/app-cdr/k3b/Manifest index 753439e15be9..dd6becef89b3 100644 --- a/app-cdr/k3b/Manifest +++ b/app-cdr/k3b/Manifest @@ -1,3 +1 @@ -DIST k3b-2.0.2.tar.bz2 12833321 SHA256 af176f29c1d2339c4648d461476227cb07bcd0c75056f2a4006f253e3ef5b7cd SHA512 e0a3d357decf7120a67d391d2311aaa5992f42cddbd20c5dc67f3d0e2ce15d6c53c0978cf2de6c09b96d57d273bca915fbbc0ca28547d708e2db20c795b86aa9 WHIRLPOOL 0dc975344962c98c20f9a03e3fb9225499668bed206ed61ea58b17ebe4594c2f71e237cdfc94e84a85e08b585cad6d1eee1415b129e998da3664d0544218a171 -DIST k3b-2.0.2_p20140225.tar.xz 6297620 SHA256 562ea4335babd018e46d1d2bcc7567320ca8a888fb03562d4c14222dc2b68c33 SHA512 8d3450b4df42df9eef619b8ba05258e9e98d1197be4472f6b19d467c8c1d91436aacbf59d36c773d6576f3b179601dccff4cae695a73fada3504410c7f26af35 WHIRLPOOL e5d5bd692423027f40c7e6ff0ef7d27a518e95402f09988e7b8417bcb2dda9b9cdb187c033c006f27c3dac9fe34e3ba0e5d85e26c4ddd2fcb82a1065f4b58ad7 DIST k3b-2.0.3a.tar.xz 9864468 SHA256 2d0bb2746802c1d3ad7ddd10e29234cf2053074f376feb200306a5570c39c081 SHA512 008d69f3d60dfcd39c787c8fb0b50cdf7b29f1cf551c2c0aa0b6e995ec9d67b26edcb0670d5cd428afcc4e2a60c9e6170a9316b90978dfcc3693d27db98e7472 WHIRLPOOL 5cc63f7355ead8585295c6be8909a07fb0f34df77c8feff14c42daffc52679e27fbb28f1b1912c1bdf22e9c79b4369b2af6f3f8592f25af0f401a59e2b3a2c50 diff --git a/app-cdr/k3b/files/k3b-2.0.2-ffmpeg.patch b/app-cdr/k3b/files/k3b-2.0.2-ffmpeg.patch deleted file mode 100644 index 2878b1edcb06..000000000000 --- a/app-cdr/k3b/files/k3b-2.0.2-ffmpeg.patch +++ /dev/null @@ -1,96 +0,0 @@ -commit 61ca30beb978f68e72257408777c6433f33129bd -Author: Michal Malek -Date: Sun Aug 28 20:18:53 2011 +0200 - - Fixed compilation with new FFMPEG - - BUG: 274817 - FIXED-IN: 2.0.3 - -diff --git a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -index 0ad59fc..0c5f366 100644 ---- a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -+++ b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -@@ -109,7 +109,13 @@ bool K3bFFMpegFile::open() - #else - ::AVCodecContext* codecContext = d->formatContext->streams[0]->codec; - #endif -- if( codecContext->codec_type != CODEC_TYPE_AUDIO ) { -+ if( codecContext->codec_type != -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 64, 0) -+ AVMEDIA_TYPE_AUDIO) -+#else -+ CODEC_TYPE_AUDIO) -+#endif -+ { - kDebug() << "(K3bFFMpegFile) not a simple audio stream: " << m_filename; - return false; - } -@@ -225,8 +231,11 @@ QString K3bFFMpegFile::typeComment() const - QString K3bFFMpegFile::title() const - { - // FIXME: is this UTF8 or something?? -- if( d->formatContext->title[0] != '\0' ) -- return QString::fromLocal8Bit( d->formatContext->title ); -+ AVDictionaryEntry *ade = av_dict_get( d->formatContext->metadata, "TITLE", NULL, 0 ); -+ if( ade == NULL ) -+ return QString(); -+ if( ade->value != '\0' ) -+ return QString::fromLocal8Bit( ade->value ); - else - return QString(); - } -@@ -235,8 +244,11 @@ QString K3bFFMpegFile::title() const - QString K3bFFMpegFile::author() const - { - // FIXME: is this UTF8 or something?? -- if( d->formatContext->author[0] != '\0' ) -- return QString::fromLocal8Bit( d->formatContext->author ); -+ AVDictionaryEntry *ade = av_dict_get( d->formatContext->metadata, "ARTIST", NULL, 0 ); -+ if( ade == NULL ) -+ return QString(); -+ if( ade->value != '\0' ) -+ return QString::fromLocal8Bit( ade->value ); - else - return QString(); - } -@@ -245,8 +257,11 @@ QString K3bFFMpegFile::author() const - QString K3bFFMpegFile::comment() const - { - // FIXME: is this UTF8 or something?? -- if( d->formatContext->comment[0] != '\0' ) -- return QString::fromLocal8Bit( d->formatContext->comment ); -+ AVDictionaryEntry *ade = av_dict_get( d->formatContext->metadata, "COMMENT", NULL, 0 ); -+ if( ade == NULL ) -+ return QString(); -+ if( ade->value != '\0' ) -+ return QString::fromLocal8Bit( ade->value ); - else - return QString(); - } -@@ -309,8 +324,13 @@ int K3bFFMpegFile::fillOutputBuffer() - #if LIBAVCODEC_VERSION_MAJOR < 52 - int len = ::avcodec_decode_audio( - #else -+ #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 64, 0) -+ int len = ::avcodec_decode_audio3( -+ #else - int len = ::avcodec_decode_audio2( -+ #endif - #endif -+ - #ifdef FFMPEG_BUILD_PRE_4629 - &d->formatContext->streams[0]->codec, - #else -@@ -318,7 +338,11 @@ int K3bFFMpegFile::fillOutputBuffer() - #endif - (short*)d->alignedOutputBuffer, - &d->outputBufferSize, -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 64, 0) -+ &d->packet ); -+#else - d->packetData, d->packetSize ); -+#endif - - if( d->packetSize <= 0 || len < 0 ) - ::av_free_packet( &d->packet ); diff --git a/app-cdr/k3b/files/k3b-2.0.2-ffmpeg2.patch b/app-cdr/k3b/files/k3b-2.0.2-ffmpeg2.patch deleted file mode 100644 index 5c34e0891ded..000000000000 --- a/app-cdr/k3b/files/k3b-2.0.2-ffmpeg2.patch +++ /dev/null @@ -1,19 +0,0 @@ -https://bugs.gentoo.org/show_bug.cgi?id=476494 - -A better patch using avcodec_decode_audio4 will be needed but for now this -fixes the problem. - -Index: k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -=================================================================== ---- k3b-2.0.2.orig/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -+++ k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -@@ -37,6 +37,9 @@ extern "C" { - - #include - -+#ifndef AVCODEC_MAX_AUDIO_FRAME_SIZE -+#define AVCODEC_MAX_AUDIO_FRAME_SIZE (192000 * 4) -+#endif - - #if LIBAVFORMAT_BUILD < 4629 - #define FFMPEG_BUILD_PRE_4629 diff --git a/app-cdr/k3b/files/k3b-2.0.2-libav9.patch b/app-cdr/k3b/files/k3b-2.0.2-libav9.patch deleted file mode 100644 index 42ec6632da68..000000000000 --- a/app-cdr/k3b/files/k3b-2.0.2-libav9.patch +++ /dev/null @@ -1,22 +0,0 @@ -Index: k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -=================================================================== ---- k3b-2.0.2.orig/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 2013-04-22 17:46:13.523959500 +0200 -+++ k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 2013-04-22 18:40:49.890007513 +0200 -@@ -95,7 +95,7 @@ bool K3bFFMpegFile::open() - } - - // analyze the streams -- ::av_find_stream_info( d->formatContext ); -+ ::avformat_find_stream_info( d->formatContext, 0 ); - - // we only handle files containing one audio stream - if( d->formatContext->nb_streams != 1 ) { -@@ -129,7 +129,7 @@ bool K3bFFMpegFile::open() - - // open the codec on our context - kDebug() << "(K3bFFMpegFile) found codec for " << m_filename; -- if( ::avcodec_open( codecContext, d->codec ) < 0 ) { -+ if( ::avcodec_open2( codecContext, d->codec, 0 ) < 0 ) { - kDebug() << "(K3bFFMpegDecoderFactory) could not open codec."; - return false; - } diff --git a/app-cdr/k3b/files/k3b-2.0.2-libavformat54.patch b/app-cdr/k3b/files/k3b-2.0.2-libavformat54.patch deleted file mode 100644 index 174a776b8b93..000000000000 --- a/app-cdr/k3b/files/k3b-2.0.2-libavformat54.patch +++ /dev/null @@ -1,22 +0,0 @@ -Index: k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -=================================================================== ---- k3b-2.0.2.orig/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -+++ k3b-2.0.2/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp -@@ -88,7 +88,7 @@ bool K3bFFMpegFile::open() - close(); - - // open the file -- int err = ::av_open_input_file( &d->formatContext, m_filename.toLocal8Bit(), 0, 0, 0 ); -+ int err = ::avformat_open_input( &d->formatContext, m_filename.toLocal8Bit(), 0, NULL); - if( err < 0 ) { - kDebug() << "(K3bFFMpegFile) unable to open " << m_filename << " with error " << err; - return false; -@@ -143,7 +143,7 @@ bool K3bFFMpegFile::open() - } - - // dump some debugging info -- ::dump_format( d->formatContext, 0, m_filename.toLocal8Bit(), 0 ); -+ ::av_dump_format( d->formatContext, 0, m_filename.toLocal8Bit(), 0 ); - - return true; - } diff --git a/app-cdr/k3b/k3b-2.0.2-r4.ebuild b/app-cdr/k3b/k3b-2.0.2-r4.ebuild deleted file mode 100644 index 0dd0c39068c3..000000000000 --- a/app-cdr/k3b/k3b-2.0.2-r4.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/k3b/k3b-2.0.2-r4.ebuild,v 1.8 2014/04/26 11:29:46 johu Exp $ - -EAPI=5 - -MULTIMEDIA_REQUIRED="always" -WEBKIT_REQUIRED="always" -KDE_HANDBOOK="optional" -KDE_SCM="git" - -# Translations are only in the tarballs, not in the git repo -if [[ ${PV} != *9999* ]]; then - KDE_LINGUAS="ast be bg ca ca@valencia cs csb da de el en_GB eo es et eu fi fr ga - gl he hi hne hr hu is it ja km ko ku lt mai nb nds nl nn oc pa pl pt pt_BR ro ru - se sk sl sv th tr uk zh_CN zh_TW" - - SRC_URI="mirror://sourceforge/${PN}/${P/_}.tar.bz2" - DOCS=( FAQ PERMISSIONS README ) - S=${WORKDIR}/${P/_*} -else - DOCS=( FAQ.txt PERMISSIONS.txt README.txt ) -fi - -inherit kde4-base - -DESCRIPTION="The CD/DVD Kreator for KDE" -HOMEPAGE="http://www.k3b.org/" - -LICENSE="GPL-2 FDL-1.2" -SLOT="4" -KEYWORDS="amd64 ~ppc x86" -IUSE="debug dvd emovix encode ffmpeg flac mad mp3 musepack sndfile sox taglib vcd vorbis" - -DEPEND=" - $(add_kdebase_dep libkcddb) - media-libs/libsamplerate - dvd? ( media-libs/libdvdread ) - ffmpeg? ( virtual/ffmpeg ) - flac? ( >=media-libs/flac-1.2[cxx] ) - mp3? ( media-sound/lame ) - mad? ( media-libs/libmad ) - musepack? ( >=media-sound/musepack-tools-444 ) - sndfile? ( media-libs/libsndfile ) - taglib? ( >=media-libs/taglib-1.5 ) - vorbis? ( media-libs/libvorbis ) -" -RDEPEND="${DEPEND} - $(add_kdebase_dep kdelibs 'udev,udisks(+)') - app-cdr/cdrdao - media-sound/cdparanoia - virtual/cdrtools - dvd? ( - >=app-cdr/dvd+rw-tools-7 - encode? ( media-video/transcode[dvd] ) - ) - emovix? ( media-video/emovix ) - sox? ( media-sound/sox ) - vcd? ( media-video/vcdimager ) -" - -DOCS+=( ChangeLog ) - -PATCHES=( - "${FILESDIR}/${P}-ffmpeg.patch" - "${FILESDIR}/${P}-libavformat54.patch" - "${FILESDIR}/${P}-libav9.patch" - "${FILESDIR}/${P}-ffmpeg2.patch" -) - -REQUIRED_USE=" - mp3? ( encode ) - sox? ( encode ) -" - -src_configure() { - mycmakeargs=( - -DK3B_BUILD_API_DOCS=OFF - -DK3B_BUILD_K3BSETUP=OFF - -DK3B_BUILD_WAVE_DECODER_PLUGIN=ON - -DK3B_ENABLE_HAL_SUPPORT=OFF - -DK3B_ENABLE_MUSICBRAINZ=OFF - $(cmake-utils_use debug K3B_DEBUG) - $(cmake-utils_use dvd K3B_ENABLE_DVD_RIPPING) - $(cmake-utils_use encode K3B_BUILD_EXTERNAL_ENCODER_PLUGIN) - $(cmake-utils_use ffmpeg K3B_BUILD_FFMPEG_DECODER_PLUGIN) - $(cmake-utils_use flac K3B_BUILD_FLAC_DECODER_PLUGIN) - $(cmake-utils_use mp3 K3B_BUILD_LAME_ENCODER_PLUGIN) - $(cmake-utils_use mad K3B_BUILD_MAD_DECODER_PLUGIN) - $(cmake-utils_use musepack K3B_BUILD_MUSE_DECODER_PLUGIN) - $(cmake-utils_use sndfile K3B_BUILD_SNDFILE_DECODER_PLUGIN) - $(cmake-utils_use sox K3B_BUILD_SOX_ENCODER_PLUGIN) - $(cmake-utils_use taglib K3B_ENABLE_TAGLIB) - $(cmake-utils_use vorbis K3B_BUILD_OGGVORBIS_DECODER_PLUGIN) - $(cmake-utils_use vorbis K3B_BUILD_OGGVORBIS_ENCODER_PLUGIN) - ) - kde4-base_src_configure -} - -pkg_postinst() { - kde4-base_pkg_postinst - - echo - elog "We don't install k3bsetup anymore because Gentoo doesn't need it." - elog "If you get warnings on start-up, uncheck the \"Check system" - elog "configuration\" option in the \"Misc\" settings window." - echo - - local group=cdrom - use kernel_linux || group=operator - elog "Make sure you have proper read/write permissions on the cdrom device(s)." - elog "Usually, it is sufficient to be in the ${group} group." - echo -} diff --git a/app-cdr/k3b/k3b-2.0.2_p20140225.ebuild b/app-cdr/k3b/k3b-2.0.2_p20140225.ebuild deleted file mode 100644 index c16835df981b..000000000000 --- a/app-cdr/k3b/k3b-2.0.2_p20140225.ebuild +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/k3b/k3b-2.0.2_p20140225.ebuild,v 1.1 2014/02/25 16:53:57 creffett Exp $ - -EAPI=5 - -MULTIMEDIA_REQUIRED="always" -WEBKIT_REQUIRED="always" -KDE_HANDBOOK="optional" -KDE_SCM="git" - -# Translations are not available, since this is a snapshot -#KDE_LINGUAS="ast be bg ca ca@valencia cs csb da de el en_GB eo es et eu fi fr ga -#gl he hi hne hr hu is it ja km ko ku lt mai nb nds nl nn oc pa pl pt pt_BR ro ru -#se sk sl sv th tr uk zh_CN zh_TW" - -SRC_URI="http://dev.gentoo.org/~creffett/distfiles/${P}.tar.xz" -DOCS=( FAQ.txt PERMISSIONS.txt README.txt ) - -inherit kde4-base - -DESCRIPTION="The CD/DVD Kreator for KDE" -HOMEPAGE="http://www.k3b.org/" - -LICENSE="GPL-2 FDL-1.2" -SLOT="4" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug dvd emovix encode ffmpeg flac mad mp3 musepack sndfile sox taglib vcd vorbis" - -DEPEND=" - $(add_kdebase_dep libkcddb) - media-libs/libsamplerate - dvd? ( media-libs/libdvdread ) - ffmpeg? ( virtual/ffmpeg ) - flac? ( >=media-libs/flac-1.2[cxx] ) - mp3? ( media-sound/lame ) - mad? ( media-libs/libmad ) - musepack? ( >=media-sound/musepack-tools-444 ) - sndfile? ( media-libs/libsndfile ) - taglib? ( >=media-libs/taglib-1.5 ) - vorbis? ( media-libs/libvorbis ) -" -RDEPEND="${DEPEND} - $(add_kdebase_dep kdelibs 'udev,udisks(+)') - app-cdr/cdrdao - media-sound/cdparanoia - virtual/cdrtools - dvd? ( - >=app-cdr/dvd+rw-tools-7 - encode? ( media-video/transcode[dvd] ) - ) - emovix? ( media-video/emovix ) - sox? ( media-sound/sox ) - vcd? ( media-video/vcdimager ) -" - -DOCS+=( ChangeLog ) - -PATCHES=( - "${FILESDIR}/${PN}-2.0.2-ffmpeg2.patch" -) - -REQUIRED_USE=" - mp3? ( encode ) - sox? ( encode ) -" - -src_configure() { - mycmakeargs=( - -DK3B_BUILD_API_DOCS=OFF - -DK3B_BUILD_K3BSETUP=OFF - -DK3B_BUILD_WAVE_DECODER_PLUGIN=ON - -DK3B_ENABLE_HAL_SUPPORT=OFF - -DK3B_ENABLE_MUSICBRAINZ=OFF - $(cmake-utils_use debug K3B_DEBUG) - $(cmake-utils_use dvd K3B_ENABLE_DVD_RIPPING) - $(cmake-utils_use encode K3B_BUILD_EXTERNAL_ENCODER_PLUGIN) - $(cmake-utils_use ffmpeg K3B_BUILD_FFMPEG_DECODER_PLUGIN) - $(cmake-utils_use flac K3B_BUILD_FLAC_DECODER_PLUGIN) - $(cmake-utils_use mp3 K3B_BUILD_LAME_ENCODER_PLUGIN) - $(cmake-utils_use mad K3B_BUILD_MAD_DECODER_PLUGIN) - $(cmake-utils_use musepack K3B_BUILD_MUSE_DECODER_PLUGIN) - $(cmake-utils_use sndfile K3B_BUILD_SNDFILE_DECODER_PLUGIN) - $(cmake-utils_use sox K3B_BUILD_SOX_ENCODER_PLUGIN) - $(cmake-utils_use taglib K3B_ENABLE_TAGLIB) - $(cmake-utils_use vorbis K3B_BUILD_OGGVORBIS_DECODER_PLUGIN) - $(cmake-utils_use vorbis K3B_BUILD_OGGVORBIS_ENCODER_PLUGIN) - ) - kde4-base_src_configure -} - -pkg_postinst() { - kde4-base_pkg_postinst - - echo - elog "We don't install k3bsetup anymore because Gentoo doesn't need it." - elog "If you get warnings on start-up, uncheck the \"Check system" - elog "configuration\" option in the \"Misc\" settings window." - echo - - local group=cdrom - use kernel_linux || group=operator - elog "Make sure you have proper read/write permissions on the cdrom device(s)." - elog "Usually, it is sufficient to be in the ${group} group." - echo -} diff --git a/app-crypt/gnupg/Manifest b/app-crypt/gnupg/Manifest index 3da456b48363..9a8a6465dfcb 100644 --- a/app-crypt/gnupg/Manifest +++ b/app-crypt/gnupg/Manifest @@ -1,4 +1,4 @@ DIST gnupg-1.4.19.tar.bz2 3713811 SHA256 7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86 SHA512 cce2a83efb05f963ad0f8afd04999cc852889d46b4cad4cf399a37fd6e69f0911a5ccaa0192cb891a941cfa93125349b481efa789a127e3c0aa2c5ba53672741 WHIRLPOOL 14eaddca0981f05757aa0751b9563837efd3f5943a422d5f29e0de94eb6233b85b8848a1f4816ab7e897d6e656c7c08705115d53ed89f554604ffd2009c3c39f DIST gnupg-2.0.26.tar.bz2 4303384 SHA256 7758e30dc382ae7a7167ed41b7f936aa50af5ea2d6fccdef663b5b750b65b8e0 SHA512 5dd23baaac764fd48abd235ed52a85a2c7fd68b98fcde45c0f294ddb3b5629e8b1bd894585fbed4e6a6cb2bc4a5552c098c3cf1a849fffa469424fd0a4fee726 WHIRLPOOL 8d9b30337957f6bfeddea29116d862ef0c0ddd06d59bc2799db236b91b2c6767aad6f37f2166fc431c5d9454eb41f49f3e261bc38d0e89361f0c467f4591cd5a DIST gnupg-2.0.27.tar.bz2 4424679 SHA256 57646d3e4b919fa1e5c8f1c0cf5fe1215333041c493a5ebc4b8f2978dbe930f2 SHA512 b05e75f5ef9881df9472818743c175cfe3254088086f36dc0fcf3d34e61f648f1775d90d404f6c622561df5066d972aadbf99ea8ec1290e5d7f7310f4ef2989e WHIRLPOOL abb353b20655002a0957e38d2b889fb5e6a47ba7b7546e1c70fc1f97cf42deeca8f2b061678983f3a160210f4eaf7529441246df1f9f1d875f5cc090456fdfb7 -DIST gnupg-2.1.3.tar.bz2 4875813 SHA256 213e7fb0d74bb4e53a2d3153f309ddc077528f2cfffa2af85f2a20cc7875c8ed SHA512 dfa462c490102f6924314aaba44af8492b3825f1431732ad4ac739124077c5ed85bc26b83e72d7b974a4008e7e9be5fa33eb7523c174e3e5291367f28d845de8 WHIRLPOOL e6fade4dfdcdf590b8bc793daf5f00f8feb1e537b1a28c87a98b2e364f171e6c9ae615e6e7742504097df71e636be894d8c95fad5f3f699f93071c73af3726ef +DIST gnupg-2.1.4.tar.bz2 4885653 SHA256 64127eedd868510f2bccccb22c507a4878ffa07495db16a0f976c67f56426cb0 SHA512 57cabe1c00b830d383790d346b2ac6aafe1df5c71728b3a6e7e9164d0ace7e9638c7c6c01849946fbff671ea8f76d9ec3ea8878419c80cbc70c918e98e955310 WHIRLPOOL 2990169789708c5b2c47c2b4bf64fcc62c1bf0e093ad1991e2975e9a8da3be76142482cf7a29afc9965d9f08aabb8244fabfbe92a9d4d772fb400f6d41ca1ab4 diff --git a/app-crypt/gnupg/files/gnupg-2.1.1-misc-cve.patch b/app-crypt/gnupg/files/gnupg-2.1.1-misc-cve.patch deleted file mode 100644 index 1a54a3d8d58f..000000000000 --- a/app-crypt/gnupg/files/gnupg-2.1.1-misc-cve.patch +++ /dev/null @@ -1,130 +0,0 @@ -From ed8383c618e124cfa708c9ee87563fcdf2f4649c Mon Sep 17 00:00:00 2001 -From: Daniel Kahn Gillmor -Date: Fri, 19 Dec 2014 18:53:34 -0500 -Subject: [PATCH] sm: Avoid double-free on iconv failure - -* sm/minip12.c: (p12_build) if jnlib_iconv_open fails, avoid -double-free of pwbuf. - --- - -Observed by Joshua Rogers , who proposed a -slightly different fix. - -Debian-Bug-Id: 773472 - -Added fix at a second place - wk. ---- - sm/minip12.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/sm/minip12.c b/sm/minip12.c -index 01b91b7..ca4d248 100644 ---- a/sm/minip12.c -+++ b/sm/minip12.c -@@ -2422,6 +2422,7 @@ p12_build (gcry_mpi_t *kparms, const void *cert, size_t certlen, - " requested charset '%s': %s\n", - charset, strerror (errno)); - gcry_free (pwbuf); -+ pwbuf = NULL; - goto failure; - } - -@@ -2436,6 +2437,7 @@ p12_build (gcry_mpi_t *kparms, const void *cert, size_t certlen, - " requested charset '%s': %s\n", - charset, strerror (errno)); - gcry_free (pwbuf); -+ pwbuf = NULL; - jnlib_iconv_close (cd); - goto failure; - } --- -1.7.10.4 - -From b0b3803e8c2959dd67ca96debc54b5c6464f0d41 Mon Sep 17 00:00:00 2001 -From: Daniel Kahn Gillmor -Date: Fri, 19 Dec 2014 18:07:55 -0500 -Subject: [PATCH] scd: Avoid double-free on error condition in scd - -* scd/command.c (cmd_readkey): avoid double-free of cert - --- - -When ksba_cert_new() fails, cert will be double-freed. - -Debian-Bug-Id: 773471 - -Original patch changed by wk to do the free only at leave. ---- - scd/command.c | 6 ++---- - 1 file changed, 2 insertions(+), 4 deletions(-) - -diff --git a/scd/command.c b/scd/command.c -index dd4191f..1cc580a 100644 ---- a/scd/command.c -+++ b/scd/command.c -@@ -804,10 +804,8 @@ cmd_readkey (assuan_context_t ctx, char *line) - - rc = ksba_cert_new (&kc); - if (rc) -- { -- xfree (cert); -- goto leave; -- } -+ goto leave; -+ - rc = ksba_cert_init_from_mem (kc, cert, ncert); - if (rc) - { --- -1.7.10.4 - -From abd5f6752d693b7f313c19604f0723ecec4d39a6 Mon Sep 17 00:00:00 2001 -From: Werner Koch -Date: Mon, 22 Dec 2014 12:16:46 +0100 -Subject: [PATCH] dirmngr,gpgsm: Return NULL on fail - -* dirmngr/ldapserver.c (ldapserver_parse_one): Set SERVER to NULL. -* sm/gpgsm.c (parse_keyserver_line): Ditto. --- - -Reported-by: Joshua Rogers - - "If something inside the ldapserver_parse_one function failed, - 'server' would be freed, then returned, leading to a - use-after-free. This code is likely copied from sm/gpgsm.c, which - was also susceptible to this bug." - -Signed-off-by: Werner Koch ---- - dirmngr/ldapserver.c | 1 + - sm/gpgsm.c | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/dirmngr/ldapserver.c b/dirmngr/ldapserver.c -index 20a574c..5808c5b 100644 ---- a/dirmngr/ldapserver.c -+++ b/dirmngr/ldapserver.c -@@ -125,6 +125,7 @@ ldapserver_parse_one (char *line, - { - log_info (_("%s:%u: skipping this line\n"), filename, lineno); - ldapserver_list_free (server); -+ server = NULL; - } - - return server; -diff --git a/sm/gpgsm.c b/sm/gpgsm.c -index 3398d17..72bceb4 100644 ---- a/sm/gpgsm.c -+++ b/sm/gpgsm.c -@@ -862,6 +862,7 @@ parse_keyserver_line (char *line, - { - log_info (_("%s:%u: skipping this line\n"), filename, lineno); - keyserver_list_free (server); -+ server = NULL; - } - - return server; --- -1.7.10.4 - diff --git a/app-crypt/gnupg/files/gnupg-2.1.3-dirmngr-Fix-segfault-in-ldap-engine.patch b/app-crypt/gnupg/files/gnupg-2.1.3-dirmngr-Fix-segfault-in-ldap-engine.patch deleted file mode 100644 index ca9789609b50..000000000000 --- a/app-crypt/gnupg/files/gnupg-2.1.3-dirmngr-Fix-segfault-in-ldap-engine.patch +++ /dev/null @@ -1,29 +0,0 @@ -From c3216513bf12cdeec154b6430a50ef6dfd271ee6 Mon Sep 17 00:00:00 2001 -From: Kristian Fiskerstrand -Date: Sun, 12 Apr 2015 01:11:07 +0200 -Subject: [PATCH] dirmngr: Fix segfault in ldap engine - -(ks-engine-ldap.c) Fix segfault caused by missing check whether uri is -initialized ---- - dirmngr/ks-engine-ldap.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/dirmngr/ks-engine-ldap.c b/dirmngr/ks-engine-ldap.c -index aefd12a..4497025 100644 ---- a/dirmngr/ks-engine-ldap.c -+++ b/dirmngr/ks-engine-ldap.c -@@ -306,7 +306,9 @@ ks_ldap_help (ctrl_t ctrl, parsed_uri_t uri) - "Supported methods: search, get, put\n"; - gpg_error_t err; - -- if (strcmp (uri->scheme, "ldap") == 0 -+ if(!uri) -+ err = ks_print_help (ctrl, " ldap"); -+ else if (strcmp (uri->scheme, "ldap") == 0 - || strcmp (uri->scheme, "ldaps") == 0 - || strcmp (uri->scheme, "ldapi") == 0) - err = ks_print_help (ctrl, data); --- -2.3.0 - diff --git a/app-crypt/gnupg/files/gnupg-2.1.3-dirmngr-no-ldap.patch b/app-crypt/gnupg/files/gnupg-2.1.3-dirmngr-no-ldap.patch deleted file mode 100644 index 441fa1ae4ca0..000000000000 --- a/app-crypt/gnupg/files/gnupg-2.1.3-dirmngr-no-ldap.patch +++ /dev/null @@ -1,246 +0,0 @@ -From 5cde5bf37339cdeb0bd0a33d39477382eafebede Mon Sep 17 00:00:00 2001 -From: "Neal H. Walfield" -Date: Mon, 13 Apr 2015 12:02:40 +0200 -Subject: [PATCH 1/1] dirmngr: If LDAP is not enable, don't build the LDAP - bits. - -* dirmngr/Makefile.am (dirmngr_SOURCES): Only include -ks-engine-ldap.c, ldap-parse-uri.c and ldap-parse-uri.h if USE_LDAP -is TRUE. -(module_tests): Only add t-ldap-parse-uri if USE_LDAP is TRUE. -* dirmngr/ks-action.c: Only include "ldap-parse-uri.h" if USE_LDAP is -TRUE. -(ks_action_help): Don't invoke LDAP functionality if USE_LDAP is not -TRUE. -(ks_action_search): Likewise. -(ks_action_get): Likewise. -(ks_action_put): Likewise. -* dirmngr/server.c: Only include "ldap-parse-uri.h" if USE_LDAP is -TRUE. -(cmd_keyserver): Don't invoke LDAP functionality if USE_LDAP is not -TRUE. - --- -Signed-off-by: Neal H. Walfield -GnuPG-bug-id: 1949 ---- - dirmngr/Makefile.am | 14 ++++++---- - dirmngr/ks-action.c | 76 ++++++++++++++++++++++++++++++++++++++--------------- - dirmngr/server.c | 10 +++++-- - 3 files changed, 72 insertions(+), 28 deletions(-) - -diff --git a/dirmngr/Makefile.am b/dirmngr/Makefile.am -index a8b1c52..c5713a7 100644 ---- a/dirmngr/Makefile.am -+++ b/dirmngr/Makefile.am -@@ -62,13 +62,12 @@ dirmngr_SOURCES = dirmngr.c dirmngr.h server.c crlcache.c crlfetch.c \ - cdb.h cdblib.c misc.c dirmngr-err.h \ - ocsp.c ocsp.h validate.c validate.h \ - ks-action.c ks-action.h ks-engine.h \ -- ks-engine-hkp.c ks-engine-http.c ks-engine-finger.c ks-engine-kdns.c \ -- ks-engine-ldap.c \ -- ldap-parse-uri.c ldap-parse-uri.h -+ ks-engine-hkp.c ks-engine-http.c ks-engine-finger.c ks-engine-kdns.c - - if USE_LDAP - dirmngr_SOURCES += ldapserver.h ldapserver.c ldap.c w32-ldap-help.h \ -- ldap-wrapper.h $(ldap_url) $(extraldap_src) -+ ldap-wrapper.h ldap-parse-uri.c ldap-parse-uri.h \ -+ ks-engine-ldap.c $(ldap_url) $(extraldap_src) - ldaplibs = $(LDAPLIBS) - else - ldaplibs = -@@ -114,7 +113,12 @@ t_common_ldadd = $(libcommontls) $(libcommon) no-libgcrypt.o \ - $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) \ - $(DNSLIBS) $(LIBINTL) $(LIBICONV) - --module_tests = t-ldap-parse-uri -+module_tests = -+ -+if USE_LDAP -+module_tests += t-ldap-parse-uri -+endif -+ - t_ldap_parse_uri_SOURCES = \ - t-ldap-parse-uri.c ldap-parse-uri.c ldap-parse-uri.h \ - $(ldap_url) $(t_common_src) -diff --git a/dirmngr/ks-action.c b/dirmngr/ks-action.c -index c76aaaa..dd4516a 100644 ---- a/dirmngr/ks-action.c -+++ b/dirmngr/ks-action.c -@@ -30,7 +30,9 @@ - #include "misc.h" - #include "ks-engine.h" - #include "ks-action.h" --#include "ldap-parse-uri.h" -+#if USE_LDAP -+# include "ldap-parse-uri.h" -+#endif - - /* Called by the engine's help functions to print the actual help. */ - gpg_error_t -@@ -73,10 +75,14 @@ ks_action_help (ctrl_t ctrl, const char *url) - } - else - { -+#if USE_LDAP - if (ldap_uri_p (url)) - err = ldap_parse_uri (&parsed_uri, url); - else -- err = http_parse_uri (&parsed_uri, url, 1); -+#endif -+ { -+ err = http_parse_uri (&parsed_uri, url, 1); -+ } - - if (err) - return err; -@@ -90,8 +96,10 @@ ks_action_help (ctrl_t ctrl, const char *url) - err = ks_finger_help (ctrl, parsed_uri); - if (!err) - err = ks_kdns_help (ctrl, parsed_uri); -+#if USE_LDAP - if (!err) - err = ks_ldap_help (ctrl, parsed_uri); -+#endif - - if (!parsed_uri) - ks_print_help (ctrl, -@@ -151,16 +159,23 @@ ks_action_search (ctrl_t ctrl, uri_item_t keyservers, - for (uri = keyservers; !err && uri; uri = uri->next) - { - int is_http = uri->parsed_uri->is_http; -- int is_ldap = (strcmp (uri->parsed_uri->scheme, "ldap") == 0 -- || strcmp (uri->parsed_uri->scheme, "ldaps") == 0 -- || strcmp (uri->parsed_uri->scheme, "ldapi") == 0); -+ int is_ldap = 0; -+#if USE_LDAP -+ is_ldap = (strcmp (uri->parsed_uri->scheme, "ldap") == 0 -+ || strcmp (uri->parsed_uri->scheme, "ldaps") == 0 -+ || strcmp (uri->parsed_uri->scheme, "ldapi") == 0); -+#endif - if (is_http || is_ldap) - { - any_server = 1; -- if (is_http) -- err = ks_hkp_search (ctrl, uri->parsed_uri, patterns->d, &infp); -- else if (is_ldap) -+#if USE_LDAP -+ if (is_ldap) - err = ks_ldap_search (ctrl, uri->parsed_uri, patterns->d, &infp); -+ else -+#endif -+ { -+ err = ks_hkp_search (ctrl, uri->parsed_uri, patterns->d, &infp); -+ } - - if (!err) - { -@@ -203,18 +218,27 @@ ks_action_get (ctrl_t ctrl, uri_item_t keyservers, - for (uri = keyservers; !err && uri; uri = uri->next) - { - int is_http = uri->parsed_uri->is_http; -- int is_ldap = (strcmp (uri->parsed_uri->scheme, "ldap") == 0 -- || strcmp (uri->parsed_uri->scheme, "ldaps") == 0 -- || strcmp (uri->parsed_uri->scheme, "ldapi") == 0); -+ int is_ldap = 0; -+ -+#if USE_LDAP -+ is_ldap = (strcmp (uri->parsed_uri->scheme, "ldap") == 0 -+ || strcmp (uri->parsed_uri->scheme, "ldaps") == 0 -+ || strcmp (uri->parsed_uri->scheme, "ldapi") == 0); -+#endif -+ - if (is_http || is_ldap) - { - any_server = 1; - for (sl = patterns; !err && sl; sl = sl->next) - { -- if (is_http) -- err = ks_hkp_get (ctrl, uri->parsed_uri, sl->d, &infp); -- else -+#if USE_LDAP -+ if (is_ldap) - err = ks_ldap_get (ctrl, uri->parsed_uri, sl->d, &infp); -+ else -+#endif -+ { -+ err = ks_hkp_get (ctrl, uri->parsed_uri, sl->d, &infp); -+ } - - if (err) - { -@@ -322,22 +346,32 @@ ks_action_put (ctrl_t ctrl, uri_item_t keyservers, - int any_server = 0; - uri_item_t uri; - -+ (void) info; -+ (void) infolen; -+ - for (uri = keyservers; !err && uri; uri = uri->next) - { - int is_http = uri->parsed_uri->is_http; -- int is_ldap = (strcmp (uri->parsed_uri->scheme, "ldap") == 0 -- || strcmp (uri->parsed_uri->scheme, "ldaps") == 0 -- || strcmp (uri->parsed_uri->scheme, "ldapi") == 0); -+ int is_ldap = 0; -+ -+#if USE_LDAP -+ is_ldap = (strcmp (uri->parsed_uri->scheme, "ldap") == 0 -+ || strcmp (uri->parsed_uri->scheme, "ldaps") == 0 -+ || strcmp (uri->parsed_uri->scheme, "ldapi") == 0); -+#endif - - if (is_http || is_ldap) - { - any_server = 1; -- if (is_http) -- err = ks_hkp_put (ctrl, uri->parsed_uri, data, datalen); -- else -+#if USE_LDAP -+ if (is_ldap) - err = ks_ldap_put (ctrl, uri->parsed_uri, data, datalen, - info, infolen); -- -+ else -+#endif -+ { -+ err = ks_hkp_put (ctrl, uri->parsed_uri, data, datalen); -+ } - if (err) - { - first_err = err; -diff --git a/dirmngr/server.c b/dirmngr/server.c -index 506b137..3e6d99d 100644 ---- a/dirmngr/server.c -+++ b/dirmngr/server.c -@@ -48,7 +48,9 @@ - #endif - #include "ks-action.h" - #include "ks-engine.h" /* (ks_hkp_print_hosttable) */ --#include "ldap-parse-uri.h" -+#if USE_LDAP -+# include "ldap-parse-uri.h" -+#endif - - /* To avoid DoS attacks we limit the size of a certificate to - something reasonable. */ -@@ -1530,10 +1532,14 @@ cmd_keyserver (assuan_context_t ctx, char *line) - item->parsed_uri = NULL; - strcpy (item->uri, line); - -+#if USE_LDAP - if (ldap_uri_p (item->uri)) - err = ldap_parse_uri (&item->parsed_uri, line); - else -- err = http_parse_uri (&item->parsed_uri, line, 1); -+#endif -+ { -+ err = http_parse_uri (&item->parsed_uri, line, 1); -+ } - if (err) - { - xfree (item); --- -2.1.4 - diff --git a/app-crypt/gnupg/files/gnupg-2.1.3-gpg-fix-null-segv.patch b/app-crypt/gnupg/files/gnupg-2.1.3-gpg-fix-null-segv.patch deleted file mode 100644 index 395cbebb797b..000000000000 --- a/app-crypt/gnupg/files/gnupg-2.1.3-gpg-fix-null-segv.patch +++ /dev/null @@ -1,73 +0,0 @@ -From 25fce93ba19d997e234a674d5cc98df82c5b5496 Mon Sep 17 00:00:00 2001 -From: Werner Koch -Date: Mon, 13 Apr 2015 11:44:10 +0200 -Subject: [PATCH] gpg: Fix NULL-segv due to invalid imported data. -MIME-Version: 1.0 -Content-Type: text/plain; charset=utf8 -Content-Transfer-Encoding: 8bit - -* g10/free-packet.c (my_mpi_copy): New. -(copy_public_key, copy_signature): Use instead of mpi_copy. --- - -Reported-by: Hanno Böck -Signed-off-by: Werner Koch ---- - g10/free-packet.c | 22 ++++++++++++++++++---- - 1 file changed, 18 insertions(+), 4 deletions(-) - -diff --git a/g10/free-packet.c b/g10/free-packet.c -index 99e7404..49d54f4 100644 ---- a/g10/free-packet.c -+++ b/g10/free-packet.c -@@ -31,6 +31,20 @@ - #include "options.h" - - -+/* This is mpi_copy with a fix for opaque MPIs which store a NULL -+ pointer. This will also be fixed in Libggcrypt 1.7.0. */ -+static gcry_mpi_t -+my_mpi_copy (gcry_mpi_t a) -+{ -+ if (a -+ && gcry_mpi_get_flag (a, GCRYMPI_FLAG_OPAQUE) -+ && !gcry_mpi_get_opaque (a, NULL)) -+ return NULL; -+ -+ return gcry_mpi_copy (a); -+} -+ -+ - void - free_symkey_enc( PKT_symkey_enc *enc ) - { -@@ -190,11 +204,11 @@ copy_public_key (PKT_public_key *d, PKT_public_key *s) - n = pubkey_get_npkey (s->pubkey_algo); - i = 0; - if (!n) -- d->pkey[i++] = mpi_copy (s->pkey[0]); -+ d->pkey[i++] = my_mpi_copy (s->pkey[0]); - else - { - for (; i < n; i++ ) -- d->pkey[i] = mpi_copy( s->pkey[i] ); -+ d->pkey[i] = my_mpi_copy (s->pkey[i]); - } - for (; i < PUBKEY_MAX_NSKEY; i++) - d->pkey[i] = NULL; -@@ -237,10 +251,10 @@ copy_signature( PKT_signature *d, PKT_signature *s ) - memcpy( d, s, sizeof *d ); - n = pubkey_get_nsig( s->pubkey_algo ); - if( !n ) -- d->data[0] = mpi_copy(s->data[0]); -+ d->data[0] = my_mpi_copy(s->data[0]); - else { - for(i=0; i < n; i++ ) -- d->data[i] = mpi_copy( s->data[i] ); -+ d->data[i] = my_mpi_copy( s->data[i] ); - } - d->pka_info = s->pka_info? cp_pka_info (s->pka_info) : NULL; - d->hashed = cp_subpktarea (s->hashed); --- -2.1.4 - diff --git a/app-crypt/gnupg/gnupg-2.1.3-r3.ebuild b/app-crypt/gnupg/gnupg-2.1.4.ebuild similarity index 87% rename from app-crypt/gnupg/gnupg-2.1.3-r3.ebuild rename to app-crypt/gnupg/gnupg-2.1.4.ebuild index 4c3dba0be8e1..69f80aae56e7 100644 --- a/app-crypt/gnupg/gnupg-2.1.3-r3.ebuild +++ b/app-crypt/gnupg/gnupg-2.1.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.3-r3.ebuild,v 1.3 2015/04/26 12:51:31 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.4.ebuild,v 1.1 2015/05/13 15:16:48 k_f Exp $ EAPI="5" @@ -60,11 +60,7 @@ S="${WORKDIR}/${MY_P}" src_prepare() { epatch "${FILESDIR}/${PN}-2.0.17-gpgsm-gencert.patch" - epatch "${FILESDIR}/${P}-dirmngr-Fix-segfault-in-ldap-engine.patch" - epatch "${FILESDIR}/${P}-dirmngr-no-ldap.patch" - epatch "${FILESDIR}/${P}-gpg-fix-null-segv.patch" epatch_user - eautoreconf } src_configure() { @@ -103,13 +99,6 @@ src_configure() { $(use_enable nls) \ $(use_with readline) \ CC_FOR_BUILD="$(tc-getBUILD_CC)" - - # Due to the LDAP patch specific to 2.1.3 is causing an eautoreconf - # it shows up as being a developer version and with "unknown" suffix - # we remove this explicitly for the 2.1.3 release as it does not contain - # unstable code - sed -i "s/#define IS_DEVELOPMENT_VERSION 1//" config.h || die - sed -i "s/2.1.3-unknown/2.1.3/" config.h || die } src_compile() { diff --git a/app-crypt/seahorse/Manifest b/app-crypt/seahorse/Manifest index eeb6951500cd..ddd160d84648 100644 --- a/app-crypt/seahorse/Manifest +++ b/app-crypt/seahorse/Manifest @@ -1,3 +1 @@ -DIST seahorse-3.12.2.tar.xz 1398292 SHA256 5e6fb25373fd4490e181e2fa0f5cacf99b78b2f6caa5d91c9c605900fb5f3839 SHA512 016c87f1a356d3d0ac57931e139c20c67b4e36832d9a8947ff39bfc040d970ea25bfd8573624dbb3ebcec05db0803667d42afb2cb15a09d0ec8199dcc5543796 WHIRLPOOL 7cd023d0d90b23c3a39a776a872dc2ba218dbcf73670561ff94f397a97ec5dd97baece8e956d810dfb6613acf82d20b93f398ca7e5af54af1a78b67e6901d6f4 -DIST seahorse-3.14.0.tar.xz 1450280 SHA256 2ea22830f5af1a11fadbdd8da6b34513410f2c371d9ec75fbf9b9b2d9177fc8a SHA512 2d40f9f2a60bcebf23c1b573f9585251af64e8bec64898e25f6dec8cd7dbd6c559bc51c47b9a7ef2e4a83ffa1328c9721ccb0e7863b03707b35725e5baabc3b5 WHIRLPOOL 700c2311a94f9ade51a2581cdf9829a177bb100fedafb321fa3b9febc6988340bb4c56f62fee8637b572d7955e6d270f44d43986df52d632eecca175f36f3b1e DIST seahorse-3.14.1.tar.xz 1504128 SHA256 092a890982fa594da8a384f156b961392f69ce5d9518a9801035e6deb1f05e93 SHA512 1147ea601c1cb17dd1606d02f86261b0381dfdab14329fee7d68bd635420fec98174b2509b09c68216918bd9ca31f22ea538fa34cae1a8e0f4c44714b9693c0f WHIRLPOOL 208c841a28b8c7c0916c02e1a68eaa7c74681c5a3b8e0be30f65a4da953cefd9bb94d57373640513b68de9b204e9d1fc65429bf5dca0344336390068fe4a47e1 diff --git a/app-crypt/seahorse/seahorse-3.12.2.ebuild b/app-crypt/seahorse/seahorse-3.12.2.ebuild deleted file mode 100644 index 9119a719485e..000000000000 --- a/app-crypt/seahorse/seahorse-3.12.2.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-3.12.2.ebuild,v 1.4 2014/12/30 11:41:23 pacho Exp $ - -EAPI="5" -GCONF_DEBUG="yes" - -inherit gnome2 - -DESCRIPTION="A GNOME application for managing encryption keys" -HOMEPAGE="https://wiki.gnome.org/Apps/Seahorse" - -LICENSE="GPL-2+ FDL-1.1+" -SLOT="0" -IUSE="avahi debug ldap" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd" - -COMMON_DEPEND=" - >=app-crypt/gcr-3.11.91:= - >=dev-libs/glib-2.10:2 - >=x11-libs/gtk+-3.4:3 - >=app-crypt/libsecret-0.16 - >=net-libs/libsoup-2.33.92:2.4 - x11-misc/shared-mime-info - - net-misc/openssh - >=app-crypt/gpgme-1 - >=app-crypt/gnupg-1.4 - - avahi? ( >=net-dns/avahi-0.6:= ) - ldap? ( net-nds/openldap:= ) -" -DEPEND="${COMMON_DEPEND} - >=dev-util/intltool-0.35 - sys-devel/gettext - virtual/pkgconfig -" -# Need seahorse-plugins git snapshot -RDEPEND="${COMMON_DEPEND} - !getPtr(), newMicrocode->getPtr() + sizeof(GLenum)); -+ glGetProgramBinaryOES(mGLProgramHandle, binaryLength, NULL, (GLenum *)newMicrocode->getPtr(), newMicrocode->getPtr() + sizeof(GLenum)); - GL_CHECK_ERROR; - #endif - diff --git a/dev-games/ogre/files/ogre-1.8.1-threading.patch b/dev-games/ogre/files/ogre-1.8.1-threading.patch deleted file mode 100644 index 13cf5634e53d..000000000000 --- a/dev-games/ogre/files/ogre-1.8.1-threading.patch +++ /dev/null @@ -1,77 +0,0 @@ -http://www.ogre3d.org/mantis/view.php?id=425 - ---- ogre_src_v1-7-4/OgreMain/include/OgreAtomicWrappers.h -+++ ogre_src_v1-7-4/OgreMain/include/OgreAtomicWrappers.h -@@ -31,6 +31,7 @@ - #include - #include "OgrePrerequisites.h" - #include "OgreException.h" -+#include "Threading/OgreThreadHeaders.h" - - namespace Ogre { - ---- ogre_src_v1-7-4/OgreMain/include/OgreCommon.h -+++ ogre_src_v1-7-4/OgreMain/include/OgreCommon.h -@@ -42,6 +42,8 @@ - # pragma GCC visibility pop - #endif - -+#include "Threading/OgreThreadHeaders.h" -+ - namespace Ogre { - /** \addtogroup Core - * @{ ---- ogre_src_v1-7-4/OgreMain/include/OgreConvexBody.h -+++ ogre_src_v1-7-4/OgreMain/include/OgreConvexBody.h -@@ -31,6 +31,7 @@ - - #include "OgrePrerequisites.h" - #include "OgrePolygon.h" -+#include "Threading/OgreThreadHeaders.h" - - - namespace Ogre -@@ -58,9 +59,7 @@ - - // Static 'free list' of polygons to save reallocation, shared between all bodies - static PolygonList msFreePolygons; --#if OGRE_THREAD_SUPPORT - OGRE_STATIC_MUTEX(msFreePolygonsMutex) --#endif - - public: - ConvexBody(); ---- ogre_src_v1-7-4/OgreMain/include/OgreLog.h -+++ ogre_src_v1-7-4/OgreMain/include/OgreLog.h -@@ -32,6 +32,8 @@ - #include "OgrePrerequisites.h" - #include "OgreString.h" - -+#include "Threading/OgreThreadHeaders.h" -+ - namespace Ogre { - - /** \addtogroup Core ---- ogre_src_v1-7-4/OgreMain/include/OgreSharedPtr.h -+++ ogre_src_v1-7-4/OgreMain/include/OgreSharedPtr.h -@@ -30,6 +30,8 @@ - - #include "OgrePrerequisites.h" - -+#include "Threading/OgreThreadHeaders.h" -+ - namespace Ogre { - /** \addtogroup Core - * @{ ---- ogre_src_v1-7-4/OgreMain/src/OgreConvexBody.cpp -+++ ogre_src_v1-7-4/OgreMain/src/OgreConvexBody.cpp -@@ -44,9 +44,7 @@ - // Statics - //----------------------------------------------------------------------- - ConvexBody::PolygonList ConvexBody::msFreePolygons; --#if OGRE_THREAD_SUPPORT - OGRE_STATIC_MUTEX_INSTANCE(ConvexBody::msFreePolygonsMutex) --#endif - //----------------------------------------------------------------------- - void ConvexBody::_initialisePool() - { diff --git a/dev-games/ogre/ogre-1.8.1.ebuild b/dev-games/ogre/ogre-1.8.1.ebuild deleted file mode 100644 index f7689bd1b5bd..000000000000 --- a/dev-games/ogre/ogre-1.8.1.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.8.1.ebuild,v 1.7 2014/03/08 23:22:37 hasufell Exp $ - -EAPI=5 -CMAKE_REMOVE_MODULES="yes" -CMAKE_REMOVE_MODULES_LIST="FindFreetype" -inherit eutils cmake-utils - -MY_PV=${PV//./-} -DESCRIPTION="Object-oriented Graphics Rendering Engine" -HOMEPAGE="http://www.ogre3d.org/" -SRC_URI="mirror://sourceforge/${PN}/${PN}_src_v${MY_PV}.tar.bz2" - -LICENSE="MIT" -SLOT="0/1.8.1" -KEYWORDS="amd64 x86" -IUSE="+boost cg doc double-precision examples +freeimage gles2 ois +opengl poco profile tbb threads tools +zip" -REQUIRED_USE="threads? ( || ( boost poco tbb ) )" -RESTRICT="test" #139905 - -RDEPEND="media-libs/freetype:2 - virtual/opengl - virtual/glu - x11-libs/libX11 - x11-libs/libXaw - x11-libs/libXrandr - x11-libs/libXt - boost? ( dev-libs/boost ) - cg? ( media-gfx/nvidia-cg-toolkit ) - freeimage? ( media-libs/freeimage ) - gles2? ( || ( =media-libs/mesa-8.0.0[gles2] ) ) - ois? ( dev-games/ois ) - threads? ( - poco? ( dev-libs/poco ) - tbb? ( dev-cpp/tbb ) - ) - zip? ( sys-libs/zlib dev-libs/zziplib )" -# gles1 currently broken wrt bug #418201 -DEPEND="${RDEPEND} - x11-proto/xf86vidmodeproto - virtual/pkgconfig - doc? ( app-doc/doxygen )" - -S=${WORKDIR}/${PN}_src_v${MY_PV} - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-threading.patch \ - "${FILESDIR}"/${P}-flags.patch \ - "${FILESDIR}"/${P}-gles2.patch - sed -i \ - -e "s:share/OGRE/docs:share/doc/${PF}:" \ - Docs/CMakeLists.txt || die - # Stupid build system hardcodes release names - sed -i \ - -e '/CONFIGURATIONS/s:CONFIGURATIONS.*::' \ - CMake/Utils/OgreConfigTargets.cmake || die -} - -src_configure() { - local mycmakeargs=( - -DOGRE_FULL_RPATH=NO - $(cmake-utils_use boost OGRE_USE_BOOST) - $(cmake-utils_use cg OGRE_BUILD_PLUGIN_CG) - $(cmake-utils_use doc OGRE_INSTALL_DOCS) - $(cmake-utils_use double-precision OGRE_CONFIG_DOUBLE) - $(cmake-utils_use examples OGRE_INSTALL_SAMPLES) - $(cmake-utils_use freeimage OGRE_CONFIG_ENABLE_FREEIMAGE) - $(cmake-utils_use opengl OGRE_BUILD_RENDERSYSTEM_GL) - -DOGRE_BUILD_RENDERSYSTEM_GLES=OFF - $(cmake-utils_use gles2 OGRE_BUILD_RENDERSYSTEM_GLES2) - $(cmake-utils_use profile OGRE_PROFILING) - $(cmake-utils_use examples OGRE_BUILD_SAMPLES) - -DOGRE_BUILD_TESTS=FALSE - $(usex threads "-DOGRE_CONFIG_THREADS=2" "-DOGRE_CONFIG_THREADS=0") - $(cmake-utils_use tools OGRE_BUILD_TOOLS) - $(cmake-utils_use zip OGRE_CONFIG_ENABLE_ZIP) - ) - - if use threads ; then - local f - for f in boost poco tbb ; do - use ${f} || continue - mycmakeargs+=( -DOGRE_CONFIG_THREAD_PROVIDER=${f} ) - break - done - fi - - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - docinto examples - dodoc "${CMAKE_BUILD_DIR}"/bin/*.cfg -} diff --git a/dev-java/slf4j-api/slf4j-api-1.7.7.ebuild b/dev-java/slf4j-api/slf4j-api-1.7.7.ebuild index 21d44a3c3c6c..4161105cdf05 100644 --- a/dev-java/slf4j-api/slf4j-api-1.7.7.ebuild +++ b/dev-java/slf4j-api/slf4j-api-1.7.7.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/slf4j-api/slf4j-api-1.7.7.ebuild,v 1.1 2014/04/25 06:01:13 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/slf4j-api/slf4j-api-1.7.7.ebuild,v 1.2 2015/05/13 14:18:58 monsieurp Exp $ EAPI=5 JAVA_PKG_IUSE="doc source" @@ -21,7 +21,7 @@ DEPEND=">=virtual/jdk-1.5 app-arch/unzip test? ( dev-java/junit:4 - dev-java/ant-junit4:0 + dev-java/ant-junit:0 )" S="${WORKDIR}/${P/-api/}/${PN}" diff --git a/dev-libs/isl/files/isl-0.07-gdb-autoload-dir.patch b/dev-libs/isl/files/isl-0.07-gdb-autoload-dir.patch index 90963692b8ea..58e80b29687e 100644 --- a/dev-libs/isl/files/isl-0.07-gdb-autoload-dir.patch +++ b/dev-libs/isl/files/isl-0.07-gdb-autoload-dir.patch @@ -9,9 +9,9 @@ Install python module into gdb auto-load directory. - $(DESTDIR)$(libdir)/$$libisl-gdb.py; \ - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"; \ - $(INSTALL_DATA) $(srcdir)/isl.py $(DESTDIR)$(libdir)/$$libisl-gdb.py; esac -+ $(DESTDIR)usr/share/gdb/auto-load$(libdir)/$$libisl-gdb.py; \ -+ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)usr/share/gdb/auto-load$(libdir)"; \ -+ $(INSTALL_DATA) $(srcdir)/isl.py $(DESTDIR)usr/share/gdb/auto-load$(libdir)/$$libisl-gdb.py; esac ++ $(DESTDIR)$(prefix)/share/gdb/auto-load$(libdir)/$$libisl-gdb.py; \ ++ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(prefix)/share/gdb/auto-load$(libdir)"; \ ++ $(INSTALL_DATA) $(srcdir)/isl.py $(DESTDIR)$(prefix)/share/gdb/auto-load$(libdir)/$$libisl-gdb.py; esac # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/dev-libs/libqzeitgeist/metadata.xml b/dev-libs/libqzeitgeist/metadata.xml index 8d1e86a9cefb..a23f444b67d6 100644 --- a/dev-libs/libqzeitgeist/metadata.xml +++ b/dev-libs/libqzeitgeist/metadata.xml @@ -1,5 +1,5 @@ -kde + kde diff --git a/dev-python/ipython/ipython-3.1.0.ebuild b/dev-python/ipython/ipython-3.1.0.ebuild index 96330f0614f7..e1600f36be58 100644 --- a/dev-python/ipython/ipython-3.1.0.ebuild +++ b/dev-python/ipython/ipython-3.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-3.1.0.ebuild,v 1.1 2015/04/04 18:12:08 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-3.1.0.ebuild,v 1.2 2015/05/13 15:16:36 jlec Exp $ EAPI=5 @@ -53,8 +53,9 @@ RDEPEND="${CDEPEND} ) qt4? ( || ( - dev-python/PyQt4[${PYTHON_USEDEP}] - dev-python/pyside[${PYTHON_USEDEP}] + dev-python/PyQt4[${PYTHON_USEDEP},svg] + dev-python/PyQt5[${PYTHON_USEDEP},svg] + dev-python/pyside[${PYTHON_USEDEP},svg] ) dev-python/pygments[${PYTHON_USEDEP}] >=dev-python/pyzmq-13[${PYTHON_USEDEP}] )" diff --git a/dev-util/glade/Manifest b/dev-util/glade/Manifest index ca7d1af0ede5..9f18ac1f85b7 100644 --- a/dev-util/glade/Manifest +++ b/dev-util/glade/Manifest @@ -1,5 +1,2 @@ -DIST glade-3.16.1.tar.xz 3080072 SHA256 994ac258bc100d3907ed40a2880c3144f13997b324477253e812d59f2716523f SHA512 daa67dd44a6e0ab1e2ed2fd8e389de40c0d6f516765b564563422e0210fe50185e485d2ed7d3e79b96589dccdfc089c8ee058cfc52a79ba1d478e61098af334e WHIRLPOOL 47d15ac37a15d3d37591aaee0eb62320ae7c78bffae20f6aaf37aa7a09f3adf01e86c6d1ad97ca546db48af3e6d0eac8866941cd7ccf37461b85ac672aea9fca -DIST glade-3.18.2.tar.xz 3256200 SHA256 a2fd77e64e8d6c4d6cbd7f365b5b3a4a06b04f749c90acbdf7a09538b2a021fc SHA512 5bf3ec211ccf84802307ccb8615df6c622a8c3132f247ec3b93c379608ae1c778ac7ca515a51b30769b7d7fe29525c11f0b513665cb4dea9b5b33ccf834b9b57 WHIRLPOOL 878171679c14354c4252f648ca074a4d1ab4dbdcacb2f374b457e531e03ad8abf05f24b1f251f26ccdb047727738d6ab16c7d028283d5f40884f0ac3a4b562d6 DIST glade-3.18.3.tar.xz 3266400 SHA256 ecdbce46e7fbfecd463be840b94fbf54d83723b3ebe075414cfd225ddab66452 SHA512 6e98d6ba98118fde4066f983024818528ac8c82d176896e2c5c62a19094377df4bf4c6b4edd028cd72bf8744c807c28a930e467f2a23670537b02af327b683f8 WHIRLPOOL 4e1e86b86216739007b3524464a5fcaf07c66ba5adc36a3c497c0c411401fffc6345db2722a1b0f85d1e1e13c920553014e4eac3bdbbd2dcc7ddbd8ac7cb41a3 -DIST glade3-3.8.4.tar.xz 2305876 SHA256 c7ae0775b96a400cf43be738b2f836663a505b1458255df9ce83a340057e3d08 SHA512 dead9b9788002eecca6f8413c999471b957a8c482d770a0a2288c207c86a69e0a011164114ea9d2da60641be9cb205e3f1be7838998566a585aa3b121d316ef5 WHIRLPOOL 0fc377d71367c084a32b5b77fdbdfb82a8c8192faa94a65660c461900fedb01fd68751cb4511af926f6dc18d3e4c0f4743e68207c725b133d61a6f066a30ffd9 DIST glade3-3.8.5.tar.xz 2322076 SHA256 58a5f6e4df4028230ddecc74c564808b7ec4471b1925058e29304f778b6b2735 SHA512 722a33f1a1ec3baa785bf3c6f7f5ec2cbe7cf6fe44c9c26d33728de16f2856cbb1ace0cd38c5b5356081e326666cc82fd00f2b6af53bd06bb832079610042985 WHIRLPOOL 672c38822dd04e43e2a3c6642fa34e9e485172d943a0abd5e16f7f378f73bc9126768955d9aad431960f5966be8edaa26a755ca28e2644a790c111e0b6c0142d diff --git a/dev-util/glade/files/glade-3.12.1-doc-version.patch b/dev-util/glade/files/glade-3.12.1-doc-version.patch deleted file mode 100644 index 60842e7624cd..000000000000 --- a/dev-util/glade/files/glade-3.12.1-doc-version.patch +++ /dev/null @@ -1,46 +0,0 @@ -From e3e91245e730f0532e913fde910054f464085241 Mon Sep 17 00:00:00 2001 -From: Alexandre Rostovtsev -Date: Sun, 6 May 2012 22:40:47 -0400 -Subject: [PATCH] Version glade documentation - -Rename gnome help files to prevent collision with other versions. - -Avoid loading glade-3.8's devhelp files. ---- - help/Makefile.am | 5 ++++- - src/glade-window.c | 2 +- - 2 files changed, 5 insertions(+), 2 deletions(-) - -diff --git a/help/Makefile.am b/help/Makefile.am -index 70836e3..dd769c3 100644 ---- a/help/Makefile.am -+++ b/help/Makefile.am -@@ -2,8 +2,11 @@ - include $(top_srcdir)/gnome-doc-utils.make - dist-hook: doc-dist-hook - --DOC_MODULE = glade -+DOC_MODULE = glade-@GLADE_MAJOR_VERSION@.@GLADE_MINOR_VERSION@ - DOC_INCLUDES = legal.xml - DOC_FIGURES = figures/main-window.png - - DOC_LINGUAS = bg ca cs de el en_GB es eu fr gl hi it ja oc pt_BR ru sl sv uk zh_CN -+ -+C/$(DOC_MODULE).xml: $(top_srcdir)/help/C/glade.xml -+ cp -p $(top_srcdir)/help/C/glade.xml C/$(DOC_MODULE).xml -diff --git a/src/glade-window.c b/src/glade-window.c -index 89a4549..4eb8be5 100644 ---- a/src/glade-window.c -+++ b/src/glade-window.c -@@ -2041,7 +2041,7 @@ show_developer_manual_cb (GtkAction * action, GladeWindow * window) - { - if (glade_util_have_devhelp ()) - { -- glade_util_search_devhelp ("gladeui", NULL, NULL); -+ glade_util_search_devhelp ("gladeui-2", NULL, NULL); - return; - } - --- -1.7.8.6 - diff --git a/dev-util/glade/files/glade-3.16.1-underlinking.patch b/dev-util/glade/files/glade-3.16.1-underlinking.patch deleted file mode 100644 index b97426c2a6dc..000000000000 --- a/dev-util/glade/files/glade-3.16.1-underlinking.patch +++ /dev/null @@ -1,71 +0,0 @@ - gladeui/Makefile.am | 4 ++-- - src/Makefile.am | 2 +- - tests/Makefile.am | 6 +++--- - 3 files changed, 6 insertions(+), 6 deletions(-) - -diff --git a/gladeui/Makefile.am b/gladeui/Makefile.am -index 87d610c..8fc02a0 100644 ---- a/gladeui/Makefile.am -+++ b/gladeui/Makefile.am -@@ -19,7 +19,7 @@ glade_previewer_CFLAGS = \ - - glade_previewer_LDFLAGS = $(AM_LDFLAGS) - --glade_previewer_LDADD = libgladeui-2.la $(GTK_MAC_LIBS) -+glade_previewer_LDADD = libgladeui-2.la $(GTK_MAC_LIBS) -lm - - glade_previewer_SOURCES = \ - glade-previewer.c \ -@@ -263,7 +263,7 @@ introspection_sources = $(libgladeui_2_la_SOURCES) $(libgladeuiinclude_HEADERS) - Gladeui-2.0.gir: libgladeui-2.la - Gladeui_2_0_gir_INCLUDES = Gtk-3.0 - Gladeui_2_0_gir_CFLAGS = $(INCLUDES) --Gladeui_2_0_gir_LIBS = libgladeui-2.la -+Gladeui_2_0_gir_LIBS = libgladeui-2.la m - Gladeui_2_0_gir_FILES = $(introspection_sources) - INTROSPECTION_GIRS += Gladeui-2.0.gir - -diff --git a/src/Makefile.am b/src/Makefile.am -index 89e597e..83dd436 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -18,7 +18,7 @@ glade_CFLAGS = \ - - glade_LDFLAGS = $(AM_LDFLAGS) $(GMODULE_EXPORT_LDFLAGS) - --glade_LDADD = $(top_builddir)/gladeui/libgladeui-2.la $(GTK_MAC_LIBS) -+glade_LDADD = $(top_builddir)/gladeui/libgladeui-2.la $(GTK_MAC_LIBS) -lm - - BUILT_SOURCES = glade-resources.c glade-resources.h - -diff --git a/tests/Makefile.am b/tests/Makefile.am -index fc96195..3099186 100644 ---- a/tests/Makefile.am -+++ b/tests/Makefile.am -@@ -28,7 +28,7 @@ progs_ldadd = $(top_builddir)/gladeui/libgladeui-2.la - create_widgets_CPPFLAGS = $(progs_cppflags) - create_widgets_CFLAGS = $(progs_cflags) - create_widgets_LDFLAGS = $(progs_libs) --create_widgets_LDADD = $(progs_ldadd) -+create_widgets_LDADD = $(progs_ldadd) -lm - create_widgets_SOURCES = create-widgets.c - - # Test that various types of container widgets -@@ -37,7 +37,7 @@ create_widgets_SOURCES = create-widgets.c - add_child_CPPFLAGS = $(progs_cppflags) - add_child_CFLAGS = $(progs_cflags) - add_child_LDFLAGS = $(progs_libs) --add_child_LDADD = $(progs_ldadd) -+add_child_LDADD = $(progs_ldadd) -lm - add_child_SOURCES = add-child.c - - TOPLEVEL_ORDER_FILES = \ -@@ -63,7 +63,7 @@ toplevel-order-resources.c: $(TOPLEVEL_ORDER_FILES) - toplevel_order_CPPFLAGS = $(progs_cppflags) - toplevel_order_CFLAGS = $(progs_cflags) - toplevel_order_LDFLAGS = $(progs_libs) --toplevel_order_LDADD = $(progs_ldadd) -+toplevel_order_LDADD = $(progs_ldadd) -lm - toplevel_order_SOURCES = \ - toplevel-order.c \ - toplevel-order-resources.c diff --git a/dev-util/glade/glade-3.16.1.ebuild b/dev-util/glade/glade-3.16.1.ebuild deleted file mode 100644 index 7e82ec7522c6..000000000000 --- a/dev-util/glade/glade-3.16.1.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-3.16.1.ebuild,v 1.14 2014/05/02 08:45:51 pacho Exp $ - -EAPI="5" -GCONF_DEBUG="yes" -GNOME2_LA_PUNT="yes" -PYTHON_COMPAT=( python2_7 ) - -inherit autotools eutils gnome2 python-single-r1 versionator virtualx - -DESCRIPTION="A user interface designer for GTK+ and GNOME" -HOMEPAGE="http://glade.gnome.org/" - -LICENSE="GPL-2+ FDL-1.1+" -SLOT="3.10/6" # subslot = suffix of libgladeui-2.so -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="+introspection python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - dev-libs/atk[introspection?] - >=dev-libs/glib-2.32:2 - >=dev-libs/libxml2-2.4.0:2 - x11-libs/cairo:= - x11-libs/gdk-pixbuf:2[introspection?] - >=x11-libs/gtk+-3.10:3[introspection?] - x11-libs/pango[introspection?] - introspection? ( >=dev-libs/gobject-introspection-1.32 ) - python? ( - ${PYTHON_DEPS} - >=dev-python/pygobject-3.8:3[${PYTHON_USEDEP}] ) -" -DEPEND="${RDEPEND} - app-text/docbook-xml-dtd:4.1.2 - app-text/yelp-tools - dev-libs/libxslt - >=dev-util/gtk-doc-am-1.13 - >=dev-util/intltool-0.41.0 - virtual/pkgconfig - - dev-libs/gobject-introspection-common - gnome-base/gnome-common -" -# eautoreconf requires: -# dev-libs/gobject-introspection-common -# gnome-base/gnome-common - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - # To avoid file collison with other slots, rename help module. - # Prevent the UI from loading glade:3's gladeui devhelp documentation. - epatch \ - "${FILESDIR}/${PN}-3.14.1-doc-version.patch" \ - "${FILESDIR}"/${P}-underlinking.patch - - eautoreconf - - gnome2_src_prepare -} - -src_configure() { - gnome2_src_configure \ - --disable-static \ - --enable-gladeui \ - --enable-libtool-lock \ - $(use_enable introspection) \ - $(use_enable python) \ - ITSTOOL=$(type -P true) -} - -src_test() { - Xemake check -} - -src_install() { - # modify Name in .desktop file to avoid confusion with other slots - sed -e 's:^\(Name.*=Glade\):\1 '$(get_version_component_range 1-2): \ - -i data/glade.desktop || die "sed of data/glade.desktop failed" - # modify name in .devhelp2 file to avoid shadowing with glade:3 docs - sed -e 's:name="gladeui":name="gladeui-2":' \ - -i doc/html/gladeui.devhelp2 || die "sed of gladeui.devhelp2 failed" - gnome2_src_install -} - -pkg_postinst() { - gnome2_pkg_postinst - if ! has_version dev-util/devhelp ; then - elog "You may want to install dev-util/devhelp for integration API" - elog "documentation support." - fi -} diff --git a/dev-util/glade/glade-3.18.2.ebuild b/dev-util/glade/glade-3.18.2.ebuild deleted file mode 100644 index 3adafd01754e..000000000000 --- a/dev-util/glade/glade-3.18.2.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-3.18.2.ebuild,v 1.2 2014/05/02 08:45:51 pacho Exp $ - -EAPI="5" -GCONF_DEBUG="yes" -GNOME2_LA_PUNT="yes" -PYTHON_COMPAT=( python2_7 ) - -inherit autotools eutils gnome2 python-single-r1 versionator virtualx - -DESCRIPTION="A user interface designer for GTK+ and GNOME" -HOMEPAGE="http://glade.gnome.org/" - -LICENSE="GPL-2+ FDL-1.1+" -SLOT="3.10/6" # subslot = suffix of libgladeui-2.so -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="+introspection python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - dev-libs/atk[introspection?] - >=dev-libs/glib-2.32:2 - >=dev-libs/libxml2-2.4.0:2 - x11-libs/cairo:= - x11-libs/gdk-pixbuf:2[introspection?] - >=x11-libs/gtk+-3.12:3[introspection?] - x11-libs/pango[introspection?] - introspection? ( >=dev-libs/gobject-introspection-1.32 ) - python? ( - ${PYTHON_DEPS} - >=dev-python/pygobject-3.8:3[${PYTHON_USEDEP}] ) -" -DEPEND="${RDEPEND} - app-text/docbook-xml-dtd:4.1.2 - app-text/yelp-tools - dev-libs/libxslt - >=dev-util/gtk-doc-am-1.13 - >=dev-util/intltool-0.41.0 - virtual/pkgconfig - - dev-libs/gobject-introspection-common - gnome-base/gnome-common -" -# eautoreconf requires: -# dev-libs/gobject-introspection-common -# gnome-base/gnome-common - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - # To avoid file collison with other slots, rename help module. - # Prevent the UI from loading glade:3's gladeui devhelp documentation. - epatch \ - "${FILESDIR}"/${PN}-3.14.1-doc-version.patch \ - "${FILESDIR}"/${PN}-3.16.1-underlinking.patch - - eautoreconf - - gnome2_src_prepare -} - -src_configure() { - gnome2_src_configure \ - --disable-static \ - --enable-gladeui \ - --enable-libtool-lock \ - $(use_enable introspection) \ - $(use_enable python) \ - ITSTOOL=$(type -P true) -} - -src_test() { - Xemake check -} - -src_install() { - # modify Name in .desktop file to avoid confusion with other slots - sed -e 's:^\(Name.*=Glade\):\1 '$(get_version_component_range 1-2): \ - -i data/glade.desktop || die "sed of data/glade.desktop failed" - # modify name in .devhelp2 file to avoid shadowing with glade:3 docs - sed -e 's:name="gladeui":name="gladeui-2":' \ - -i doc/html/gladeui.devhelp2 || die "sed of gladeui.devhelp2 failed" - gnome2_src_install -} - -pkg_postinst() { - gnome2_pkg_postinst - if ! has_version dev-util/devhelp ; then - elog "You may want to install dev-util/devhelp for integration API" - elog "documentation support." - fi -} diff --git a/dev-util/glade/glade-3.8.4.ebuild b/dev-util/glade/glade-3.8.4.ebuild deleted file mode 100644 index 3f39df4876cd..000000000000 --- a/dev-util/glade/glade-3.8.4.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-3.8.4.ebuild,v 1.13 2015/04/08 17:54:02 mgorny Exp $ - -EAPI="5" -GCONF_DEBUG="yes" -GNOME_ORG_MODULE="glade3" -GNOME2_LA_PUNT="yes" -PYTHON_COMPAT=( python2_7 ) - -inherit eutils gnome2 python-single-r1 - -DESCRIPTION="A user interface designer for GTK+ and GNOME" -HOMEPAGE="http://glade.gnome.org/" - -LICENSE="GPL-2+ FDL-1.1+" -SLOT="3/11" # subslot = suffix of libgladeui-1.so -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="gnome python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - >=dev-libs/glib-2.8:2 - >=x11-libs/gtk+-2.24:2 - >=dev-libs/libxml2-2.4:2 - gnome? ( - >=gnome-base/libgnomeui-2 - >=gnome-base/libbonoboui-2 ) - python? ( - ${PYTHON_DEPS} - >=dev-python/pygtk-2.10:2 ) -" -DEPEND="${RDEPEND} - dev-util/gtk-doc-am - >=dev-util/intltool-0.35 - virtual/pkgconfig - sys-devel/gettext - app-text/scrollkeeper - >=app-text/gnome-doc-utils-0.9 - app-text/docbook-xml-dtd:4.1.2 -" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_configure() { - gnome2_src_configure \ - --enable-libtool-lock \ - $(use_enable gnome) \ - $(use_enable python) -} diff --git a/dev-util/glade/glade-3.8.5.ebuild b/dev-util/glade/glade-3.8.5.ebuild index f4657029e915..ee45d8de00aa 100644 --- a/dev-util/glade/glade-3.8.5.ebuild +++ b/dev-util/glade/glade-3.8.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-3.8.5.ebuild,v 1.10 2015/04/08 17:54:02 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-3.8.5.ebuild,v 1.11 2015/05/13 17:11:25 pacho Exp $ EAPI="5" GCONF_DEBUG="yes" @@ -35,7 +35,6 @@ DEPEND="${RDEPEND} >=dev-util/intltool-0.35 virtual/pkgconfig sys-devel/gettext - app-text/scrollkeeper >=app-text/gnome-doc-utils-0.9 app-text/docbook-xml-dtd:4.1.2 " diff --git a/dev-util/glade/metadata.xml b/dev-util/glade/metadata.xml index 6e0e2ecb48ca..da6fd63d0085 100644 --- a/dev-util/glade/metadata.xml +++ b/dev-util/glade/metadata.xml @@ -1,5 +1,5 @@ - gnome +gnome diff --git a/dev-util/rbtools/Manifest b/dev-util/rbtools/Manifest index b7f9007a548c..282ca5832ff5 100644 --- a/dev-util/rbtools/Manifest +++ b/dev-util/rbtools/Manifest @@ -1,3 +1 @@ -DIST RBTools-0.6.3.tar.gz 110117 SHA256 5f61ce90f73d086f6a6242c0ed30c55a20a18f4174e39124517cfe32a74a556f SHA512 bf0afc303b86f393349542e02f7f1c540e3fef098ff287d92b919ccff1afacc0b8af598e49faff11401fd8cf24ba6f683b9a7b6d9df376875a518713e7e0c8c0 WHIRLPOOL 40987855541c30a898dc75c6e94b19359ae66978f7a68edbfd401f5f19238df5fff548c6cf399ddbf418007ba733a01493a3df1f86599cc9c8745ed1b67977b3 DIST RBTools-0.7.1.tar.gz 142069 SHA256 eb896bf81d9585102264319721f900fb84b14fb41daca1339742c5149c24b12b SHA512 eef0ea7f92c5737efd710235d3d349c8c13837b39bdb28af7d32f4c418d923b3ede0aa3e34713a85d8f47f968c4fe9ca3580cf44699eeb16a589f8bd743c5357 WHIRLPOOL 3c8686f90708e4749d6ed992f148ec2f6e627de2eaf328b6fdc651aa66b46d7d4ad24fda44cbb199a9807f8af9e2ce247f69908ab5a31a5ca42bede2fc008753 -DIST RBTools-0.7.2.tar.gz 147069 SHA256 91288b1cc3ecd36b6405721288d55a1f6819c9e709bba3e9109f05d419a2e8d9 SHA512 08fe88b32629b6db019b5d7f79ac58c955706f673e85e1fe2e422b4b13ba88bd6cb533699662a5bf14a3b58cd1831048fdb788424f91149fc5b640c1e090faf8 WHIRLPOOL 07e976bd58c652434fba11a25a8d380ec281ce5105fd103c6b74467348b8c365a66b6bfc234f1c0ddb8ab91a37db0cf9c2cc783fa33d0619e72793949eec5b1c diff --git a/dev-util/rbtools/rbtools-0.6.3.ebuild b/dev-util/rbtools/rbtools-0.6.3.ebuild deleted file mode 100644 index 774b8de2b514..000000000000 --- a/dev-util/rbtools/rbtools-0.6.3.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/rbtools/rbtools-0.6.3.ebuild,v 1.3 2015/01/26 10:01:44 ago Exp $ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 versionator - -MY_PN="RBTools" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Command line tools for use with Review Board" -HOMEPAGE="http://www.reviewboard.org/" -SRC_URI="http://downloads.reviewboard.org/releases/${MY_PN}/$(get_version_component_range 1-2)/${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -DOCS=( AUTHORS NEWS README ) - -S=${WORKDIR}/${MY_P} diff --git a/dev-util/rbtools/rbtools-0.7.2.ebuild b/dev-util/rbtools/rbtools-0.7.2.ebuild deleted file mode 100644 index aac81121ba2d..000000000000 --- a/dev-util/rbtools/rbtools-0.7.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/rbtools/rbtools-0.7.2.ebuild,v 1.3 2015/05/13 09:32:44 ago Exp $ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 versionator - -MY_PN="RBTools" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Command line tools for use with Review Board" -HOMEPAGE="http://www.reviewboard.org/" -SRC_URI="http://downloads.reviewboard.org/releases/${MY_PN}/$(get_version_component_range 1-2)/${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=">=dev-python/six-1.8.0[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] -" - -DOCS=( AUTHORS NEWS README ) - -S=${WORKDIR}/${MY_P} diff --git a/games-arcade/performous/Manifest b/games-arcade/performous/Manifest index 4491aafec6e0..8d5f72d456d5 100644 --- a/games-arcade/performous/Manifest +++ b/games-arcade/performous/Manifest @@ -1,4 +1,3 @@ -DIST performous-0.7.0.tar.bz2 5015164 SHA256 af4cb8268e608e7a8da178ef80537d6da09e643321878dcdf3f1a71002cb63ec SHA512 bded51d7f2883ea8f15c9ac8ab03f692d0dcdb45b85ae1c7d11d2600ca761962f6fb991f5a5d0a4dd5fbdf60e7ad711ca1e0480dfa14a04c5603897335762db8 WHIRLPOOL 56e464bd27be923022354a289239645c09505dc105a3f36b2a44564e3991f6c0fb45d1485db1a1e80f98f600a9808b97bc7cd6690cf70a455daf9682083427d8 DIST performous-1.0.tar.gz 3950246 SHA256 da9f39d281dbfe0849897dc98dc72cfc5a54be53f67c29b6430e57aefcc86b50 SHA512 9cdc6ad71248fede7df6fdc8ea4aca70a9c79be40e1d8c07c425f4a0e0c6e352233aee2ddeb586dcc6a7ea567b3e399aad9c5840475d8ce91c3ec7d4ec1eb30b WHIRLPOOL 2b9dbf8cec9e09bbff6a9490cbeb3fc04e88776c57fe80b9da04b91cdc2ac8ed9e129746e2adb4866ee52edb819229c6f52c45d2e301718a7c4e106ba27f14f1 DIST ultrastar-songs-jc-1.zip 242698201 SHA256 b3a6f980926c4f1ce40bc763a406040855600ad005f4daa54e0ac324ce99a9ba SHA512 2f1b8416990c39617269cd6bb7271abdd4ebae65a9bac3dbb3f37cca26876bb7c79460a37597943a10a2d8bfcb5d2d9e2bf24084fe517a418e69f5c6111f6aea WHIRLPOOL 13bd3761b80b2a9491c6dbe2e535dbdc1e0f53b51d5070a0caf776da94c45c62a5a6980b4d95f629e0cfe5d6ef985428e5dcf6d4ba2f0931e6ea1d39d7f6674c DIST ultrastar-songs-libre-3.zip 5289866 SHA256 739d1c678bb7c786499f5216faee420b9b56633142928aff60a7282dae755489 SHA512 820e3637a7b778c92ed1a8b925802134fa2146879b3e03e88cd412de5414635c90fe256dfaf984cfa3e8b07b7da8531dc3061b7c4e1bb4422127b469b2345e66 WHIRLPOOL 48d48e82ec8bd02376b3def5a3f215331c49853cf00439686cd577ebd51321e4a4e8b213d40356a46e2a2bd2a1bf6c1cb07b09195209833f4eb004166937bfe5 diff --git a/games-arcade/performous/files/performous-0.7.0-cmake.patch b/games-arcade/performous/files/performous-0.7.0-cmake.patch deleted file mode 100644 index 4c6f47b634af..000000000000 --- a/games-arcade/performous/files/performous-0.7.0-cmake.patch +++ /dev/null @@ -1,155 +0,0 @@ -From: Julian Ospald -Date: Thu Jan 24 13:13:50 UTC 2013 -Subject: build system - - - fix opencv module to prefer pkg-config results - - fix some module and macro names and try to use - system modules as much as possible (ALSA Boost Gettext Jpeg Png Tiff Z) - ---- cmake/Modules/FindOpenCV.cmake -+++ cmake/Modules/FindOpenCV.cmake -@@ -57,13 +57,21 @@ - include(FindPkgConfig) - if(PKG_CONFIG_FOUND) - pkg_check_modules(OPENCV_PKGCONF opencv) -- set(OpenCV_DIR ${OPENCV_PKGCONF_PREFIX}) -- if(EXISTS "${OpenCV_DIR}") -- set(OpenCV_configScript_DIR "${OpenCV_DIR}/share/opencv") -- if(EXISTS "${OpenCV_configScript_DIR}") -- set(OpenCV_configScript "${OpenCV_configScript_DIR}/OpenCVConfig.cmake") -- endif(EXISTS "${OpenCV_configScript_DIR}") -- endif(EXISTS "${OpenCV_DIR}") -+ # prefer pkg-config values -+ if(OPENCV_PKGCONF_FOUND) -+ set(OpenCV_LIBS ${OPENCV_PKGCONF_LDFLAGS}) -+ set(OpenCV_FOUND true) -+ set(OpenCV_INCLUDE_DIR ${OPENCV_PKGCONF_INCLUDE_DIRS}) -+ set(OpenCV_VERSION ${OPENCV_PKGCONF_VERSION}) -+ else(OPENCV_PKGCONF_FOUND) -+ set(OpenCV_DIR ${OPENCV_PKGCONF_PREFIX}) -+ if(EXISTS "${OpenCV_DIR}") -+ set(OpenCV_configScript_DIR "${OpenCV_DIR}/share/opencv") -+ if(EXISTS "${OpenCV_configScript_DIR}") -+ set(OpenCV_configScript "${OpenCV_configScript_DIR}/OpenCVConfig.cmake") -+ endif(EXISTS "${OpenCV_configScript_DIR}") -+ endif(EXISTS "${OpenCV_DIR}") -+ endif(OPENCV_PKGCONF_FOUND) - endif(PKG_CONFIG_FOUND) - endif(NOT WIN32) - endif(NOT EXISTS "${OpenCV_DIR}") -@@ -72,7 +80,7 @@ - ##==================================================== - ## Find OpenCV libraries - ##---------------------------------------------------- --if(EXISTS "${OpenCV_DIR}") -+if(EXISTS "${OpenCV_DIR}" AND NOT OpenCV_FOUND) - - #When its possible to use the Config script use it. - if(EXISTS "${OpenCV_configScript}") -@@ -257,9 +265,9 @@ - endif(${OpenCV_VERSION} VERSION_GREATER 2.1.0) - - --else(EXISTS "${OpenCV_DIR}") -+else(EXISTS "${OpenCV_DIR}" AND NOT OpenCV_FOUND) - set(ERR_MSG "Please specify OpenCV directory using OpenCV_DIR env. variable") --endif(EXISTS "${OpenCV_DIR}") -+endif(EXISTS "${OpenCV_DIR}" AND NOT OpenCV_FOUND) - ##==================================================== - - ##==================================================== ---- CMakeLists.txt -+++ CMakeLists.txt -@@ -33,7 +33,7 @@ - - #need to put here do setting LOCALE_DIR variable - find_package(Gettext) --if(Gettext_FOUND) -+if(GETTEXT_FOUND) - if(NOT LOCALE_DIR) - if(WIN32) - SET(LOCALE_DIR "bin/locale") -@@ -55,7 +55,7 @@ - message(STATUS "Cannot find msgfmt to convert language file. Translation won't be enabled") - endif() - endif(NOT LOCALE_DIR) --endif(Gettext_FOUND) -+endif(GETTEXT_FOUND) - add_subdirectory(themes) - add_subdirectory(data) - add_subdirectory(game) ---- game/CMakeLists.txt -+++ game/CMakeLists.txt -@@ -71,7 +71,7 @@ - list(APPEND LIBS ${Boost_LIBRARIES}) - - # Find all the libs that don't require extra parameters --foreach(lib ${OUR_LIBS} SDL PangoCairo LibRSVG LibXML++ GLEW AVFormat SWScale OpenGL Z Jpeg Png PortAudio) -+foreach(lib ${OUR_LIBS} SDL PangoCairo LibRSVG LibXML++ GLEW AVFormat SWScale OpenGL ZLIB JPEG PNG PortAudio) - find_package(${lib} REQUIRED) - include_directories(${${lib}_INCLUDE_DIRS}) - list(APPEND LIBS ${${lib}_LIBRARIES}) -@@ -79,7 +79,7 @@ - endforeach(lib) - - find_package(Gettext) --if(Gettext_FOUND) -+if(GETTEXT_FOUND) - include_directories(${Gettext_INCLUDE_DIRS}) - list(APPEND LIBS ${Gettext_LIBRARIES}) - add_definitions("-DUSE_GETTEXT") ---- tools/CMakeLists.txt -+++ tools/CMakeLists.txt -@@ -6,7 +6,7 @@ - include_directories(${Boost_INCLUDE_DIRS}) - - # Find all the libs that don't require extra parameters --foreach(lib LibXML++ Magick++ Z Jpeg Tiff Png Freetype Z) -+foreach(lib LibXML++ Magick++ ZLIB JPEG TIFF PNG Freetype ZLIB) - find_package(${lib}) - if (${lib}_FOUND) - include_directories(${${lib}_INCLUDE_DIRS}) -@@ -24,13 +24,13 @@ - if (LibXML++_FOUND) - if (Boost_FOUND) - if (Magick++_FOUND) -- if (Z_FOUND) -+ if (ZLIB_FOUND) - add_executable(ss_extract ss_extract.cpp pak.cpp ipu_conv.cpp ss_cover.cpp) -- target_link_libraries(ss_extract ${LibXML++_LIBRARIES} ${Boost_LIBRARIES} ${Magick++_LIBRARIES} ${Z_LIBRARIES} ${Jpeg_LIBRARIES} ${Tiff_LIBRARIES} ${Png_LIBRARIES} ${Freetype_LIBRARY} ${Magick++_LIBRARIES}) -+ target_link_libraries(ss_extract ${LibXML++_LIBRARIES} ${Boost_LIBRARIES} ${Magick++_LIBRARIES} ${ZLIB_LIBRARIES} ${JPEG_LIBRARIES} ${TIFF_LIBRARIES} ${PNG_LIBRARIES} ${Freetype_LIBRARY} ${Magick++_LIBRARIES}) - set(targets ${targets} ss_extract) -- else (Z_FOUND) -+ else (ZLIB_FOUND) - message("No zlib found, not building ss_extract") -- endif (Z_FOUND) -+ endif (ZLIB_FOUND) - else (Magick++_FOUND) - message("No Magick++ found, not building ss_extract") - endif (Magick++_FOUND) -@@ -40,7 +40,7 @@ - - if (Magick++_FOUND) - add_executable(ss_cover_conv cover_conv.cpp pak.cpp ss_cover.cpp) -- target_link_libraries(ss_cover_conv ${Magick++_LIBRARIES} ${LibXML++_LIBRARIES} ${Z_LIBRARIES} ${Jpeg_LIBRARIES} ${Tiff_LIBRARIES} ${Png_LIBRARIES} ${Freetype_LIBRARY} ${Magick++_LIBRARIES}) -+ target_link_libraries(ss_cover_conv ${Magick++_LIBRARIES} ${LibXML++_LIBRARIES} ${ZLIB_LIBRARIES} ${JPEG_LIBRARIES} ${TIFF_LIBRARIES} ${PNG_LIBRARIES} ${Freetype_LIBRARY} ${Magick++_LIBRARIES}) - set(targets ${targets} ss_cover_conv) - else (Magick++_FOUND) - message("No Magick++ found, not building ss_cover_conv") -@@ -58,13 +58,13 @@ - target_link_libraries(ss_archive_extract ${Boost_LIBRARIES}) - set(targets ${targets} ss_archive_extract) - -- if (Z_FOUND) -+ if (ZLIB_FOUND) - add_executable(itg_pck itg_pck.cc) -- target_link_libraries(itg_pck ${Boost_LIBRARIES} ${Z_LIBRARIES}) -+ target_link_libraries(itg_pck ${Boost_LIBRARIES} ${ZLIB_LIBRARIES}) - set(targets ${targets} itg_pck) - - add_executable(ss_chc_decode ss_chc_decode.cpp) -- target_link_libraries(ss_chc_decode ${Boost_LIBRARIES} ${Z_LIBRARIES}) -+ target_link_libraries(ss_chc_decode ${Boost_LIBRARIES} ${ZLIB_LIBRARIES}) - set(targets ${targets} ss_chc_decode) - endif() - endif (Boost_FOUND) diff --git a/games-arcade/performous/files/performous-0.7.0-desktop.patch b/games-arcade/performous/files/performous-0.7.0-desktop.patch deleted file mode 100644 index 615af5f0a348..000000000000 --- a/games-arcade/performous/files/performous-0.7.0-desktop.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- ./data/performous.desktop.orig 2012-11-15 12:31:30.686153241 -0500 -+++ ./data/performous.desktop 2012-11-15 12:32:00.460142521 -0500 -@@ -1,5 +1,4 @@ - [Desktop Entry] --Encoding=UTF-8 - Name=Performous - Comment=A karaoke game - Comment[de]=Ein Karaoke Spiel -@@ -10,7 +9,7 @@ - Comment[ro]=Un joc de tip karaoke - Comment[se]=Ett karaoke-spel - Exec=performous --Icon=performous.xpm -+Icon=performous - Terminal=false - Type=Application --Categories=Application;Game;ArcadeGame; -+Categories=Game;ArcadeGame; diff --git a/games-arcade/performous/files/performous-0.7.0-freetype.patch b/games-arcade/performous/files/performous-0.7.0-freetype.patch deleted file mode 100644 index c50a2101652a..000000000000 --- a/games-arcade/performous/files/performous-0.7.0-freetype.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- cmake/Modules/FindCairo.cmake.old 2014-07-14 14:46:07.262806432 +0200 -+++ cmake/Modules/FindCairo.cmake 2014-07-14 14:46:45.890461688 +0200 -@@ -8,7 +8,6 @@ - include(LibFindMacros) - - # Dependencies --libfind_package(Cairo Freetype) - - # Use pkg-config to get hints about paths - libfind_pkg_check_modules(Cairo_PKGCONF cairo) -@@ -28,7 +27,7 @@ - - # Set the include dir variables and the libraries and let libfind_process do the rest. - # NOTE: Singular variables for this library, plural for libraries this this lib depends on. --set(Cairo_PROCESS_INCLUDES Cairo_INCLUDE_DIR Freetype_INCLUDE_DIRS) --set(Cairo_PROCESS_LIBS Cairo_LIBRARY Freetype_LIBRARIES) -+set(Cairo_PROCESS_INCLUDES Cairo_INCLUDE_DIR) -+set(Cairo_PROCESS_LIBS Cairo_LIBRARY) - libfind_process(Cairo) - ---- cmake/Modules/FindPango.cmake.old 2014-07-14 14:46:13.754748551 +0200 -+++ cmake/Modules/FindPango.cmake 2014-07-14 14:47:06.270279853 +0200 -@@ -8,7 +8,6 @@ - include(LibFindMacros) - - # Dependencies --libfind_package(Pango Freetype) - libfind_package(Pango Glib) - libfind_package(Pango GObject) - -@@ -30,7 +29,7 @@ - - # Set the include dir variables and the libraries and let libfind_process do the rest. - # NOTE: Singular variables for this library, plural for libraries this this lib depends on. --set(Pango_PROCESS_INCLUDES Pango_INCLUDE_DIR Freetype_INCLUDE_DIRS Glib_INCLUDE_DIRS) --set(Pango_PROCESS_LIBS Pango_LIBRARY Freetype_LIBRARIES Glib_LIBRARIES GObject_LIBRARIES) -+set(Pango_PROCESS_INCLUDES Pango_INCLUDE_DIR Glib_INCLUDE_DIRS) -+set(Pango_PROCESS_LIBS Pango_LIBRARY Glib_LIBRARIES GObject_LIBRARIES) - libfind_process(Pango) - diff --git a/games-arcade/performous/files/performous-0.7.0-gentoo.patch b/games-arcade/performous/files/performous-0.7.0-gentoo.patch deleted file mode 100644 index e9a6fe316b95..000000000000 --- a/games-arcade/performous/files/performous-0.7.0-gentoo.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- game/CMakeLists.txt.old 2012-02-20 13:19:35.219635192 +0100 -+++ game/CMakeLists.txt 2012-02-20 13:20:06.025469808 +0100 -@@ -149,5 +149,5 @@ - configure_file("${CMAKE_CURRENT_SOURCE_DIR}/config.cmake.hh" "${CMAKE_CURRENT_BINARY_DIR}/config.hh" @ONLY) - include_directories("${CMAKE_CURRENT_BINARY_DIR}") - --install(TARGETS performous DESTINATION bin) -+install(TARGETS performous DESTINATION @GENTOO_BINDIR@) - ---- game/fs.cc.old 2012-02-20 20:09:48.171892171 +0100 -+++ game/fs.cc 2012-02-20 20:16:14.197400202 +0100 -@@ -195,6 +195,7 @@ - if (root) config_list.push_back(std::string(root) + "/" SHARED_DATA_DIR + configFile.string()); - fs::path exec = plugin::execname(); - if (!exec.empty()) config_list.push_back(exec.parent_path().string() + "/../" SHARED_DATA_DIR + configFile.string()); -+ config_list.push_back(SHARED_DATA_DIR + configFile.string()); - ConfigList::const_iterator it = std::find_if(config_list.begin(), config_list.end(), static_cast(fs::exists)); - if (it == config_list.end()) { - throw std::runtime_error("Could not find default config file " + configFile.string()); ---- game/fs.cc.old 2012-02-20 20:49:35.610728056 +0100 -+++ game/fs.cc 2012-02-20 20:57:03.117084432 +0100 -@@ -167,6 +167,7 @@ - - // Adding relative path from executable - dirs.push_back(plugin::execname().parent_path().parent_path() / shareDir); -+ dirs.push_back(shareDir); - #ifndef _WIN32 - // Adding XDG_DATA_DIRS - { diff --git a/games-arcade/performous/files/performous-0.7.0-libav.patch b/games-arcade/performous/files/performous-0.7.0-libav.patch deleted file mode 100644 index b598dc0a488a..000000000000 --- a/games-arcade/performous/files/performous-0.7.0-libav.patch +++ /dev/null @@ -1,41 +0,0 @@ -diff -urN Performous-0.6.1-Source.old/cmake/Modules/FindAVUtil.cmake Performous-0.6.1-Source/cmake/Modules/FindAVUtil.cmake ---- Performous-0.6.1-Source.old/cmake/Modules/FindAVUtil.cmake 2012-05-16 13:44:26.112930173 +0200 -+++ Performous-0.6.1-Source/cmake/Modules/FindAVUtil.cmake 2012-05-16 13:56:10.229914635 +0200 -@@ -25,9 +25,15 @@ - if(EXISTS "${AVUtil_INCLUDE_DIR}/${suffix}avutil.h") - set(AVUtil_INCLUDE "${suffix}avutil.h") - endif(EXISTS "${AVUtil_INCLUDE_DIR}/${suffix}avutil.h") -+ if(EXISTS "${AVUtil_INCLUDE_DIR}/${suffix}mathematics.h") -+ set(AVUtilMath_INCLUDE "${suffix}mathematics.h") -+ endif(EXISTS "${AVUtil_INCLUDE_DIR}/${suffix}mathematics.h") - endif(NOT AVUtil_INCLUDE) - endforeach(suffix) - -+ if(NOT AVUtilMath_INCLUDE) -+ message(FATAL_ERROR "Found mathematics.h include dir, but not the header file. Perhaps you need to clear CMake cache?") -+ endif(NOT AVUtilMath_INCLUDE) - if(NOT AVUtil_INCLUDE) - message(FATAL_ERROR "Found avutil.h include dir, but not the header file. Perhaps you need to clear CMake cache?") - endif(NOT AVUtil_INCLUDE) -diff -urN Performous-0.6.1-Source.old/game/config.cmake.hh Performous-0.6.1-Source/game/config.cmake.hh ---- Performous-0.6.1-Source.old/game/config.cmake.hh 2012-05-16 13:44:26.103930173 +0200 -+++ Performous-0.6.1-Source/game/config.cmake.hh 2012-05-16 13:59:24.552910345 +0200 -@@ -15,6 +15,7 @@ - #define AVCODEC_INCLUDE <@AVCodec_INCLUDE@> - #define AVFORMAT_INCLUDE <@AVFormat_INCLUDE@> - #define SWSCALE_INCLUDE <@SWScale_INCLUDE@> -+#define AVUTILMATH_INCLUDE <@AVUtilMath_INCLUDE@> - - #endif - -diff -urN Performous-0.6.1-Source.old/game/ffmpeg.cc Performous-0.6.1-Source/game/ffmpeg.cc ---- Performous-0.6.1-Source.old/game/ffmpeg.cc 2012-05-16 13:44:26.101930173 +0200 -+++ Performous-0.6.1-Source/game/ffmpeg.cc 2012-05-16 14:00:38.278908717 +0200 -@@ -10,6 +10,7 @@ - #include AVCODEC_INCLUDE - #include AVFORMAT_INCLUDE - #include SWSCALE_INCLUDE -+#include AVUTILMATH_INCLUDE - } - - // #define USE_FFMPEG_CRASH_RECOVERY diff --git a/games-arcade/performous/files/performous-0.7.0-linguas.patch b/games-arcade/performous/files/performous-0.7.0-linguas.patch deleted file mode 100644 index 21836766d878..000000000000 --- a/games-arcade/performous/files/performous-0.7.0-linguas.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- lang/CMakeLists.txt -+++ lang/CMakeLists.txt -@@ -7,5 +7,11 @@ - set(mofile ${CMAKE_CURRENT_BINARY_DIR}/${language}.mo) - add_custom_command(OUTPUT ${mofile} COMMAND ${Msgfmt_BIN} -v "${pofile}" -o ${mofile} MAIN_DEPENDENCY ${pofile} COMMENT "Building ${language} locale" VERBATIM) - add_custom_target(locale_${language} ALL DEPENDS ${mofile}) # Make sure the mofiles are always built -- install(FILES ${mofile} DESTINATION ${LOCALE_DIR}/${language}/LC_MESSAGES RENAME ${CMAKE_PROJECT_NAME}.mo) - endforeach(language) -+foreach(language $ENV{LINGUAS}) -+ set(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${language}.po) -+ if (EXISTS ${pofile}) -+ set(mofile ${CMAKE_CURRENT_BINARY_DIR}/${language}.mo) -+ install(FILES ${mofile} DESTINATION ${LOCALE_DIR}/${language}/LC_MESSAGES RENAME ${CMAKE_PROJECT_NAME}.mo) -+ endif() -+endforeach(language) diff --git a/games-arcade/performous/performous-0.7.0-r1.ebuild b/games-arcade/performous/performous-0.7.0-r1.ebuild deleted file mode 100644 index 04738daaaa37..000000000000 --- a/games-arcade/performous/performous-0.7.0-r1.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/performous/performous-0.7.0-r1.ebuild,v 1.3 2014/07/14 12:54:24 tupone Exp $ - -EAPI=5 - -CMAKE_REMOVE_MODULES="yes" -CMAKE_REMOVE_MODULES_LIST="FindALSA FindBoost FindFreetype FindGettext FindJpeg FindPng FindTiff FindZ" -inherit eutils base cmake-utils games - -MY_PN=Performous -MY_P=${MY_PN}-${PV} -SONGS_PN=ultrastar-songs - -DESCRIPTION="SingStar GPL clone" -HOMEPAGE="http://sourceforge.net/projects/performous/" -SRC_URI="mirror://sourceforge/performous/${P}.tar.bz2 - songs? ( - mirror://sourceforge/performous/${SONGS_PN}-restricted-3.zip - mirror://sourceforge/performous/${SONGS_PN}-jc-1.zip - mirror://sourceforge/performous/${SONGS_PN}-libre-3.zip - mirror://sourceforge/performous/${SONGS_PN}-shearer-1.zip - )" - -LICENSE="GPL-2 - songs? ( - CC-BY-NC-SA-2.5 - CC-BY-NC-ND-2.5 - )" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="midi songs tools webcam" - -RDEPEND="dev-cpp/glibmm - dev-cpp/libxmlpp - media-libs/portaudio - dev-libs/boost[threads(+)] - dev-libs/glib - dev-libs/libxml2 - gnome-base/librsvg - media-gfx/imagemagick - virtual/jpeg - media-libs/libpng:0 - media-libs/libsdl[joystick,video] - virtual/ffmpeg - virtual/opengl - virtual/glu - sys-libs/zlib - virtual/libintl - x11-libs/cairo - x11-libs/gdk-pixbuf - x11-libs/pango - midi? ( media-libs/portmidi ) - webcam? ( media-libs/opencv )" -DEPEND="${RDEPEND} - media-libs/glew - sys-apps/help2man - sys-devel/gettext" - -PATCHES=( - "${FILESDIR}"/${P}-libav.patch - "${FILESDIR}"/${P}-gentoo.patch - "${FILESDIR}"/${P}-linguas.patch - "${FILESDIR}"/${P}-desktop.patch - "${FILESDIR}"/${P}-cmake.patch - "${FILESDIR}"/${P}-freetype.patch -) - -src_prepare() { - base_src_prepare - sed -i \ - -e "s:@GENTOO_BINDIR@:${GAMES_BINDIR}:" \ - game/CMakeLists.txt \ - || die - - strip-linguas -u lang -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_enable tools TOOLS) - $(usex midi "" "-DNO_PORTMIDI=ON") - $(usex webcam "" "-DNO_WEBCAM=ON") - -DCMAKE_VERBOSE_MAKEFILE=TRUE - -DSHARE_INSTALL="${GAMES_DATADIR}"/${PN} - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - if use songs ; then - insinto "${GAMES_DATADIR}"/${PN} - doins -r "${WORKDIR}/songs" - fi - dodoc docs/{Authors,DeveloperReadme,instruments,TODO}.txt - prepgamesdirs -} diff --git a/games-arcade/performous/performous-0.7.0.ebuild b/games-arcade/performous/performous-0.7.0.ebuild deleted file mode 100644 index 14f708decfd3..000000000000 --- a/games-arcade/performous/performous-0.7.0.ebuild +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/performous/performous-0.7.0.ebuild,v 1.4 2013/02/07 22:06:19 ulm Exp $ - -EAPI=3 -inherit eutils flag-o-matic base cmake-utils games - -MY_PN=Performous -MY_P=${MY_PN}-${PV} -SONGS_PN=ultrastar-songs - -DESCRIPTION="SingStar GPL clone" -HOMEPAGE="http://sourceforge.net/projects/performous/" -SRC_URI="mirror://sourceforge/performous/${P}.tar.bz2 - songs? ( - mirror://sourceforge/performous/${SONGS_PN}-restricted-3.zip - mirror://sourceforge/performous/${SONGS_PN}-jc-1.zip - mirror://sourceforge/performous/${SONGS_PN}-libre-3.zip - mirror://sourceforge/performous/${SONGS_PN}-shearer-1.zip - )" - -LICENSE="GPL-2 - songs? ( - CC-BY-NC-SA-2.5 - CC-BY-NC-ND-2.5 - )" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="songs tools" - -RDEPEND="dev-cpp/glibmm - dev-cpp/libxmlpp - media-libs/portaudio - >=dev-libs/boost-1.36 - dev-libs/glib - dev-libs/libxml2 - gnome-base/librsvg - media-gfx/imagemagick - virtual/jpeg - media-libs/libpng:0 - media-libs/libsdl[joystick,video] - virtual/ffmpeg - virtual/opengl - virtual/glu - sys-libs/zlib - x11-libs/cairo - x11-libs/gdk-pixbuf - x11-libs/pango" -DEPEND="${RDEPEND} - media-libs/glew - sys-apps/help2man" - -PATCHES=( - "${FILESDIR}"/${P}-libav.patch - "${FILESDIR}"/${P}-gentoo.patch - "${FILESDIR}"/${P}-linguas.patch - "${FILESDIR}"/${P}-desktop.patch -) - -src_prepare() { - base_src_prepare - sed -i \ - -e "s:@GENTOO_BINDIR@:${GAMES_BINDIR}:" \ - game/CMakeLists.txt \ - || die - - strip-linguas -u lang - - # how do I hate boost? Let me count the ways... - local boost_ver=$(best_version ">=dev-libs/boost-1.36") - - boost_ver=${boost_ver/*boost-/} - boost_ver=${boost_ver%.*} - boost_ver=${boost_ver/./_} - - einfo "Using boost version ${boost_ver}" - append-cxxflags \ - -I/usr/include/boost-${boost_ver} - append-ldflags \ - -L/usr/$(get_libdir)/boost-${boost_ver} - export BOOST_INCLUDEDIR="/usr/include/boost-${boost_ver}" - export BOOST_LIBRARYDIR="/usr/$(get_libdir)/boost-${boost_ver}" -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_enable tools TOOLS) - -DCMAKE_VERBOSE_MAKEFILE=TRUE - -DSHARE_INSTALL="${GAMES_DATADIR}"/${PN} - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - if use songs ; then - insinto "${GAMES_DATADIR}"/${PN} - doins -r "${WORKDIR}/songs" || die - fi - dodoc docs/{Authors,DeveloperReadme,instruments,TODO}.txt - prepgamesdirs -} diff --git a/games-misc/nyancat/Manifest b/games-misc/nyancat/Manifest index fc9083ba6c8b..de59210dd015 100644 --- a/games-misc/nyancat/Manifest +++ b/games-misc/nyancat/Manifest @@ -1,2 +1 @@ -DIST nyancat-0_pre20120302.tar.bz2 10281 SHA256 86a10846c3af04417964d32ca624bba29041c81063221ca4faaaae720ade9e2f SHA512 e09fac36aca09d1f815b2e333d46bcbe38f229d5b03d53fcd709cffe6375a586f2707a858f483b87de642979b6d7ff0a5258c18f68b197f1f04abdacfa47a8c4 WHIRLPOOL 29d95232c7ae93936f079b6bd9648d17c1eba780fadb56c7b23bb10f50b63e8cfcc9267584edf48dbb69f181b42ca5c06ed40bab73deb05393eea8a8c96a79e2 DIST nyancat-1.2.1.tar.gz 14109 SHA256 a5bfafb6ea69917071aa05f9a52db43e47e97272eb2f4c6c827630cddb015972 SHA512 882bdcfe702d4613484b293f767a2ed74da63f222071e59f56a4246f56947882540930bcb2deae22f6e3326064f1c6f0ff7eb78ac6d7aa08125ebe64ebdf16eb WHIRLPOOL 3c263a35cee24babac92b3ed6ec33a8a4324adcec3364ffef2d0a3ac01786689a9969a21fde3ce1d278f572cd204be336d32d2411168bf6ac46ae47de20a5204 diff --git a/games-misc/nyancat/nyancat-0_pre20120302.ebuild b/games-misc/nyancat/nyancat-0_pre20120302.ebuild deleted file mode 100644 index 626d773b0a92..000000000000 --- a/games-misc/nyancat/nyancat-0_pre20120302.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/nyancat/nyancat-0_pre20120302.ebuild,v 1.6 2015/02/06 21:40:27 tupone Exp $ - -EAPI=5 -inherit games - -DESCRIPTION="Nyan Cat Telnet Server" -HOMEPAGE="http://github.com/klange/nyancat" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="UoI-NCSA" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -src_compile() { - emake LFLAGS="${LDFLAGS} ${CFLAGS}" -} - -src_install() { - dogamesbin src/${PN} - dodoc README.md - prepgamesdirs -} diff --git a/games-simulation/openttd/Manifest b/games-simulation/openttd/Manifest index 72c5b8c519c5..056f59ab067e 100644 --- a/games-simulation/openttd/Manifest +++ b/games-simulation/openttd/Manifest @@ -1,2 +1 @@ -DIST openttd-1.4.4-source.tar.gz 9726516 SHA256 e5b6b72e37b796ae8b532cd8c96bd27cb6c6b58ecc0e9a5a17a0a80442b5c36d SHA512 52ff5f52b511c3e222a0231c902b0763611f64d5c003c99e1c50af951688458c5c56bdc002ddd1e3c936ed920f64054e68074994fd273d2f3614a3779bad66e1 WHIRLPOOL dd7ac08a337df4554683f0f9275bb50cca169206b38f7ebfa20b6ec8a62125c8c38d444c78bd6a6230095a65e6e02b477fe8734d8b0e6ee9025008ed8058bbd8 DIST openttd-1.5.0-source.tar.gz 10018865 SHA256 4c357205a63a475001a13e4ade59a73635e2f0c480ad097f4d7f03d2ae290ee0 SHA512 c2459165bd8f957d56d4171361237e6de42221f7b8c02f98503e2225a81fd496f10da9d9c60335edb981f86c4c4ce45fafc9edf43ea38a94b84f67136a17a165 WHIRLPOOL 88a15852d1ae01f7a03ea1bcc929bcdf450265a81462aa5316d2e16e86b79167d04503a83bc231eb411d159b70073c650db6e5604adbf07eccda43a193af3e20 diff --git a/games-simulation/openttd/files/openttd-1.4.4-cflags.patch b/games-simulation/openttd/files/openttd-1.4.4-cflags.patch deleted file mode 100644 index bb7f768b3798..000000000000 --- a/games-simulation/openttd/files/openttd-1.4.4-cflags.patch +++ /dev/null @@ -1,42 +0,0 @@ ---- openttd-1.4.4/config.lib -+++ openttd-1.4.4/config.lib -@@ -1450,12 +1450,6 @@ - CFLAGS="-I/gg/os-include -noixemul -fstrict-aliasing -fexpensive-optimizations -mcpu=604 -fno-inline -mstring -mmultiple $CFLAGS" - LDFLAGS="$LDFLAGS -noixemul" - fi -- -- if [ "$enable_profiling" = "0" ]; then -- # -fomit-frame-pointer and -pg do not go well together (gcc errors they are incompatible) -- CFLAGS="-fomit-frame-pointer $CFLAGS" -- fi -- CFLAGS="-O2 $CFLAGS" - else - OBJS_SUBDIR="debug" - -@@ -1466,14 +1460,6 @@ - CFLAGS="$CFLAGS -G0" - fi - fi -- if [ $enable_debug -ge 2 ]; then -- CFLAGS="$CFLAGS -fno-inline" -- fi -- if [ $enable_debug -ge 3 ]; then -- CFLAGS="$CFLAGS -O0" -- else -- CFLAGS="$CFLAGS -O2" -- fi - fi - - if [ $enable_debug -le 2 ]; then -@@ -1498,11 +1484,6 @@ - CFLAGS="$CFLAGS -fno-expensive-optimizations" - fi - -- if [ "$enable_profiling" != "0" ]; then -- CFLAGS="$CFLAGS -pg" -- LDFLAGS="$LDFLAGS -pg" -- fi -- - if [ "$with_threads" = "0" ]; then - CFLAGS="$CFLAGS -DNO_THREADS" - fi diff --git a/games-simulation/openttd/files/openttd-1.4.4-freetype.patch b/games-simulation/openttd/files/openttd-1.4.4-freetype.patch deleted file mode 100644 index 96f1f6205567..000000000000 --- a/games-simulation/openttd/files/openttd-1.4.4-freetype.patch +++ /dev/null @@ -1,31 +0,0 @@ -Index: trunk/src/fontcache.cpp -=================================================================== ---- trunk/src/fontcache.cpp (revision 27020) -+++ trunk/src/fontcache.cpp (revision 27079) -@@ -537,6 +537,6 @@ - - /* Add 1 pixel for the shadow on the medium font. Our sprite must be at least 1x1 pixel */ -- int width = max(1, slot->bitmap.width + (this->fs == FS_NORMAL)); -- int height = max(1, slot->bitmap.rows + (this->fs == FS_NORMAL)); -+ unsigned int width = max(1U, (unsigned int)slot->bitmap.width + (this->fs == FS_NORMAL)); -+ unsigned int height = max(1U, (unsigned int)slot->bitmap.rows + (this->fs == FS_NORMAL)); - - /* Limit glyph size to prevent overflows later on. */ -@@ -554,6 +554,6 @@ - /* Draw shadow for medium size */ - if (this->fs == FS_NORMAL && !aa) { -- for (int y = 0; y < slot->bitmap.rows; y++) { -- for (int x = 0; x < slot->bitmap.width; x++) { -+ for (unsigned int y = 0; y < (unsigned int)slot->bitmap.rows; y++) { -+ for (unsigned int x = 0; x < (unsigned int)slot->bitmap.width; x++) { - if (aa ? (slot->bitmap.buffer[x + y * slot->bitmap.pitch] > 0) : HasBit(slot->bitmap.buffer[(x / 8) + y * slot->bitmap.pitch], 7 - (x % 8))) { - sprite.data[1 + x + (1 + y) * sprite.width].m = SHADOW_COLOUR; -@@ -564,6 +564,6 @@ - } - -- for (int y = 0; y < slot->bitmap.rows; y++) { -- for (int x = 0; x < slot->bitmap.width; x++) { -+ for (unsigned int y = 0; y < (unsigned int)slot->bitmap.rows; y++) { -+ for (unsigned int x = 0; x < (unsigned int)slot->bitmap.width; x++) { - if (aa ? (slot->bitmap.buffer[x + y * slot->bitmap.pitch] > 0) : HasBit(slot->bitmap.buffer[(x / 8) + y * slot->bitmap.pitch], 7 - (x % 8))) { - sprite.data[x + y * sprite.width].m = FACE_COLOUR; diff --git a/games-simulation/openttd/openttd-1.4.4.ebuild b/games-simulation/openttd/openttd-1.4.4.ebuild deleted file mode 100644 index e6c25caa4581..000000000000 --- a/games-simulation/openttd/openttd-1.4.4.ebuild +++ /dev/null @@ -1,179 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/openttd/openttd-1.4.4.ebuild,v 1.6 2015/02/25 15:52:24 ago Exp $ - -EAPI=5 -inherit eutils gnome2-utils games - -DESCRIPTION="OpenTTD is a clone of Transport Tycoon Deluxe" -HOMEPAGE="http://www.openttd.org/" -SRC_URI="http://binaries.openttd.org/releases/${PV}/${P}-source.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86" -IUSE="aplaymidi debug dedicated iconv icu lzo +openmedia +png cpu_flags_x86_sse +timidity +truetype zlib" -RESTRICT="test" # needs a graphics set in order to test - -RDEPEND="!dedicated? ( - media-libs/libsdl[sound,X,video] - icu? ( dev-libs/icu:= ) - truetype? ( - media-libs/fontconfig - media-libs/freetype:2 - sys-libs/zlib - ) - ) - lzo? ( dev-libs/lzo:2 ) - iconv? ( virtual/libiconv ) - png? ( media-libs/libpng:0 ) - zlib? ( sys-libs/zlib )" -DEPEND="${RDEPEND} - virtual/pkgconfig" -PDEPEND=" - !dedicated? ( - openmedia? ( - games-misc/openmsx - games-misc/opensfx - ) - aplaymidi? ( media-sound/alsa-utils ) - !aplaymidi? ( timidity? ( media-sound/timidity++ ) ) - ) - openmedia? ( >=games-misc/opengfx-0.4.7 )" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-cflags.patch \ - "${FILESDIR}"/${P}-freetype.patch - sed -i \ - -e '/Keywords/s/$/;/' \ - media/openttd.desktop.in || die -} - -src_configure() { - # there is an allegro interface available as well as sdl, but - # the configure for it looks broken so the sdl interface is - # always built instead. - local myopts=" --without-allegro" - - # libtimidity not needed except for some embedded platform - # nevertheless, it will be automagically linked if it is - # installed. Hence, we disable it. - myopts+=" --without-libtimidity" - - use debug && myopts+=" --enable-debug=3" - - if use dedicated ; then - myopts+=" --enable-dedicated" - else - use aplaymidi && myopts+=" --with-midi='/usr/bin/aplaymidi'" - myopts+=" - $(use_with truetype freetype) - $(use_with icu) - --with-sdl" - fi - if use png || { use !dedicated && use truetype; } || use zlib ; then - myopts+=" --with-zlib" - else - myopts+=" --without-zlib" - fi - - # configure is a hand-written bash-script, so econf will not work. - # It's all built as C++, upstream uses CFLAGS internally. - CFLAGS="" ./configure \ - --disable-strip \ - --prefix-dir="${EPREFIX}" \ - --binary-dir="${GAMES_BINDIR}" \ - --data-dir="${GAMES_DATADIR}/${PN}" \ - --install-dir="${D}" \ - --icon-dir=/usr/share/pixmaps \ - --menu-dir=/usr/share/applications \ - --icon-theme-dir=/usr/share/icons/hicolor \ - --man-dir=/usr/share/man/man6 \ - --doc-dir=/usr/share/doc/${PF} \ - --menu-group="Game;Simulation;" \ - ${myopts} \ - $(use_with iconv) \ - $(use_with png) \ - $(use_with cpu_flags_x86_sse sse) \ - $(use_with lzo liblzo2) \ - || die -} - -src_compile() { - emake VERBOSE=1 -} - -src_install() { - emake DESTDIR="${D}" install - if use dedicated ; then - newinitd "${FILESDIR}"/${PN}.initd ${PN} - rm -rf "${ED}"/usr/share/{applications,icons,pixmaps} - fi - rm -f "${ED}"/usr/share/doc/${PF}/COPYING - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update - games_pkg_postinst - - if ! use lzo ; then - elog "OpenTTD was built without 'lzo' in USE. While 'lzo' is not" - elog "required, disabling it does mean that loading old savegames" - elog "or scenarios from ancient versions (~0.2) will fail." - elog - fi - - if use dedicated ; then - ewarn "Warning: The init script will kill all running openttd" - ewarn "processes when triggered, including any running client sessions!" - else - if use aplaymidi ; then - elog "You have emerged with 'aplaymidi' for playing MIDI." - elog "This option is for those with a hardware midi device," - elog "or who have set up ALSA to handle midi ports." - elog "You must set the environment variable ALSA_OUTPUT_PORTS." - elog "Available ports can be listed by using 'aplaymidi -l'." - else - if ! use timidity ; then - elog "OpenTTD was built with neither 'aplaymidi' nor 'timidity'" - elog "in USE. Music may or may not work in-game. If you happen" - elog "to have timidity++ installed, music will work so long" - elog "as it remains installed, but OpenTTD will not depend on it." - fi - fi - if ! use openmedia ; then - elog - elog "OpenTTD was compiled without the 'openmedia' USE flag." - elog - elog "In order to play, you must at least install:" - elog "games-misc/opengfx, and games-misc/opensfx, or copy the " - elog "following 6 files from a version of Transport Tycoon Deluxe" - elog "(windows or DOS) to ~/.openttd/data/ or" - elog "${GAMES_DATADIR}/${PN}/data/." - elog - elog "From the WINDOWS version you need: " - elog "sample.cat trg1r.grf trgcr.grf trghr.grf trgir.grf trgtr.grf" - elog "OR from the DOS version you need: " - elog "SAMPLE.CAT TRG1.GRF TRGC.GRF TRGH.GRF TRGI.GRF TRGT.GRF" - elog - elog "File names are case sensitive, but should work either with" - elog "all upper or all lower case names" - elog - elog "In addition, in-game music will be unavailable: for music," - elog "install games-misc/openmsx, or use the in-game download" - elog "functionality to get a music set" - elog - fi - fi -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/games-strategy/megaglest/files/megaglest-3.11.1-cmake.patch b/games-strategy/megaglest/files/megaglest-3.11.1-cmake.patch new file mode 100644 index 000000000000..527671246e98 --- /dev/null +++ b/games-strategy/megaglest/files/megaglest-3.11.1-cmake.patch @@ -0,0 +1,28 @@ +From e463986ba1f40210b40eff34c4aac727c7f2e571 Mon Sep 17 00:00:00 2001 +From: Michael Palimaka +Date: Wed, 13 May 2015 04:22:45 +1000 +Subject: [PATCH] Fix build with >=cmake-3.2. + +The FindOpenGL module no longer pulls in X11 libraries. +--- + source/shared_lib/CMakeLists.txt | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/source/shared_lib/CMakeLists.txt b/source/shared_lib/CMakeLists.txt +index 3da563e..e5a06fc 100644 +--- a/source/shared_lib/CMakeLists.txt ++++ b/source/shared_lib/CMakeLists.txt +@@ -95,6 +95,10 @@ IF(BUILD_MEGAGLEST_MODEL_VIEWER OR BUILD_MEGAGLEST_MAP_EDITOR OR BUILD_MEGAGLEST + SET(EXTERNAL_LIBS ${EXTERNAL_LIBS} ${OPENGL_LIBRARY}) + ENDIF() + ++ IF(UNIX) ++ FIND_PACKAGE(X11 REQUIRED) ++ SET(EXTERNAL_LIBS ${EXTERNAL_LIBS} ${X11_LIBRARIES}) ++ ENDIF() + + IF(WANT_XERCES) + FIND_PACKAGE(XercesC REQUIRED) +-- +2.3.6 + diff --git a/games-strategy/megaglest/files/megaglest-3.9.1-cmake.patch b/games-strategy/megaglest/files/megaglest-3.9.1-cmake.patch index 1c04ea28262e..c7801466f5ca 100644 --- a/games-strategy/megaglest/files/megaglest-3.9.1-cmake.patch +++ b/games-strategy/megaglest/files/megaglest-3.9.1-cmake.patch @@ -16,3 +16,31 @@ Subject: fix installation DESTINATION ${MEGAGLEST_ICON_INSTALL_PATH}) ELSE() +From e463986ba1f40210b40eff34c4aac727c7f2e571 Mon Sep 17 00:00:00 2001 +From: Michael Palimaka +Date: Wed, 13 May 2015 04:22:45 +1000 +Subject: [PATCH] Fix build with >=cmake-3.2. + +The FindOpenGL module no longer pulls in X11 libraries. +--- + source/shared_lib/CMakeLists.txt | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/source/shared_lib/CMakeLists.txt b/source/shared_lib/CMakeLists.txt +index 3da563e..e5a06fc 100644 +--- a/source/shared_lib/CMakeLists.txt ++++ b/source/shared_lib/CMakeLists.txt +@@ -95,6 +95,10 @@ IF(BUILD_MEGAGLEST_MODEL_VIEWER OR BUILD_MEGAGLEST_MAP_EDITOR OR BUILD_MEGAGLEST + SET(EXTERNAL_LIBS ${EXTERNAL_LIBS} ${OPENGL_LIBRARY}) + ENDIF() + ++ IF(UNIX) ++ FIND_PACKAGE(X11 REQUIRED) ++ SET(EXTERNAL_LIBS ${EXTERNAL_LIBS} ${X11_LIBRARIES}) ++ ENDIF() + + IF(WANT_XERCES) + FIND_PACKAGE(XercesC REQUIRED) +-- +2.3.6 + diff --git a/games-strategy/megaglest/megaglest-3.11.1.ebuild b/games-strategy/megaglest/megaglest-3.11.1.ebuild index 5a598e847465..3ab98490e4fd 100644 --- a/games-strategy/megaglest/megaglest-3.11.1.ebuild +++ b/games-strategy/megaglest/megaglest-3.11.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.11.1.ebuild,v 1.2 2015/05/10 04:39:22 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.11.1.ebuild,v 1.3 2015/05/13 16:57:34 mr_bones_ Exp $ # google-breakpad # TODO: fribidi, libvorbis static @@ -70,7 +70,8 @@ src_prepare() { need-wxwidgets unicode fi - epatch "${FILESDIR}"/${P}-static-build.patch + epatch "${FILESDIR}"/${P}-static-build.patch \ + "${FILESDIR}"/${P}-cmake.patch } src_configure() { diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest index 6b155e006d9b..a42c731a2fff 100644 --- a/games-strategy/wesnoth/Manifest +++ b/games-strategy/wesnoth/Manifest @@ -1,2 +1 @@ -DIST wesnoth-1.12.1.tar.bz2 384386961 SHA256 70404764370db05e496a4e033e09c26cdc47fa6558271d803a44c4ebb7b6efe8 SHA512 6b0904c90414dbd90d3916f129611ed2630940dd47cd217c929c5a93afd04e6bd9e16b7e3e8185888ae2347f5994acbcc31622a29403e932161f3f8c86223589 WHIRLPOOL 99e7c301c354b545f5c6fa7c28f39465e2806c3b09074b4ecf50aa027f47c491605944519236d0557d24af4facb1b08520b46edbfdab1bbd670b687a4bd0ec5c DIST wesnoth-1.12.2.tar.bz2 392234446 SHA256 1f4f76e5fd0ce175a3eb7b9855aff7a58dc75899c534d7653d97ac9fd4fe798b SHA512 023df596da0cbcc53d44a91a56635c9f31cfc2f3f4315c4029b44084c07ba838d22a10e378f14fab0c27dd1befe6e1a4d9e2c92ef47890748a30d36c9355c590 WHIRLPOOL cd65d622afad67d96acb3df33841740f2db25e8850addfc979a4b63b79b959699810be9ffc0df855453fc92e385ac27f52db4db6222d66ef2b94c9ed0a6aa911 diff --git a/games-strategy/wesnoth/wesnoth-1.12.1.ebuild b/games-strategy/wesnoth/wesnoth-1.12.1.ebuild deleted file mode 100644 index cb45a6209d0c..000000000000 --- a/games-strategy/wesnoth/wesnoth-1.12.1.ebuild +++ /dev/null @@ -1,118 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.12.1.ebuild,v 1.3 2015/02/25 16:01:22 ago Exp $ - -EAPI=5 -inherit cmake-utils eutils multilib toolchain-funcs flag-o-matic games - -DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game" -HOMEPAGE="http://www.wesnoth.org/" -SRC_URI="mirror://sourceforge/wesnoth/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86 ~x86-fbsd" -IUSE="dbus dedicated doc fribidi nls server" - -RDEPEND=">=media-libs/libsdl-1.2.7:0[joystick,video,X] - media-libs/sdl-net - !dedicated? ( - >=media-libs/sdl-ttf-2.0.8 - >=media-libs/sdl-mixer-1.2[vorbis] - >=media-libs/sdl-image-1.2[jpeg,png] - fribidi? ( dev-libs/fribidi ) - dbus? ( sys-apps/dbus ) - sys-libs/zlib - x11-libs/pango - dev-lang/lua - media-libs/fontconfig - ) - >=dev-libs/boost-1.48[nls,threads] - virtual/libintl" -DEPEND="${RDEPEND} - virtual/pkgconfig - sys-devel/gettext" - -src_prepare() { - if use dedicated || use server ; then - sed \ - -e "s:GAMES_BINDIR:${GAMES_BINDIR}:" \ - -e "s:GAMES_STATEDIR:${GAMES_STATEDIR}:" \ - -e "s/GAMES_USER_DED/${GAMES_USER_DED}/" \ - -e "s/GAMES_GROUP/${GAMES_GROUP}/" "${FILESDIR}"/wesnothd.rc \ - > "${T}"/wesnothd || die - fi - if ! use doc ; then - sed -i \ - -e '/manual/d' \ - doc/CMakeLists.txt || die - fi - # bug #472994 - mv icons/wesnoth-icon-Mac.png icons/wesnoth-icon.png || die - mv icons/map-editor-icon-Mac.png icons/wesnoth_editor-icon.png || die - - # respect LINGUAS (bug #483316) - if [[ ${LINGUAS+set} ]] ; then - local langs - for lang in $(cat po/LINGUAS) - do - has $lang $LINGUAS && langs+="$lang " - done - echo "$langs" > po/LINGUAS || die - fi -} - -src_configure() { - filter-flags -ftracer -fomit-frame-pointer - if [[ $(gcc-major-version) -eq 3 ]] ; then - filter-flags -fstack-protector - append-flags -fno-stack-protector - fi - # Work around eclass - append-flags -UNDEBUG - if use dedicated || use server ; then - mycmakeargs=( - "-DENABLE_CAMPAIGN_SERVER=TRUE" - "-DENABLE_SERVER=TRUE" - "-DSERVER_UID=${GAMES_USER_DED}" - "-DSERVER_GID=${GAMES_GROUP}" - "-DFIFO_DIR=${GAMES_STATEDIR}/run/wesnothd" - ) - else - mycmakeargs=( - $(cmake-utils_use_enable fribidi FRIBIDI) - "-DENABLE_CAMPAIGN_SERVER=FALSE" - "-DENABLE_SERVER=FALSE" - ) - fi - mycmakeargs+=( - $(cmake-utils_use_enable !dedicated GAME) - $(cmake-utils_use_enable !dedicated ENABLE_DESKTOP_ENTRY) - $(cmake-utils_use_enable nls NLS) - $(cmake-utils_use_enable dbus NOTIFICATIONS) - "-DCMAKE_VERBOSE_MAKEFILE=TRUE" - "-DENABLE_STRICT_COMPILATION=FALSE" - "-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}" - "-DDATAROOTDIR=${GAMES_DATADIR}" - "-DBINDIR=${GAMES_BINDIR}" - "-DICONDIR=/usr/share/pixmaps" - "-DDESKTOPDIR=/usr/share/applications" - "-DLOCALEDIR=/usr/share/locale" - "-DMANDIR=/usr/share/man" - "-DDOCDIR=/usr/share/doc/${PF}" - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - DOCS="README changelog players_changelog" cmake-utils_src_install - if use dedicated || use server; then - keepdir "${GAMES_STATEDIR}/run/wesnothd" - doinitd "${T}"/wesnothd || die - fi - prepgamesdirs -} diff --git a/games-strategy/wesnoth/wesnoth-1.12.2.ebuild b/games-strategy/wesnoth/wesnoth-1.12.2.ebuild index 9797f94b611a..1ecdaa773684 100644 --- a/games-strategy/wesnoth/wesnoth-1.12.2.ebuild +++ b/games-strategy/wesnoth/wesnoth-1.12.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.12.2.ebuild,v 1.3 2015/05/13 09:29:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.12.2.ebuild,v 1.4 2015/05/13 16:08:08 mr_bones_ Exp $ EAPI=5 inherit cmake-utils eutils multilib toolchain-funcs flag-o-matic games @@ -24,7 +24,7 @@ RDEPEND=">=media-libs/libsdl-1.2.7:0[joystick,video,X] dbus? ( sys-apps/dbus ) sys-libs/zlib x11-libs/pango - dev-lang/lua + dev-lang/lua:0 media-libs/fontconfig ) >=dev-libs/boost-1.48[nls,threads] diff --git a/games-util/nml/Manifest b/games-util/nml/Manifest index b8a0884ae7f7..26709eb55403 100644 --- a/games-util/nml/Manifest +++ b/games-util/nml/Manifest @@ -1,2 +1,2 @@ -DIST nml-0.3.1.tar.gz 365761 SHA256 976fb7fe89870e170d58f103e3ba1b602d96e3464b9bd91150e2aaf471272d27 SHA512 0c23476ee28a9f85a276790d644840982fa70741de8f2111e2db2abb022e55a810b762567fbf4d7e9c051012cccbac76f940ebdab797572a15b88d9cdeca4a35 WHIRLPOOL 8b8cb0e359c7e50f59b0e04ef79d8ff53f4cef59fb62dafc68c683d6c13f0ca7f8006825aad7c852aa3033afc9b97945448e061d26e71b647ef57730a329f917 DIST nml-0.4.0.tar.gz 190185 SHA256 bb2a27d846831fb71954b3fea26df7930b86a7b136568cad9cb416cb77dfed8f SHA512 6bfc3b9d60a43f306cd427fa1092813a914179b3be8841966d0d63c0500823293386bc695bd9ea59aa6e0e9204f3aec9b9c50b760ec8e7ea51ba7f28563e94ef WHIRLPOOL fd51bfc3a1a10bec673d3d7ef87084eedef355a8be49536b1fc0646a689641c386da38b83408e3b822d9db1170555b24354655a79cc4ff458d8f2945381ebcbe +DIST nml-0.4.1.tar.gz 377419 SHA256 f53c06a209655407a8e9604f15bb30f137c20b3754ceb9449b4904a1956d0ae0 SHA512 3ac1b3c716b62975261fc55d5a70eba1616d65a4e68e0520da63d6be4a85646dce7fc5f17b9ae896eb8e232d756f9604b9dbc020a76020f5cd73b0419e11f006 WHIRLPOOL c122ad3301f9f5e4f4cba85c776675e66984b82123db81a97d79d3e266231afebc611d8203f9a532a23b9c485595031aa9c1b1e6f3987d67118d85b4cce49cf0 diff --git a/games-util/nml/nml-0.4.0.ebuild b/games-util/nml/nml-0.4.0.ebuild index 2d29af010bfe..62e535a334d6 100644 --- a/games-util/nml/nml-0.4.0.ebuild +++ b/games-util/nml/nml-0.4.0.ebuild @@ -1,13 +1,11 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.4.0.ebuild,v 1.3 2015/05/13 09:29:38 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.4.0.ebuild,v 1.4 2015/05/13 16:45:53 mr_bones_ Exp $ EAPI=5 PYTHON_COMPAT=( python{3_3,3_4} ) -EHG_REPO_URI="http://hg.openttdcoop.org/nml" -EHG_REVISION="0.4.0" -inherit mercurial distutils-r1 +inherit distutils-r1 DESCRIPTION="Compiler of NML files into grf/nfo files" HOMEPAGE="http://dev.openttdcoop.org/projects/nml" diff --git a/games-util/nml/nml-0.3.1.ebuild b/games-util/nml/nml-0.4.1.ebuild similarity index 62% rename from games-util/nml/nml-0.3.1.ebuild rename to games-util/nml/nml-0.4.1.ebuild index 79a02fbcb6d7..8746b76483ef 100644 --- a/games-util/nml/nml-0.3.1.ebuild +++ b/games-util/nml/nml-0.4.1.ebuild @@ -1,27 +1,25 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.3.1.ebuild,v 1.4 2015/04/08 18:12:06 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.4.1.ebuild,v 1.1 2015/05/13 16:49:32 mr_bones_ Exp $ EAPI=5 -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python{3_3,3_4} ) inherit distutils-r1 DESCRIPTION="Compiler of NML files into grf/nfo files" HOMEPAGE="http://dev.openttdcoop.org/projects/nml" -SRC_URI="http://bundles.openttdcoop.org/nml/releases/${PV}/nml-0.3.1.r5242-f6a3ae1163ab.tar.gz -> ${P}.tar.gz" +SRC_URI="http://bundles.openttdcoop.org/nml/releases/${PV}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~arm ~ppc x86" +KEYWORDS="~amd64 ~arm ~ppc ~x86" RDEPEND="dev-python/pillow[zlib,${PYTHON_USEDEP}] dev-python/ply[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" -S=${WORKDIR}/${P}.r5242-f6a3ae1163ab - DOCS=( docs/{changelog,readme}.txt ) src_install() { diff --git a/kde-misc/plasma-nm/Manifest b/kde-misc/plasma-nm/Manifest index a59d245821e1..4f3c1a089d2c 100644 --- a/kde-misc/plasma-nm/Manifest +++ b/kde-misc/plasma-nm/Manifest @@ -1,2 +1 @@ -DIST plasma-nm-0.9.3.4.tar.xz 527524 SHA256 2a249742adf7add9a62cd08eb4c1fe977de668cdd177bcc0d95597fb3fb94ff8 SHA512 40563d94dffda8e74c6df68fcbd5cdb85391a1ab2f49e8b21a015509f3a92ac69e45f99987eb899aeb62a41f3b9c985d4722ef0c2c99a1805da45e02d548fef9 WHIRLPOOL 9f120bcbc3510fe263ad7be9d0eab05cff11c4fb3f9d653c9d4a39c478c0964bfc0dd4e5043d6a8ec4707b3ae2a720526ee75b932ff7d010e6e44f380a191ea1 DIST plasma-nm-0.9.3.5.tar.xz 545340 SHA256 7757151e426c5448f5ff247c08d78e177d5ce676d886287b57abd3e9276ca135 SHA512 0a9c3c77a91fdea702ce5686293e978835de644dac9782879bdc8013de9bf15ab2603c27bdce7b91b1bf306f842d2fd2e06671bf4c6769b16ef12c1aab1beadc WHIRLPOOL c67d9c022630f6f8200473883a35ab3c4e91d21ea41429bfb117a8f7425d0bc88e242d8157706d72969178dc3509381b9b8d44e32531b21f7cd9aec16886139a diff --git a/kde-misc/plasma-nm/files/plasma-nm-0.9.3.4-missing-include.patch b/kde-misc/plasma-nm/files/plasma-nm-0.9.3.4-missing-include.patch deleted file mode 100644 index 41f5783f90a6..000000000000 --- a/kde-misc/plasma-nm/files/plasma-nm-0.9.3.4-missing-include.patch +++ /dev/null @@ -1,20 +0,0 @@ -commit 992a1826f870e8c095414351e2e9dcc044145786 -Author: Jan Grulich -Date: Fri Aug 8 14:59:32 2014 +0200 - - Add missing include to fix build on some systems - - BUG:338124 - -diff --git a/vpn/openvpn/openvpn.h b/vpn/openvpn/openvpn.h -index 64c30e4..bc3f2fb 100644 ---- a/vpn/openvpn/openvpn.h -+++ b/vpn/openvpn/openvpn.h -@@ -26,6 +26,7 @@ - - #include "vpnuiplugin.h" - -+#include - #include - - class OpenVpnUiPlugin : public VpnUiPlugin diff --git a/kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild b/kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild deleted file mode 100644 index 08af8d8d0dc7..000000000000 --- a/kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/plasma-nm/plasma-nm-0.9.3.4.ebuild,v 1.4 2014/10/27 16:43:51 ago Exp $ - -EAPI=5 - -KDE_LINGUAS="ar bs ca ca@valencia cs da de el en_GB eo es et fa fi fr ga gl hr -hu is it ja km lt lv mai mr ms nb nds nl nn pa pl pt pt_BR ro ru sk sl sr -sr@ijekavian sr@ijekavianlatin sr@latin sv th tr ug uk zh_CN zh_TW" -DECLARATIVE_REQUIRED="always" -inherit kde4-base - -if [[ ${KDE_BUILD_TYPE} != live ]]; then - KEYWORDS="amd64 x86" - SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" -else - KEYWORDS="" -fi - -DESCRIPTION="KDE Plasma applet for NetworkManager" -HOMEPAGE="https://projects.kde.org/projects/playground/network/plasma-nm" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="4" -IUSE="debug modemmanager openconnect" - -DEPEND=" - >=net-libs/libnm-qt-0.9.8.2[modemmanager?] - net-misc/mobile-broadband-provider-info - >=net-misc/networkmanager-0.9.8.0 - modemmanager? ( >=net-libs/libmm-qt-1.0.0 ) - openconnect? ( - net-misc/networkmanager-openconnect - net-misc/openconnect - ) -" -RDEPEND="${DEPEND} - !kde-misc/networkmanagement -" - -PATCHES=( "${FILESDIR}/${P}-missing-include.patch" ) - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use !modemmanager DISABLE_MODEMMANAGER_SUPPORT) - $(cmake-utils_use_find_package openconnect OpenConnect) - ) - - kde4-base_src_configure -} diff --git a/mail-filter/opendkim/Manifest b/mail-filter/opendkim/Manifest index 52209e79d981..7da87da330d3 100644 --- a/mail-filter/opendkim/Manifest +++ b/mail-filter/opendkim/Manifest @@ -1,4 +1,5 @@ DIST opendkim-2.10.0.tar.gz 1213007 SHA256 4a747c9028e1cba40b5f8ba64ec5fbcf9f7d27a8a41fec4b4a398e2a6001c747 SHA512 c1ef4a8e80ed8a6e64e9a9a4f6d2ec684622fb4248d1d1c9b696f14ec9f4163e7b37f1a936ec8d522b6531b91fc869ca875fd6ff58c96c75ba41c919bed40d53 WHIRLPOOL 8443c330265dd47774ed476e4a88da10e586dc27fe6f7d98bec8f88c9129e04df334bf2d4dcfa0c65ca9b5287d8fa478b9d9bd6da9672add32074d0d6d9da0bf DIST opendkim-2.10.2.tar.gz 1209812 SHA256 ff5dc58ca8ad94de9b999bde3c53f49ac040dc09ad4b295ea22984d8d7df4f82 SHA512 b3c3e5fa3c265082d6f68def987a6805edba3798b37390c1e8099e2cecc71a9f6080481036991f654fa02b1a09d6b2107156aa533d14d0bfc0cb2d09bc7e398c WHIRLPOOL a3ca0262d1d2b3d01e28406224afa3ae914fd9f21bb455b34070d5821dbd8211696204fd7143b2e3046a6d3afa098a1d179e7be2433126fa8c763459cb448032 +DIST opendkim-2.10.3.tar.gz 1210224 SHA256 43a0ba57bf942095fe159d0748d8933c6b1dd1117caf0273fa9a0003215e681b SHA512 97923e533d072c07ae4d16a46cbed95ee799aa50f19468d8bc6d1dc534025a8616c3b4b68b5842bc899b509349a2c9a67312d574a726b048c0ea46dd4fcc45d8 WHIRLPOOL 36bbf0f3e81fa291f31123d3614ba113b893d4ba76a5fe017cc9a393888c1ea95525b85e6042bc1db96e9a00e52aa13a251c38438cd03b0fd92b47d17036d680 DIST opendkim-2.9.2.tar.gz 1229383 SHA256 1f0c66afbe48f6223d2ab985b2c27594ae45035e3e81eba887d8ec6e5e1282c0 SHA512 f6fe77897927a93c9f57d09e5e9f43b1e73e2b21a586461b5665fb430eee1362b33d9601c8643d50d5a53c8e01b03c7af331f28cd992c9163f959723f21ebf63 WHIRLPOOL b61212d272d07c367c7d9ecb951466b66759b6d449047c10947681ea6889a1f2b2c12986e6c11a59620fb8ace3c0a177235f65f58c54c993909f61dee5cf3c3a DIST opendkim-2.9.3.tar.gz 1230406 SHA256 79a84fc17fa6aa9428ed449b1b2b773b0a4cb4ac7fa69b01b178fe0b4691c533 SHA512 9ed79f4cc595ef6dded8c1c1af77404ed629d88d2dad11c72fc0ff961bb9ab62037e010b29b651bc2cdcbdbabf001199b12544330a3af851b61d05518cf92053 WHIRLPOOL 5f24ecb5084babcd572f9cce9645aba92f1a68643bd4928b5040f3cad21f299380af746ad2dcefacc5803438a06c021a85da2be80ecf91308e7519d2df93cf51 diff --git a/mail-filter/opendkim/opendkim-2.10.3.ebuild b/mail-filter/opendkim/opendkim-2.10.3.ebuild new file mode 100644 index 000000000000..9a5fd3175d11 --- /dev/null +++ b/mail-filter/opendkim/opendkim-2.10.3.ebuild @@ -0,0 +1,196 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/opendkim/opendkim-2.10.3.ebuild,v 1.1 2015/05/13 15:11:23 eras Exp $ + +EAPI=5 +inherit autotools db-use eutils systemd user + +# for betas +#MY_P=${P/_b/.B} +#S=${WORKDIR}/${PN}-2.8.0 +#SRC_URI="mirror://sourceforge/opendkim/${MY_P}.tar.gz" + +DESCRIPTION="A milter-based application to provide DKIM signing and verification" +HOMEPAGE="http://opendkim.org" +SRC_URI="mirror://sourceforge/opendkim/${P}.tar.gz" + +LICENSE="Sendmail-Open-Source BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="+berkdb gnutls ldap lmdb lua memcached opendbx poll sasl selinux +ssl static-libs unbound" + +DEPEND="|| ( mail-filter/libmilter mail-mta/sendmail ) + dev-libs/libbsd + ssl? ( >=dev-libs/openssl-0.9.8:* ) + berkdb? ( >=sys-libs/db-3.2:* ) + opendbx? ( >=dev-db/opendbx-1.4.0 ) + lua? ( dev-lang/lua:* ) + ldap? ( net-nds/openldap ) + lmdb? ( dev-db/lmdb ) + memcached? ( dev-libs/libmemcached ) + sasl? ( dev-libs/cyrus-sasl ) + unbound? ( >=net-dns/unbound-1.4.1 net-dns/dnssec-root ) + !unbound? ( net-libs/ldns ) + gnutls? ( >=net-libs/gnutls-2.11.7 )" + +RDEPEND="${DEPEND} + sys-process/psmisc + selinux? ( sec-policy/selinux-dkim ) +" + +REQUIRED_USE="sasl? ( ldap )" + +pkg_setup() { + enewgroup milter + # mail-milter/spamass-milter creates milter user with this home directory + # For consistency reasons, milter user must be created here with this home directory + # even though this package doesn't need a home directory for this user (#280571) + enewuser milter -1 -1 /var/lib/milter milter +} + +src_prepare() { + sed -i -e 's:/var/db/dkim:/etc/opendkim:g' \ + -e 's:/var/db/opendkim:/var/lib/opendkim:g' \ + -e 's:/etc/mail:/etc/opendkim:g' \ + -e 's:mailnull:milter:g' \ + -e 's:^#[[:space:]]*PidFile.*:PidFile /run/opendkim/opendkim.pid:' \ + opendkim/opendkim.conf.sample opendkim/opendkim.conf.simple.in \ + stats/opendkim-reportstats{,.in} || die + + sed -i -e 's:dist_doc_DATA:dist_html_DATA:' libopendkim/docs/Makefile.am \ + || die + + sed -i -e '/sock.*mt.getcwd/s:mt.getcwd():"/tmp":' opendkim/tests/*.lua + sed -i -e '/sock.*mt.getcwd/s:mt.getcwd():"/proc/self/cwd":' opendkim/tests/*.lua + + eautoreconf +} + +src_configure() { + local myconf + if use berkdb ; then + myconf=$(db_includedir) + myconf="--with-db-incdir=${myconf#-I}" + myconf+=" --enable-popauth" + myconf+=" --enable-query_cache" + myconf+=" --enable-stats" + fi + if use unbound; then + myconf+=" --with-unbound" + else + myconf+=" --with-ldns" + fi + if use ldap; then + myconf+=" $(use_with sasl)" + fi + econf \ + $(use_with berkdb db) \ + $(use_with opendbx odbx) \ + $(use_with lua) \ + $(use_enable lua rbl) \ + $(use_with ldap openldap) \ + $(use_with lmdb) \ + $(use_enable poll) \ + $(use_enable static-libs static) \ + $(use_with gnutls) \ + $(use_with memcached libmemcached) \ + ${myconf} \ + --docdir=/usr/share/doc/${PF} \ + --htmldir=/usr/share/doc/${PF}/html \ + --enable-filter \ + --enable-atps \ + --enable-identity_header \ + --enable-rate_limit \ + --enable-resign \ + --enable-replace_rules \ + --enable-default_sender \ + --enable-sender_macro \ + --enable-vbr \ + --disable-live-testing + #--with-test-socket=/tmp/opendkim-$(echo ${RANDOM})-S + #--disable-rpath +} + +src_install() { + emake DESTDIR="${D}" install + + dosbin stats/opendkim-reportstats + + newinitd "${FILESDIR}/opendkim.init.r3" opendkim + systemd_dounit "${FILESDIR}/opendkim.service" + + dodir /etc/opendkim /var/lib/opendkim + fowners milter:milter /var/lib/opendkim + + # default configuration + if [ ! -f "${ROOT}"/etc/opendkim/opendkim.conf ]; then + grep ^[^#] "${S}"/opendkim/opendkim.conf.simple \ + > "${D}"/etc/opendkim/opendkim.conf + if use unbound; then + echo TrustAnchorFile /etc/dnssec/root-anchors.txt >> "${D}"/etc/opendkim/opendkim.conf + fi + echo UserID milter >> "${D}"/etc/opendkim/opendkim.conf + if use berkdb; then + echo Statistics /var/lib/opendkim/stats.dat >> \ + "${D}"/etc/opendkim/opendkim.conf + fi + fi + + use static-libs || find "${D}" -name "*.la" -delete +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSION} ]]; then + elog "If you want to sign your mail messages and need some help" + elog "please run:" + elog " emerge --config ${CATEGORY}/${PN}" + elog "It will help you create your key and give you hints on how" + elog "to configure your DNS and MTA." + + ewarn "Make sure your MTA has r/w access to the socket file." + ewarn "This can be done either by setting UMask to 002 and adding MTA's user" + ewarn "to milter group or you can simply set UMask to 000." + fi +} + +pkg_config() { + local selector keysize pubkey + + read -p "Enter the selector name (default ${HOSTNAME}): " selector + [[ -n "${selector}" ]] || selector=${HOSTNAME} + if [[ -z "${selector}" ]]; then + eerror "Oddly enough, you don't have a HOSTNAME." + return 1 + fi + if [[ -f "${ROOT}"etc/opendkim/${selector}.private ]]; then + ewarn "The private key for this selector already exists." + else + keysize=1024 + # generate the private and public keys + opendkim-genkey -b ${keysize} -D "${ROOT}"etc/opendkim/ \ + -s ${selector} -d '(your domain)' && \ + chown milter:milter \ + "${ROOT}"etc/opendkim/"${selector}".private || \ + { eerror "Failed to create private and public keys." ; return 1; } + chmod go-r "${ROOT}"etc/opendkim/"${selector}".private + fi + + # opendkim selector configuration + echo + einfo "Make sure you have the following settings in your /etc/opendkim/opendkim.conf:" + einfo " Keyfile /etc/opendkim/${selector}.private" + einfo " Selector ${selector}" + + # MTA configuration + echo + einfo "If you are using Postfix, add following lines to your main.cf:" + einfo " smtpd_milters = unix:/var/run/opendkim/opendkim.sock" + einfo " non_smtpd_milters = unix:/var/run/opendkim/opendkim.sock" + einfo " and read http://www.postfix.org/MILTER_README.html" + + # DNS configuration + einfo "After you configured your MTA, publish your key by adding this TXT record to your domain:" + cat "${ROOT}"etc/opendkim/${selector}.txt + einfo "t=y signifies you only test the DKIM on your domain. See following page for the complete list of tags:" + einfo " http://www.dkim.org/specs/rfc4871-dkimbase.html#key-text" +} diff --git a/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16.ebuild b/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16-r1.ebuild similarity index 92% rename from media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16.ebuild rename to media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16-r1.ebuild index cf7b328bcba4..51fa7f76d3c3 100644 --- a/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16.ebuild +++ b/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16.ebuild,v 1.2 2015/03/21 18:41:22 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16-r1.ebuild,v 1.1 2015/05/13 15:09:35 mgorny Exp $ EAPI="5" @@ -20,6 +20,7 @@ IUSE="alsa pulseaudio" REQUIRED_USE="|| ( alsa pulseaudio )" RDEPEND=" + dev-libs/quazip:0/0[qt5] dev-qt/qtcore:5 dev-qt/qtgui:5[accessibility] dev-qt/qtnetwork:5 @@ -54,6 +55,9 @@ src_prepare() { rm soundbackends/libpulseaudio* || die fi + # Remove quazip + rm libquazip.so.1 || die + # Rename the tsclient to its shorter version, required by the teamspeak3 script we install. mv ts3client_linux_* ts3client || die "Couldn't rename ts3client to its shorter version." } diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 5c3f6bd76f51..65263e752275 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 13 May 2015 13:06:51 +0000 +Wed, 13 May 2015 18:07:32 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index b39197c2b20d..65263e752275 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 13 May 2015 13:06:52 +0000 +Wed, 13 May 2015 18:07:32 +0000 diff --git a/metadata/md5-cache/app-accessibility/brltty-5.0-r3 b/metadata/md5-cache/app-accessibility/brltty-5.0-r3 deleted file mode 100644 index 6d5ca7baf476..000000000000 --- a/metadata/md5-cache/app-accessibility/brltty-5.0-r3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup -DEPEND=virtual/pkgconfig java? ( >=virtual/jdk-1.4 ) python? ( >=dev-python/cython-0.16[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) bluetooth? ( net-wireless/bluez ) gpm? ( >=sys-libs/gpm-1.20 ) iconv? ( virtual/libiconv ) icu? ( dev-libs/icu:= ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) ncurses? ( sys-libs/ncurses ) nls? ( virtual/libintl ) tcl? ( >=dev-lang/tcl-8.4.15:0= ) usb? ( virtual/libusb:0 ) X? ( x11-libs/libXaw ) ocaml? ( >=dev-ml/findlib-1.0.4-r1 ) java? ( >=dev-java/java-config-2.2.0 ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=Daemon that provides access to the Linux/Unix console for a blind person -EAPI=5 -HOMEPAGE=http://mielke.cc/brltty/ -IUSE=+api +beeper bluetooth +contracted-braille doc +fm gpm iconv icu java +midi ncurses nls ocaml +pcm python usb +speech tcl X elibc_FreeBSD java python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 x86 -LICENSE=GPL-2 LGPL-2.1 -RDEPEND=java? ( >=virtual/jre-1.4 ) bluetooth? ( net-wireless/bluez ) gpm? ( >=sys-libs/gpm-1.20 ) iconv? ( virtual/libiconv ) icu? ( dev-libs/icu:= ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) ncurses? ( sys-libs/ncurses ) nls? ( virtual/libintl ) tcl? ( >=dev-lang/tcl-8.4.15:0= ) usb? ( virtual/libusb:0 ) X? ( x11-libs/libXaw ) java? ( >=dev-java/java-config-2.2.0 ) -REQUIRED_USE=doc? ( api ) java? ( api ) ocaml? ( api ) python? ( api ) tcl? ( api ) -SLOT=0 -SRC_URI=http://mielke.cc/brltty/archive/brltty-5.0.tar.xz -_eclasses_=autotools 999c8f6cf5d91495cb0779588f20716c eutils 9fb270e417e0e83d64ca52586c4a79de findlib 9cf6020ee5481f39f1aa566a323f9868 flag-o-matic 5d5921a298e95441da2f85be419894c0 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 f7dce580d4098b526be3fa17d4242820 libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 udev da001465a2e939c93f7ae16947ce3438 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=5fa532280c190fb351b84555d3e3d753 diff --git a/metadata/md5-cache/app-cdr/k3b-2.0.2-r4 b/metadata/md5-cache/app-cdr/k3b-2.0.2-r4 deleted file mode 100644 index 08d8d40ba4d5..000000000000 --- a/metadata/md5-cache/app-cdr/k3b-2.0.2-r4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/libkcddb-4.4:4[aqua=] media-libs/libsamplerate dvd? ( media-libs/libdvdread ) ffmpeg? ( virtual/ffmpeg ) flac? ( >=media-libs/flac-1.2[cxx] ) mp3? ( media-sound/lame ) mad? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) sndfile? ( media-libs/libsndfile ) taglib? ( >=media-libs/taglib-1.5 ) vorbis? ( media-libs/libvorbis ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) >=dev-qt/qtmultimedia-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=The CD/DVD Kreator for KDE -EAPI=5 -HOMEPAGE=http://www.k3b.org/ -IUSE=debug dvd emovix encode ffmpeg flac mad mp3 musepack sndfile sox taglib vcd vorbis linguas_ast linguas_be linguas_bg linguas_ca linguas_ca@valencia linguas_cs linguas_csb linguas_da linguas_de linguas_el linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fi linguas_fr linguas_ga linguas_gl linguas_he linguas_hi linguas_hne linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_ko linguas_ku linguas_lt linguas_mai linguas_nb linguas_nds linguas_nl linguas_nn linguas_oc linguas_pa linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_se linguas_sk linguas_sl linguas_sv linguas_th linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW +handbook aqua -KEYWORDS=amd64 ~ppc x86 -LICENSE=GPL-2 FDL-1.2 -RDEPEND=>=kde-base/libkcddb-4.4:4[aqua=] media-libs/libsamplerate dvd? ( media-libs/libdvdread ) ffmpeg? ( virtual/ffmpeg ) flac? ( >=media-libs/flac-1.2[cxx] ) mp3? ( media-sound/lame ) mad? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) sndfile? ( media-libs/libsndfile ) taglib? ( >=media-libs/taglib-1.5 ) vorbis? ( media-libs/libvorbis ) >=kde-base/kdelibs-4.4:4[aqua=,udev,udisks(+)] app-cdr/cdrdao media-sound/cdparanoia virtual/cdrtools dvd? ( >=app-cdr/dvd+rw-tools-7 encode? ( media-video/transcode[dvd] ) ) emovix? ( media-video/emovix ) sox? ( media-sound/sox ) vcd? ( media-video/vcdimager ) || ( kde-apps/oxygen-icons >=kde-base/oxygen-icons-4.14.3:4[aqua=] ) linguas_ast? ( || ( kde-apps/kde-l10n[linguas_ast(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ast(+)] ) ) linguas_be? ( || ( kde-apps/kde-l10n[linguas_be(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_be(+)] ) ) linguas_bg? ( || ( kde-apps/kde-l10n[linguas_bg(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bg(+)] ) ) linguas_ca? ( || ( kde-apps/kde-l10n[linguas_ca(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) ) linguas_ca@valencia? ( || ( kde-apps/kde-l10n[linguas_ca@valencia(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca@valencia(+)] ) ) linguas_cs? ( || ( kde-apps/kde-l10n[linguas_cs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) ) linguas_csb? ( || ( kde-apps/kde-l10n[linguas_csb(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_csb(+)] ) ) linguas_da? ( || ( kde-apps/kde-l10n[linguas_da(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) ) linguas_de? ( || ( kde-apps/kde-l10n[linguas_de(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) ) linguas_el? ( || ( kde-apps/kde-l10n[linguas_el(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) ) linguas_en_GB? ( || ( kde-apps/kde-l10n[linguas_en_GB(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) ) linguas_eo? ( || ( kde-apps/kde-l10n[linguas_eo(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eo(+)] ) ) linguas_es? ( || ( kde-apps/kde-l10n[linguas_es(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) ) linguas_et? ( || ( kde-apps/kde-l10n[linguas_et(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) ) linguas_eu? ( || ( kde-apps/kde-l10n[linguas_eu(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eu(+)] ) ) linguas_fi? ( || ( kde-apps/kde-l10n[linguas_fi(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) ) linguas_fr? ( || ( kde-apps/kde-l10n[linguas_fr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) ) linguas_ga? ( || ( kde-apps/kde-l10n[linguas_ga(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) ) linguas_gl? ( || ( kde-apps/kde-l10n[linguas_gl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) ) linguas_he? ( || ( kde-apps/kde-l10n[linguas_he(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_he(+)] ) ) linguas_hi? ( || ( kde-apps/kde-l10n[linguas_hi(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hi(+)] ) ) linguas_hne? ( || ( kde-apps/kde-l10n[linguas_hne(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hne(+)] ) ) linguas_hr? ( || ( kde-apps/kde-l10n[linguas_hr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hr(+)] ) ) linguas_hu? ( || ( kde-apps/kde-l10n[linguas_hu(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) ) linguas_is? ( || ( kde-apps/kde-l10n[linguas_is(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_is(+)] ) ) linguas_it? ( || ( kde-apps/kde-l10n[linguas_it(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) ) linguas_ja? ( || ( kde-apps/kde-l10n[linguas_ja(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) ) linguas_km? ( || ( kde-apps/kde-l10n[linguas_km(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) ) linguas_ko? ( || ( kde-apps/kde-l10n[linguas_ko(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ko(+)] ) ) linguas_ku? ( || ( kde-apps/kde-l10n[linguas_ku(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ku(+)] ) ) linguas_lt? ( || ( kde-apps/kde-l10n[linguas_lt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) ) linguas_mai? ( || ( kde-apps/kde-l10n[linguas_mai(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mai(+)] ) ) linguas_nb? ( || ( kde-apps/kde-l10n[linguas_nb(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) ) linguas_nds? ( || ( kde-apps/kde-l10n[linguas_nds(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) ) linguas_nl? ( || ( kde-apps/kde-l10n[linguas_nl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) ) linguas_nn? ( || ( kde-apps/kde-l10n[linguas_nn(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nn(+)] ) ) linguas_oc? ( || ( kde-apps/kde-l10n[linguas_oc(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_oc(+)] ) ) linguas_pa? ( || ( kde-apps/kde-l10n[linguas_pa(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pa(+)] ) ) linguas_pl? ( || ( kde-apps/kde-l10n[linguas_pl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) ) linguas_pt? ( || ( kde-apps/kde-l10n[linguas_pt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) ) linguas_pt_BR? ( || ( kde-apps/kde-l10n[linguas_pt_BR(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) ) linguas_ro? ( || ( kde-apps/kde-l10n[linguas_ro(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) ) linguas_ru? ( || ( kde-apps/kde-l10n[linguas_ru(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) ) linguas_se? ( || ( kde-apps/kde-l10n[linguas_se(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_se(+)] ) ) linguas_sk? ( || ( kde-apps/kde-l10n[linguas_sk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) ) linguas_sl? ( || ( kde-apps/kde-l10n[linguas_sl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sl(+)] ) ) linguas_sv? ( || ( kde-apps/kde-l10n[linguas_sv(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) ) linguas_th? ( || ( kde-apps/kde-l10n[linguas_th(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_th(+)] ) ) linguas_tr? ( || ( kde-apps/kde-l10n[linguas_tr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) ) linguas_uk? ( || ( kde-apps/kde-l10n[linguas_uk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) ) linguas_zh_CN? ( || ( kde-apps/kde-l10n[linguas_zh_CN(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) ) linguas_zh_TW? ( || ( kde-apps/kde-l10n[linguas_zh_TW(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) >=dev-qt/qtmultimedia-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -REQUIRED_USE=mp3? ( encode ) sox? ( encode ) -SLOT=4 -SRC_URI=mirror://sourceforge/k3b/k3b-2.0.2.tar.bz2 -_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 5d5921a298e95441da2f85be419894c0 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 7c90856593f1c0e52c66a533c4c9a8b7 kde4-functions 99e770658f27aaf2c8a5850af7598b18 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=1ab4a00921279637ed0bdeba10a2fb11 diff --git a/metadata/md5-cache/app-cdr/k3b-2.0.2_p20140225 b/metadata/md5-cache/app-cdr/k3b-2.0.2_p20140225 deleted file mode 100644 index 941cddb9d15d..000000000000 --- a/metadata/md5-cache/app-cdr/k3b-2.0.2_p20140225 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/libkcddb-4.4:4[aqua=] media-libs/libsamplerate dvd? ( media-libs/libdvdread ) ffmpeg? ( virtual/ffmpeg ) flac? ( >=media-libs/flac-1.2[cxx] ) mp3? ( media-sound/lame ) mad? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) sndfile? ( media-libs/libsndfile ) taglib? ( >=media-libs/taglib-1.5 ) vorbis? ( media-libs/libvorbis ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) >=dev-qt/qtmultimedia-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=The CD/DVD Kreator for KDE -EAPI=5 -HOMEPAGE=http://www.k3b.org/ -IUSE=debug dvd emovix encode ffmpeg flac mad mp3 musepack sndfile sox taglib vcd vorbis +handbook aqua -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=GPL-2 FDL-1.2 -RDEPEND=>=kde-base/libkcddb-4.4:4[aqua=] media-libs/libsamplerate dvd? ( media-libs/libdvdread ) ffmpeg? ( virtual/ffmpeg ) flac? ( >=media-libs/flac-1.2[cxx] ) mp3? ( media-sound/lame ) mad? ( media-libs/libmad ) musepack? ( >=media-sound/musepack-tools-444 ) sndfile? ( media-libs/libsndfile ) taglib? ( >=media-libs/taglib-1.5 ) vorbis? ( media-libs/libvorbis ) >=kde-base/kdelibs-4.4:4[aqua=,udev,udisks(+)] app-cdr/cdrdao media-sound/cdparanoia virtual/cdrtools dvd? ( >=app-cdr/dvd+rw-tools-7 encode? ( media-video/transcode[dvd] ) ) emovix? ( media-video/emovix ) sox? ( media-sound/sox ) vcd? ( media-video/vcdimager ) || ( kde-apps/oxygen-icons >=kde-base/oxygen-icons-4.14.3:4[aqua=] ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) >=dev-qt/qtmultimedia-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -REQUIRED_USE=mp3? ( encode ) sox? ( encode ) -SLOT=4 -SRC_URI=http://dev.gentoo.org/~creffett/distfiles/k3b-2.0.2_p20140225.tar.xz -_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 5d5921a298e95441da2f85be419894c0 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 7c90856593f1c0e52c66a533c4c9a8b7 kde4-functions 99e770658f27aaf2c8a5850af7598b18 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=ad72277c3120f3f7d9e4acbf504972e1 diff --git a/metadata/md5-cache/app-crypt/gnupg-2.1.3-r3 b/metadata/md5-cache/app-crypt/gnupg-2.1.4 similarity index 95% rename from metadata/md5-cache/app-crypt/gnupg-2.1.3-r3 rename to metadata/md5-cache/app-crypt/gnupg-2.1.4 index bbaa3f9ea93b..89dd55e9903b 100644 --- a/metadata/md5-cache/app-crypt/gnupg-2.1.3-r3 +++ b/metadata/md5-cache/app-crypt/gnupg-2.1.4 @@ -9,6 +9,6 @@ LICENSE=GPL-3 RDEPEND=!static? ( dev-libs/npth >=dev-libs/libassuan-2 >=dev-libs/libgcrypt-1.6.2 >=dev-libs/libgpg-error-1.17 >=dev-libs/libksba-1.0.7 >=net-misc/curl-7.10 gnutls? ( >=net-libs/gnutls-3.0 ) sys-libs/zlib ldap? ( net-nds/openldap ) bzip2? ( app-arch/bzip2 ) readline? ( sys-libs/readline ) smartcard? ( usb? ( virtual/libusb:0 ) ) ) app-crypt/pinentry !app-crypt/dirmngr selinux? ( sec-policy/selinux-gpg ) nls? ( virtual/libintl ) REQUIRED_USE=smartcard? ( !static ) SLOT=0 -SRC_URI=mirror://gnupg/gnupg/gnupg-2.1.3.tar.bz2 +SRC_URI=mirror://gnupg/gnupg/gnupg-2.1.4.tar.bz2 _eclasses_=autotools 999c8f6cf5d91495cb0779588f20716c eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 -_md5_=c88eceaaacc2405553086a29c0cea047 +_md5_=222579437365d3e93f24a0cf13bf67cb diff --git a/metadata/md5-cache/app-crypt/seahorse-3.12.2 b/metadata/md5-cache/app-crypt/seahorse-3.12.2 deleted file mode 100644 index 6a2dc64838f8..000000000000 --- a/metadata/md5-cache/app-crypt/seahorse-3.12.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=>=app-crypt/gcr-3.11.91:= >=dev-libs/glib-2.10:2 >=x11-libs/gtk+-3.4:3 >=app-crypt/libsecret-0.16 >=net-libs/libsoup-2.33.92:2.4 x11-misc/shared-mime-info net-misc/openssh >=app-crypt/gpgme-1 >=app-crypt/gnupg-1.4 avahi? ( >=net-dns/avahi-0.6:= ) ldap? ( net-nds/openldap:= ) >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 -DESCRIPTION=A GNOME application for managing encryption keys -EAPI=5 -HOMEPAGE=https://wiki.gnome.org/Apps/Seahorse -IUSE=avahi debug ldap debug -KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd -LICENSE=GPL-2+ FDL-1.1+ -RDEPEND=>=app-crypt/gcr-3.11.91:= >=dev-libs/glib-2.10:2 >=x11-libs/gtk+-3.4:3 >=app-crypt/libsecret-0.16 >=net-libs/libsoup-2.33.92:2.4 x11-misc/shared-mime-info net-misc/openssh >=app-crypt/gpgme-1 >=app-crypt/gnupg-1.4 avahi? ( >=net-dns/avahi-0.6:= ) ldap? ( net-nds/openldap:= ) !=app-crypt/gcr-3.11.91:= >=dev-libs/glib-2.10:2 >=x11-libs/gtk+-3.4:3 >=app-crypt/libsecret-0.16 >=net-libs/libsoup-2.33.92:2.4 x11-misc/shared-mime-info net-misc/openssh >=app-crypt/gpgme-1 >=app-crypt/gnupg-1.4 avahi? ( >=net-dns/avahi-0.6:= ) ldap? ( net-nds/openldap:= ) >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 -DESCRIPTION=A GNOME application for managing encryption keys -EAPI=5 -HOMEPAGE=https://wiki.gnome.org/Apps/Seahorse -IUSE=avahi debug ldap debug -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd -LICENSE=GPL-2+ FDL-1.1+ -RDEPEND=>=app-crypt/gcr-3.11.91:= >=dev-libs/glib-2.10:2 >=x11-libs/gtk+-3.4:3 >=app-crypt/libsecret-0.16 >=net-libs/libsoup-2.33.92:2.4 x11-misc/shared-mime-info net-misc/openssh >=app-crypt/gpgme-1 >=app-crypt/gnupg-1.4 avahi? ( >=net-dns/avahi-0.6:= ) ldap? ( net-nds/openldap:= ) !=app-crypt/gcr-3.11.91:= >=dev-libs/glib-2.10:2 >=x11-libs/gtk+-3.4:3 >=app-crypt/libsecret-0.16 >=net-libs/libsoup-2.33.92:2.4 x11-misc/shared-mime-info net-misc/openssh >=app-crypt/gpgme-1 >=app-crypt/gnupg-1.4 ldap? ( net-nds/openldap:= ) zeroconf? ( >=net-dns/avahi-0.6:= ) >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 +DEPEND=>=app-crypt/gcr-3.11.91:= >=dev-libs/glib-2.10:2 >=x11-libs/gtk+-3.4:3 >=app-crypt/libsecret-0.16 >=net-libs/libsoup-2.33.92:2.4 x11-misc/shared-mime-info net-misc/openssh >=app-crypt/gpgme-1 >=app-crypt/gnupg-1.4 =net-dns/avahi-0.6:= ) >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 DESCRIPTION=A GNOME application for managing encryption keys EAPI=5 HOMEPAGE=https://wiki.gnome.org/Apps/Seahorse IUSE=debug ldap zeroconf KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd LICENSE=GPL-2+ FDL-1.1+ -RDEPEND=>=app-crypt/gcr-3.11.91:= >=dev-libs/glib-2.10:2 >=x11-libs/gtk+-3.4:3 >=app-crypt/libsecret-0.16 >=net-libs/libsoup-2.33.92:2.4 x11-misc/shared-mime-info net-misc/openssh >=app-crypt/gpgme-1 >=app-crypt/gnupg-1.4 ldap? ( net-nds/openldap:= ) zeroconf? ( >=net-dns/avahi-0.6:= ) !=app-crypt/gcr-3.11.91:= >=dev-libs/glib-2.10:2 >=x11-libs/gtk+-3.4:3 >=app-crypt/libsecret-0.16 >=net-libs/libsoup-2.33.92:2.4 x11-misc/shared-mime-info net-misc/openssh >=app-crypt/gpgme-1 >=app-crypt/gnupg-1.4 =net-dns/avahi-0.6:= ) !=media-libs/mesa-8.0.0[gles2] ) ) ois? ( dev-games/ois ) threads? ( poco? ( dev-libs/poco ) tbb? ( dev-cpp/tbb ) ) zip? ( sys-libs/zlib dev-libs/zziplib ) x11-proto/xf86vidmodeproto virtual/pkgconfig doc? ( app-doc/doxygen ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Object-oriented Graphics Rendering Engine -EAPI=5 -HOMEPAGE=http://www.ogre3d.org/ -IUSE=+boost cg doc double-precision examples +freeimage gles2 ois +opengl poco profile tbb threads tools +zip -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=media-libs/freetype:2 virtual/opengl virtual/glu x11-libs/libX11 x11-libs/libXaw x11-libs/libXrandr x11-libs/libXt boost? ( dev-libs/boost ) cg? ( media-gfx/nvidia-cg-toolkit ) freeimage? ( media-libs/freeimage ) gles2? ( || ( =media-libs/mesa-8.0.0[gles2] ) ) ois? ( dev-games/ois ) threads? ( poco? ( dev-libs/poco ) tbb? ( dev-cpp/tbb ) ) zip? ( sys-libs/zlib dev-libs/zziplib ) -REQUIRED_USE=threads? ( || ( boost poco tbb ) ) -RESTRICT=test -SLOT=0/1.8.1 -SRC_URI=mirror://sourceforge/ogre/ogre_src_v1-8-1.tar.bz2 -_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 -_md5_=a50e5750b4f294b221cf6fc89bac89ef diff --git a/metadata/md5-cache/dev-java/slf4j-api-1.7.7 b/metadata/md5-cache/dev-java/slf4j-api-1.7.7 index 9ad284e8439d..b5fc28f6cc19 100644 --- a/metadata/md5-cache/dev-java/slf4j-api-1.7.7 +++ b/metadata/md5-cache/dev-java/slf4j-api-1.7.7 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=>=virtual/jdk-1.5 app-arch/unzip test? ( dev-java/junit:4 dev-java/ant-junit4:0 ) >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 +DEPEND=>=virtual/jdk-1.5 app-arch/unzip test? ( dev-java/junit:4 dev-java/ant-junit:0 ) >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 DESCRIPTION=Simple Logging Facade for Java EAPI=5 HOMEPAGE=http://www.slf4j.org/ @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.5 >=dev-java/java-config-2.2.0 source? ( app-arch/zip ) SLOT=0 SRC_URI=http://www.slf4j.org/dist/slf4j-1.7.7.tar.gz _eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de java-ant-2 1091461b8b02f54fabcfbf159164ff15 java-pkg-2 d562d1b6cbce43112feccc8b7632f1bf java-utils-2 f7dce580d4098b526be3fa17d4242820 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=61c4b035707395e073bc6251b3ac66fd +_md5_=bc1eec89d7526b103cfe6c0c276e1be7 diff --git a/metadata/md5-cache/dev-python/ipython-3.1.0 b/metadata/md5-cache/dev-python/ipython-3.1.0 index 00d73dc05974..7aacf9f40fa4 100644 --- a/metadata/md5-cache/dev-python/ipython-3.1.0 +++ b/metadata/md5-cache/dev-python/ipython-3.1.0 @@ -6,9 +6,9 @@ HOMEPAGE=http://ipython.org/ IUSE=doc examples matplotlib mongodb notebook nbconvert octave qt4 +smp test wxwidgets python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 test KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=BSD -RDEPEND=dev-python/decorator[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pexpect[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyparsing[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/simplegeneric[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] matplotlib? ( dev-python/matplotlib[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) mongodb? ( dev-python/pymongo[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) octave? ( dev-python/oct2py[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) smp? ( >=dev-python/pyzmq-13[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) wxwidgets? ( python_targets_python2_7? ( dev-python/wxpython:*[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) notebook? ( dev-libs/mathjax dev-python/jinja[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/jsonschema[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/mistune-0.5[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pygments[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pyzmq-2.1.11[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/terminado-0.3.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=www-servers/tornado-3.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) nbconvert? ( || ( >=net-libs/nodejs-0.9.12 >=app-text/pandoc-1.12.1 ) dev-python/jinja[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/jsonschema[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/mistune-0.5[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pygments[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) qt4? ( || ( dev-python/PyQt4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyside[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) dev-python/pygments[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pyzmq-13[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[readline,sqlite] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[readline,sqlite] ) python_targets_python3_4? ( dev-lang/python:3.4[readline,sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +RDEPEND=dev-python/decorator[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pexpect[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pyparsing[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/simplegeneric[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] matplotlib? ( dev-python/matplotlib[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) mongodb? ( dev-python/pymongo[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) octave? ( dev-python/oct2py[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) smp? ( >=dev-python/pyzmq-13[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) wxwidgets? ( python_targets_python2_7? ( dev-python/wxpython:*[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) notebook? ( dev-libs/mathjax dev-python/jinja[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/jsonschema[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/mistune-0.5[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pygments[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pyzmq-2.1.11[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/terminado-0.3.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=www-servers/tornado-3.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) nbconvert? ( || ( >=net-libs/nodejs-0.9.12 >=app-text/pandoc-1.12.1 ) dev-python/jinja[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/jsonschema[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/mistune-0.5[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pygments[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) qt4? ( || ( dev-python/PyQt4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),svg] dev-python/PyQt5[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),svg] dev-python/pyside[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),svg] ) dev-python/pygments[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pyzmq-13[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[readline,sqlite] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[readline,sqlite] ) python_targets_python3_4? ( dev-lang/python:3.4[readline,sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] REQUIRED_USE=test? ( doc matplotlib mongodb notebook nbconvert octave qt4 wxwidgets ) || ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) SLOT=0 SRC_URI=mirror://pypi/i/ipython/ipython-3.1.0.tar.gz _eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=cdb8b1c356fd867c36e29926e9eb4841 +_md5_=23be74dd8b56ec752a288d2d1ef3b108 diff --git a/metadata/md5-cache/dev-util/glade-3.16.1 b/metadata/md5-cache/dev-util/glade-3.16.1 deleted file mode 100644 index 41415efeaec5..000000000000 --- a/metadata/md5-cache/dev-util/glade-3.16.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/atk[introspection?] >=dev-libs/glib-2.32:2 >=dev-libs/libxml2-2.4.0:2 x11-libs/cairo:= x11-libs/gdk-pixbuf:2[introspection?] >=x11-libs/gtk+-3.10:3[introspection?] x11-libs/pango[introspection?] introspection? ( >=dev-libs/gobject-introspection-1.32 ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] >=dev-python/pygobject-3.8:3[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] ) app-text/docbook-xml-dtd:4.1.2 app-text/yelp-tools dev-libs/libxslt >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.41.0 virtual/pkgconfig dev-libs/gobject-introspection-common gnome-base/gnome-common !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=A user interface designer for GTK+ and GNOME -EAPI=5 -HOMEPAGE=http://glade.gnome.org/ -IUSE=+introspection python debug python_targets_python2_7 test -KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=GPL-2+ FDL-1.1+ -RDEPEND=dev-libs/atk[introspection?] >=dev-libs/glib-2.32:2 >=dev-libs/libxml2-2.4.0:2 x11-libs/cairo:= x11-libs/gdk-pixbuf:2[introspection?] >=x11-libs/gtk+-3.10:3[introspection?] x11-libs/pango[introspection?] introspection? ( >=dev-libs/gobject-introspection-1.32 ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] >=dev-python/pygobject-3.8:3[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] ) -REQUIRED_USE=python? ( python_targets_python2_7 ) -SLOT=3.10/6 -SRC_URI=mirror://gnome/sources/glade/3.16/glade-3.16.1.tar.xz -_eclasses_=autotools 999c8f6cf5d91495cb0779588f20716c eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 10c513def52488230abb60a4b19a03b9 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 7a178335dbd6ea7f50ed4e3e1c13c1e4 python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=f9c582d1c49c53a9921f05bc730f964c diff --git a/metadata/md5-cache/dev-util/glade-3.18.2 b/metadata/md5-cache/dev-util/glade-3.18.2 deleted file mode 100644 index 124317d08632..000000000000 --- a/metadata/md5-cache/dev-util/glade-3.18.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/atk[introspection?] >=dev-libs/glib-2.32:2 >=dev-libs/libxml2-2.4.0:2 x11-libs/cairo:= x11-libs/gdk-pixbuf:2[introspection?] >=x11-libs/gtk+-3.12:3[introspection?] x11-libs/pango[introspection?] introspection? ( >=dev-libs/gobject-introspection-1.32 ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] >=dev-python/pygobject-3.8:3[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] ) app-text/docbook-xml-dtd:4.1.2 app-text/yelp-tools dev-libs/libxslt >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.41.0 virtual/pkgconfig dev-libs/gobject-introspection-common gnome-base/gnome-common !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=A user interface designer for GTK+ and GNOME -EAPI=5 -HOMEPAGE=http://glade.gnome.org/ -IUSE=+introspection python debug python_targets_python2_7 test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=GPL-2+ FDL-1.1+ -RDEPEND=dev-libs/atk[introspection?] >=dev-libs/glib-2.32:2 >=dev-libs/libxml2-2.4.0:2 x11-libs/cairo:= x11-libs/gdk-pixbuf:2[introspection?] >=x11-libs/gtk+-3.12:3[introspection?] x11-libs/pango[introspection?] introspection? ( >=dev-libs/gobject-introspection-1.32 ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] >=dev-python/pygobject-3.8:3[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] ) -REQUIRED_USE=python? ( python_targets_python2_7 ) -SLOT=3.10/6 -SRC_URI=mirror://gnome/sources/glade/3.18/glade-3.18.2.tar.xz -_eclasses_=autotools 999c8f6cf5d91495cb0779588f20716c eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 10c513def52488230abb60a4b19a03b9 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 7a178335dbd6ea7f50ed4e3e1c13c1e4 python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=d65effbfa9f71eb00abc4979d080361a diff --git a/metadata/md5-cache/dev-util/glade-3.8.4 b/metadata/md5-cache/dev-util/glade-3.8.4 deleted file mode 100644 index b7991a58491d..000000000000 --- a/metadata/md5-cache/dev-util/glade-3.8.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.8:2 >=x11-libs/gtk+-2.24:2 >=dev-libs/libxml2-2.4:2 gnome? ( >=gnome-base/libgnomeui-2 >=gnome-base/libbonoboui-2 ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] >=dev-python/pygtk-2.10:2 ) dev-util/gtk-doc-am >=dev-util/intltool-0.35 virtual/pkgconfig sys-devel/gettext app-text/scrollkeeper >=app-text/gnome-doc-utils-0.9 app-text/docbook-xml-dtd:4.1.2 app-arch/xz-utils >=sys-apps/sed-4 -DESCRIPTION=A user interface designer for GTK+ and GNOME -EAPI=5 -HOMEPAGE=http://glade.gnome.org/ -IUSE=gnome python debug python_targets_python2_7 -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=GPL-2+ FDL-1.1+ -RDEPEND=>=dev-libs/glib-2.8:2 >=x11-libs/gtk+-2.24:2 >=dev-libs/libxml2-2.4:2 gnome? ( >=gnome-base/libgnomeui-2 >=gnome-base/libbonoboui-2 ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] >=dev-python/pygtk-2.10:2 ) -REQUIRED_USE=python? ( python_targets_python2_7 ) -SLOT=3/11 -SRC_URI=mirror://gnome/sources/glade3/3.8/glade3-3.8.4.tar.xz -_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 10c513def52488230abb60a4b19a03b9 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 7a178335dbd6ea7f50ed4e3e1c13c1e4 python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=e3444f4bdc9065afb9a2c6fa78cfd808 diff --git a/metadata/md5-cache/dev-util/glade-3.8.5 b/metadata/md5-cache/dev-util/glade-3.8.5 index 5df1cbf26ff4..e92f656afc85 100644 --- a/metadata/md5-cache/dev-util/glade-3.8.5 +++ b/metadata/md5-cache/dev-util/glade-3.8.5 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.8:2 >=x11-libs/gtk+-2.24:2 >=dev-libs/libxml2-2.4:2 gnome? ( >=gnome-base/libgnomeui-2 >=gnome-base/libbonoboui-2 ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] >=dev-python/pygtk-2.10:2 ) dev-util/gtk-doc-am >=dev-util/intltool-0.35 virtual/pkgconfig sys-devel/gettext app-text/scrollkeeper >=app-text/gnome-doc-utils-0.9 app-text/docbook-xml-dtd:4.1.2 app-arch/xz-utils >=sys-apps/sed-4 +DEPEND=>=dev-libs/glib-2.8:2 >=x11-libs/gtk+-2.24:2 >=dev-libs/libxml2-2.4:2 gnome? ( >=gnome-base/libgnomeui-2 >=gnome-base/libbonoboui-2 ) python? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] >=dev-python/pygtk-2.10:2 ) dev-util/gtk-doc-am >=dev-util/intltool-0.35 virtual/pkgconfig sys-devel/gettext >=app-text/gnome-doc-utils-0.9 app-text/docbook-xml-dtd:4.1.2 app-arch/xz-utils >=sys-apps/sed-4 DESCRIPTION=A user interface designer for GTK+ and GNOME EAPI=5 HOMEPAGE=http://glade.gnome.org/ @@ -11,4 +11,4 @@ REQUIRED_USE=python? ( python_targets_python2_7 ) SLOT=3/11 SRC_URI=mirror://gnome/sources/glade3/3.8/glade3-3.8.5.tar.xz _eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 10c513def52488230abb60a4b19a03b9 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 7a178335dbd6ea7f50ed4e3e1c13c1e4 python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=ae11e54a2c2ef7c6830e8e63d53d06d7 +_md5_=7c75796007e5645e3e63cbe3e2b48576 diff --git a/metadata/md5-cache/dev-util/rbtools-0.6.3 b/metadata/md5-cache/dev-util/rbtools-0.6.3 deleted file mode 100644 index 016bade1770d..000000000000 --- a/metadata/md5-cache/dev-util/rbtools-0.6.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -DESCRIPTION=Command line tools for use with Review Board -EAPI=5 -HOMEPAGE=http://www.reviewboard.org/ -IUSE=python_targets_python2_7 -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=http://downloads.reviewboard.org/releases/RBTools/0.6/RBTools-0.6.3.tar.gz -_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=810ebc85ca6bd7791d7f8bb733ebc89c diff --git a/metadata/md5-cache/dev-util/rbtools-0.7.2 b/metadata/md5-cache/dev-util/rbtools-0.7.2 deleted file mode 100644 index 0f5d22ddac25..000000000000 --- a/metadata/md5-cache/dev-util/rbtools-0.7.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-python/six-1.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -DESCRIPTION=Command line tools for use with Review Board -EAPI=5 -HOMEPAGE=http://www.reviewboard.org/ -IUSE=python_targets_python2_7 -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=>=dev-python/six-1.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=http://downloads.reviewboard.org/releases/RBTools/0.7/RBTools-0.7.2.tar.gz -_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=cd3fc0a3a7aab13d587b01aff19cdeb9 diff --git a/metadata/md5-cache/games-arcade/performous-0.7.0 b/metadata/md5-cache/games-arcade/performous-0.7.0 deleted file mode 100644 index 15a10a22648d..000000000000 --- a/metadata/md5-cache/games-arcade/performous-0.7.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=dev-cpp/glibmm dev-cpp/libxmlpp media-libs/portaudio >=dev-libs/boost-1.36 dev-libs/glib dev-libs/libxml2 gnome-base/librsvg media-gfx/imagemagick virtual/jpeg media-libs/libpng:0 media-libs/libsdl[joystick,video] virtual/ffmpeg virtual/opengl virtual/glu sys-libs/zlib x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/pango media-libs/glew sys-apps/help2man sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=SingStar GPL clone -EAPI=3 -HOMEPAGE=http://sourceforge.net/projects/performous/ -IUSE=songs tools -KEYWORDS=amd64 x86 -LICENSE=GPL-2 songs? ( CC-BY-NC-SA-2.5 CC-BY-NC-ND-2.5 ) -RDEPEND=dev-cpp/glibmm dev-cpp/libxmlpp media-libs/portaudio >=dev-libs/boost-1.36 dev-libs/glib dev-libs/libxml2 gnome-base/librsvg media-gfx/imagemagick virtual/jpeg media-libs/libpng:0 media-libs/libsdl[joystick,video] virtual/ffmpeg virtual/opengl virtual/glu sys-libs/zlib x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/pango games-misc/games-envd -SLOT=0 -SRC_URI=mirror://sourceforge/performous/performous-0.7.0.tar.bz2 songs? ( mirror://sourceforge/performous/ultrastar-songs-restricted-3.zip mirror://sourceforge/performous/ultrastar-songs-jc-1.zip mirror://sourceforge/performous/ultrastar-songs-libre-3.zip mirror://sourceforge/performous/ultrastar-songs-shearer-1.zip ) -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 games 1ad3205dbf62a2c98249f2f59b0a2d39 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 user f54e098dd38ba1c0847a13e685b87747 -_md5_=de3c1a48568497f6a2fb532c20bd1b4e diff --git a/metadata/md5-cache/games-arcade/performous-0.7.0-r1 b/metadata/md5-cache/games-arcade/performous-0.7.0-r1 deleted file mode 100644 index 017893243446..000000000000 --- a/metadata/md5-cache/games-arcade/performous-0.7.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=dev-cpp/glibmm dev-cpp/libxmlpp media-libs/portaudio dev-libs/boost[threads(+)] dev-libs/glib dev-libs/libxml2 gnome-base/librsvg media-gfx/imagemagick virtual/jpeg media-libs/libpng:0 media-libs/libsdl[joystick,video] virtual/ffmpeg virtual/opengl virtual/glu sys-libs/zlib virtual/libintl x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/pango midi? ( media-libs/portmidi ) webcam? ( media-libs/opencv ) media-libs/glew sys-apps/help2man sys-devel/gettext sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=SingStar GPL clone -EAPI=5 -HOMEPAGE=http://sourceforge.net/projects/performous/ -IUSE=midi songs tools webcam -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 songs? ( CC-BY-NC-SA-2.5 CC-BY-NC-ND-2.5 ) -RDEPEND=dev-cpp/glibmm dev-cpp/libxmlpp media-libs/portaudio dev-libs/boost[threads(+)] dev-libs/glib dev-libs/libxml2 gnome-base/librsvg media-gfx/imagemagick virtual/jpeg media-libs/libpng:0 media-libs/libsdl[joystick,video] virtual/ffmpeg virtual/opengl virtual/glu sys-libs/zlib virtual/libintl x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/pango midi? ( media-libs/portmidi ) webcam? ( media-libs/opencv ) games-misc/games-envd -SLOT=0 -SRC_URI=mirror://sourceforge/performous/performous-0.7.0.tar.bz2 songs? ( mirror://sourceforge/performous/ultrastar-songs-restricted-3.zip mirror://sourceforge/performous/ultrastar-songs-jc-1.zip mirror://sourceforge/performous/ultrastar-songs-libre-3.zip mirror://sourceforge/performous/ultrastar-songs-shearer-1.zip ) -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 games 1ad3205dbf62a2c98249f2f59b0a2d39 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 user f54e098dd38ba1c0847a13e685b87747 -_md5_=d3a59215044d7dbd46d320efbca67ad2 diff --git a/metadata/md5-cache/games-misc/nyancat-0_pre20120302 b/metadata/md5-cache/games-misc/nyancat-0_pre20120302 deleted file mode 100644 index cdbd5892ab8c..000000000000 --- a/metadata/md5-cache/games-misc/nyancat-0_pre20120302 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DESCRIPTION=Nyan Cat Telnet Server -EAPI=5 -HOMEPAGE=http://github.com/klange/nyancat -KEYWORDS=amd64 x86 -LICENSE=UoI-NCSA -RDEPEND=games-misc/games-envd -SLOT=0 -SRC_URI=mirror://gentoo/nyancat-0_pre20120302.tar.bz2 -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de games 1ad3205dbf62a2c98249f2f59b0a2d39 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 user f54e098dd38ba1c0847a13e685b87747 -_md5_=225827091c48da86ed29ec54d9e2447e diff --git a/metadata/md5-cache/games-simulation/openttd-1.4.4 b/metadata/md5-cache/games-simulation/openttd-1.4.4 deleted file mode 100644 index 9a1c3e3b7778..000000000000 --- a/metadata/md5-cache/games-simulation/openttd-1.4.4 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=!dedicated? ( media-libs/libsdl[sound,X,video] icu? ( dev-libs/icu:= ) truetype? ( media-libs/fontconfig media-libs/freetype:2 sys-libs/zlib ) ) lzo? ( dev-libs/lzo:2 ) iconv? ( virtual/libiconv ) png? ( media-libs/libpng:0 ) zlib? ( sys-libs/zlib ) virtual/pkgconfig >=sys-apps/sed-4 -DESCRIPTION=OpenTTD is a clone of Transport Tycoon Deluxe -EAPI=5 -HOMEPAGE=http://www.openttd.org/ -IUSE=aplaymidi debug dedicated iconv icu lzo +openmedia +png cpu_flags_x86_sse +timidity +truetype zlib -KEYWORDS=amd64 ~ppc ~ppc64 x86 -LICENSE=GPL-2 -PDEPEND=!dedicated? ( openmedia? ( games-misc/openmsx games-misc/opensfx ) aplaymidi? ( media-sound/alsa-utils ) !aplaymidi? ( timidity? ( media-sound/timidity++ ) ) ) openmedia? ( >=games-misc/opengfx-0.4.7 ) -RDEPEND=!dedicated? ( media-libs/libsdl[sound,X,video] icu? ( dev-libs/icu:= ) truetype? ( media-libs/fontconfig media-libs/freetype:2 sys-libs/zlib ) ) lzo? ( dev-libs/lzo:2 ) iconv? ( virtual/libiconv ) png? ( media-libs/libpng:0 ) zlib? ( sys-libs/zlib ) games-misc/games-envd -RESTRICT=test -SLOT=0 -SRC_URI=http://binaries.openttd.org/releases/1.4.4/openttd-1.4.4-source.tar.gz -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de games 1ad3205dbf62a2c98249f2f59b0a2d39 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 user f54e098dd38ba1c0847a13e685b87747 -_md5_=123d1b9d269a4635b0a821619e375b06 diff --git a/metadata/md5-cache/games-strategy/megaglest-3.11.1 b/metadata/md5-cache/games-strategy/megaglest-3.11.1 index 65c51f08bd57..50c0ab535cfb 100644 --- a/metadata/md5-cache/games-strategy/megaglest-3.11.1 +++ b/metadata/md5-cache/games-strategy/megaglest-3.11.1 @@ -10,4 +10,4 @@ RDEPEND=~games-strategy/megaglest-data-3.11.1 >=dev-lang/lua-5.1:0 dev-libs/libx SLOT=0 SRC_URI=https://github.com/MegaGlest/megaglest-source/releases/download/3.11.1/megaglest-source-3.11.1.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 games 1ad3205dbf62a2c98249f2f59b0a2d39 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 user f54e098dd38ba1c0847a13e685b87747 virtualx 73cfc129b4b9ba23aed1abb10c825d86 wxwidgets 6d6eec2685256d35511e7b6d5461bec9 -_md5_=23a480efedb22f0fe451f43317685b3f +_md5_=e1f14ccda2acbe13df43f503f4f27bd4 diff --git a/metadata/md5-cache/games-strategy/wesnoth-1.12.1 b/metadata/md5-cache/games-strategy/wesnoth-1.12.1 deleted file mode 100644 index 08dbedb10f55..000000000000 --- a/metadata/md5-cache/games-strategy/wesnoth-1.12.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=>=media-libs/libsdl-1.2.7:0[joystick,video,X] media-libs/sdl-net !dedicated? ( >=media-libs/sdl-ttf-2.0.8 >=media-libs/sdl-mixer-1.2[vorbis] >=media-libs/sdl-image-1.2[jpeg,png] fribidi? ( dev-libs/fribidi ) dbus? ( sys-apps/dbus ) sys-libs/zlib x11-libs/pango dev-lang/lua media-libs/fontconfig ) >=dev-libs/boost-1.48[nls,threads] virtual/libintl virtual/pkgconfig sys-devel/gettext sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Battle for Wesnoth - A fantasy turn-based strategy game -EAPI=5 -HOMEPAGE=http://www.wesnoth.org/ -IUSE=dbus dedicated doc fribidi nls server -KEYWORDS=amd64 ~ppc ~ppc64 x86 ~x86-fbsd -LICENSE=GPL-2 -RDEPEND=>=media-libs/libsdl-1.2.7:0[joystick,video,X] media-libs/sdl-net !dedicated? ( >=media-libs/sdl-ttf-2.0.8 >=media-libs/sdl-mixer-1.2[vorbis] >=media-libs/sdl-image-1.2[jpeg,png] fribidi? ( dev-libs/fribidi ) dbus? ( sys-apps/dbus ) sys-libs/zlib x11-libs/pango dev-lang/lua media-libs/fontconfig ) >=dev-libs/boost-1.48[nls,threads] virtual/libintl games-misc/games-envd -SLOT=0 -SRC_URI=mirror://sourceforge/wesnoth/wesnoth-1.12.1.tar.bz2 -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 games 1ad3205dbf62a2c98249f2f59b0a2d39 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 user f54e098dd38ba1c0847a13e685b87747 -_md5_=e3548a27dc14747b11f0d80a3366c775 diff --git a/metadata/md5-cache/games-strategy/wesnoth-1.12.2 b/metadata/md5-cache/games-strategy/wesnoth-1.12.2 index 9f55b8aa0aa8..3f5c5014eaf4 100644 --- a/metadata/md5-cache/games-strategy/wesnoth-1.12.2 +++ b/metadata/md5-cache/games-strategy/wesnoth-1.12.2 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=>=media-libs/libsdl-1.2.7:0[joystick,video,X] media-libs/sdl-net !dedicated? ( >=media-libs/sdl-ttf-2.0.8 >=media-libs/sdl-mixer-1.2[vorbis] >=media-libs/sdl-image-1.2[jpeg,png] fribidi? ( dev-libs/fribidi ) dbus? ( sys-apps/dbus ) sys-libs/zlib x11-libs/pango dev-lang/lua media-libs/fontconfig ) >=dev-libs/boost-1.48[nls,threads] virtual/libintl virtual/pkgconfig sys-devel/gettext sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DEPEND=>=media-libs/libsdl-1.2.7:0[joystick,video,X] media-libs/sdl-net !dedicated? ( >=media-libs/sdl-ttf-2.0.8 >=media-libs/sdl-mixer-1.2[vorbis] >=media-libs/sdl-image-1.2[jpeg,png] fribidi? ( dev-libs/fribidi ) dbus? ( sys-apps/dbus ) sys-libs/zlib x11-libs/pango dev-lang/lua:0 media-libs/fontconfig ) >=dev-libs/boost-1.48[nls,threads] virtual/libintl virtual/pkgconfig sys-devel/gettext sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) DESCRIPTION=Battle for Wesnoth - A fantasy turn-based strategy game EAPI=5 HOMEPAGE=http://www.wesnoth.org/ IUSE=dbus dedicated doc fribidi nls server KEYWORDS=amd64 ~ppc ~ppc64 x86 ~x86-fbsd LICENSE=GPL-2 -RDEPEND=>=media-libs/libsdl-1.2.7:0[joystick,video,X] media-libs/sdl-net !dedicated? ( >=media-libs/sdl-ttf-2.0.8 >=media-libs/sdl-mixer-1.2[vorbis] >=media-libs/sdl-image-1.2[jpeg,png] fribidi? ( dev-libs/fribidi ) dbus? ( sys-apps/dbus ) sys-libs/zlib x11-libs/pango dev-lang/lua media-libs/fontconfig ) >=dev-libs/boost-1.48[nls,threads] virtual/libintl games-misc/games-envd +RDEPEND=>=media-libs/libsdl-1.2.7:0[joystick,video,X] media-libs/sdl-net !dedicated? ( >=media-libs/sdl-ttf-2.0.8 >=media-libs/sdl-mixer-1.2[vorbis] >=media-libs/sdl-image-1.2[jpeg,png] fribidi? ( dev-libs/fribidi ) dbus? ( sys-apps/dbus ) sys-libs/zlib x11-libs/pango dev-lang/lua:0 media-libs/fontconfig ) >=dev-libs/boost-1.48[nls,threads] virtual/libintl games-misc/games-envd SLOT=0 SRC_URI=mirror://sourceforge/wesnoth/wesnoth-1.12.2.tar.bz2 _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 games 1ad3205dbf62a2c98249f2f59b0a2d39 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 user f54e098dd38ba1c0847a13e685b87747 -_md5_=c14330c98c514f4e3f4390d967588eda +_md5_=f3de37b31949fc6f46c5bab7fc22a915 diff --git a/metadata/md5-cache/games-util/nml-0.3.1 b/metadata/md5-cache/games-util/nml-0.3.1 deleted file mode 100644 index d72cde4270d0..000000000000 --- a/metadata/md5-cache/games-util/nml-0.3.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/pillow[zlib,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/ply[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -DESCRIPTION=Compiler of NML files into grf/nfo files -EAPI=5 -HOMEPAGE=http://dev.openttdcoop.org/projects/nml -IUSE=python_targets_python2_7 -KEYWORDS=amd64 ~arm ~ppc x86 -LICENSE=GPL-2 -RDEPEND=dev-python/pillow[zlib,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/ply[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=http://bundles.openttdcoop.org/nml/releases/0.3.1/nml-0.3.1.r5242-f6a3ae1163ab.tar.gz -> nml-0.3.1.tar.gz -_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 -_md5_=4ada772e20243fee3092182325a6827c diff --git a/metadata/md5-cache/games-util/nml-0.4.0 b/metadata/md5-cache/games-util/nml-0.4.0 index 02dd7ca1974c..c824f923fc86 100644 --- a/metadata/md5-cache/games-util/nml-0.4.0 +++ b/metadata/md5-cache/games-util/nml-0.4.0 @@ -1,5 +1,5 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-python/pillow[zlib,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/ply[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-vcs/mercurial python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/pillow[zlib,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/ply[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] DESCRIPTION=Compiler of NML files into grf/nfo files EAPI=5 HOMEPAGE=http://dev.openttdcoop.org/projects/nml @@ -10,5 +10,5 @@ RDEPEND=dev-python/pillow[zlib,python_targets_python3_3(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python3_3 python_targets_python3_4 ) SLOT=0 SRC_URI=http://bundles.openttdcoop.org/nml/releases/0.4.0/nml-0.4.0.r5527-3b43d37dec19.tar.gz -> nml-0.4.0.tar.gz -_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de mercurial 2fbda5894dda6392b71334ee9a92de0b multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 -_md5_=556bb538dcc006a78c55be95adaf60b8 +_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 +_md5_=a33b0cc54fd16032d85e2190dc80c03a diff --git a/metadata/md5-cache/games-util/nml-0.4.1 b/metadata/md5-cache/games-util/nml-0.4.1 new file mode 100644 index 000000000000..42b8dc8fc7c2 --- /dev/null +++ b/metadata/md5-cache/games-util/nml-0.4.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/pillow[zlib,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/ply[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DESCRIPTION=Compiler of NML files into grf/nfo files +EAPI=5 +HOMEPAGE=http://dev.openttdcoop.org/projects/nml +IUSE=python_targets_python3_3 python_targets_python3_4 +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=dev-python/pillow[zlib,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/ply[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +REQUIRED_USE=|| ( python_targets_python3_3 python_targets_python3_4 ) +SLOT=0 +SRC_URI=http://bundles.openttdcoop.org/nml/releases/0.4.1/nml-0.4.1.tar.gz +_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 +_md5_=7419c1c8f0cd4dd89c7c7e64cea31235 diff --git a/metadata/md5-cache/kde-misc/plasma-nm-0.9.3.4 b/metadata/md5-cache/kde-misc/plasma-nm-0.9.3.4 deleted file mode 100644 index c9ef94ae0dcf..000000000000 --- a/metadata/md5-cache/kde-misc/plasma-nm-0.9.3.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=net-libs/libnm-qt-0.9.8.2[modemmanager?] net-misc/mobile-broadband-provider-info >=net-misc/networkmanager-0.9.8.0 modemmanager? ( >=net-libs/libmm-qt-1.0.0 ) openconnect? ( net-misc/networkmanager-openconnect net-misc/openconnect ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) >=dev-qt/qtdeclarative-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=KDE Plasma applet for NetworkManager -EAPI=5 -HOMEPAGE=https://projects.kde.org/projects/playground/network/plasma-nm -IUSE=debug modemmanager openconnect linguas_ar linguas_bs linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_eo linguas_es linguas_et linguas_fa linguas_fi linguas_fr linguas_ga linguas_gl linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_lt linguas_lv linguas_mai linguas_mr linguas_ms linguas_nb linguas_nds linguas_nl linguas_nn linguas_pa linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_sk linguas_sl linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_th linguas_tr linguas_ug linguas_uk linguas_zh_CN linguas_zh_TW aqua -KEYWORDS=amd64 x86 -LICENSE=GPL-2 LGPL-2.1 -RDEPEND=>=net-libs/libnm-qt-0.9.8.2[modemmanager?] net-misc/mobile-broadband-provider-info >=net-misc/networkmanager-0.9.8.0 modemmanager? ( >=net-libs/libmm-qt-1.0.0 ) openconnect? ( net-misc/networkmanager-openconnect net-misc/openconnect ) !kde-misc/networkmanagement || ( kde-apps/oxygen-icons >=kde-base/oxygen-icons-4.14.3:4[aqua=] ) linguas_ar? ( || ( kde-apps/kde-l10n[linguas_ar(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ar(+)] ) ) linguas_bs? ( || ( kde-apps/kde-l10n[linguas_bs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bs(+)] ) ) linguas_ca? ( || ( kde-apps/kde-l10n[linguas_ca(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) ) linguas_ca@valencia? ( || ( kde-apps/kde-l10n[linguas_ca@valencia(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca@valencia(+)] ) ) linguas_cs? ( || ( kde-apps/kde-l10n[linguas_cs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) ) linguas_da? ( || ( kde-apps/kde-l10n[linguas_da(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) ) linguas_de? ( || ( kde-apps/kde-l10n[linguas_de(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) ) linguas_el? ( || ( kde-apps/kde-l10n[linguas_el(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) ) linguas_en_GB? ( || ( kde-apps/kde-l10n[linguas_en_GB(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) ) linguas_eo? ( || ( kde-apps/kde-l10n[linguas_eo(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eo(+)] ) ) linguas_es? ( || ( kde-apps/kde-l10n[linguas_es(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) ) linguas_et? ( || ( kde-apps/kde-l10n[linguas_et(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) ) linguas_fa? ( || ( kde-apps/kde-l10n[linguas_fa(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fa(+)] ) ) linguas_fi? ( || ( kde-apps/kde-l10n[linguas_fi(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) ) linguas_fr? ( || ( kde-apps/kde-l10n[linguas_fr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) ) linguas_ga? ( || ( kde-apps/kde-l10n[linguas_ga(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) ) linguas_gl? ( || ( kde-apps/kde-l10n[linguas_gl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) ) linguas_hr? ( || ( kde-apps/kde-l10n[linguas_hr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hr(+)] ) ) linguas_hu? ( || ( kde-apps/kde-l10n[linguas_hu(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) ) linguas_is? ( || ( kde-apps/kde-l10n[linguas_is(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_is(+)] ) ) linguas_it? ( || ( kde-apps/kde-l10n[linguas_it(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) ) linguas_ja? ( || ( kde-apps/kde-l10n[linguas_ja(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) ) linguas_km? ( || ( kde-apps/kde-l10n[linguas_km(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) ) linguas_lt? ( || ( kde-apps/kde-l10n[linguas_lt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) ) linguas_lv? ( || ( kde-apps/kde-l10n[linguas_lv(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lv(+)] ) ) linguas_mai? ( || ( kde-apps/kde-l10n[linguas_mai(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mai(+)] ) ) linguas_mr? ( || ( kde-apps/kde-l10n[linguas_mr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mr(+)] ) ) linguas_ms? ( || ( kde-apps/kde-l10n[linguas_ms(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ms(+)] ) ) linguas_nb? ( || ( kde-apps/kde-l10n[linguas_nb(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) ) linguas_nds? ( || ( kde-apps/kde-l10n[linguas_nds(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) ) linguas_nl? ( || ( kde-apps/kde-l10n[linguas_nl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) ) linguas_nn? ( || ( kde-apps/kde-l10n[linguas_nn(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nn(+)] ) ) linguas_pa? ( || ( kde-apps/kde-l10n[linguas_pa(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pa(+)] ) ) linguas_pl? ( || ( kde-apps/kde-l10n[linguas_pl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) ) linguas_pt? ( || ( kde-apps/kde-l10n[linguas_pt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) ) linguas_pt_BR? ( || ( kde-apps/kde-l10n[linguas_pt_BR(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) ) linguas_ro? ( || ( kde-apps/kde-l10n[linguas_ro(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) ) linguas_ru? ( || ( kde-apps/kde-l10n[linguas_ru(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) ) linguas_sk? ( || ( kde-apps/kde-l10n[linguas_sk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) ) linguas_sl? ( || ( kde-apps/kde-l10n[linguas_sl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sl(+)] ) ) linguas_sr? ( || ( kde-apps/kde-l10n[linguas_sr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr(+)] ) ) linguas_sr@ijekavian? ( || ( kde-apps/kde-l10n[linguas_sr@ijekavian(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavian(+)] ) ) linguas_sr@ijekavianlatin? ( || ( kde-apps/kde-l10n[linguas_sr@ijekavianlatin(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavianlatin(+)] ) ) linguas_sr@latin? ( || ( kde-apps/kde-l10n[linguas_sr@latin(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@latin(+)] ) ) linguas_sv? ( || ( kde-apps/kde-l10n[linguas_sv(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) ) linguas_th? ( || ( kde-apps/kde-l10n[linguas_th(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_th(+)] ) ) linguas_tr? ( || ( kde-apps/kde-l10n[linguas_tr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) ) linguas_ug? ( || ( kde-apps/kde-l10n[linguas_ug(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ug(+)] ) ) linguas_uk? ( || ( kde-apps/kde-l10n[linguas_uk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) ) linguas_zh_CN? ( || ( kde-apps/kde-l10n[linguas_zh_CN(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) ) linguas_zh_TW? ( || ( kde-apps/kde-l10n[linguas_zh_TW(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) ) >=dev-qt/qtdeclarative-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -SLOT=4 -SRC_URI=mirror://kde/stable/plasma-nm/plasma-nm-0.9.3.4.tar.xz -_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 5d5921a298e95441da2f85be419894c0 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 7c90856593f1c0e52c66a533c4c9a8b7 kde4-functions 99e770658f27aaf2c8a5850af7598b18 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=3dc7d3a95c5ea3f1157e1fd72383cc6e diff --git a/metadata/md5-cache/mail-filter/opendkim-2.10.3 b/metadata/md5-cache/mail-filter/opendkim-2.10.3 new file mode 100644 index 000000000000..ef99734bb85d --- /dev/null +++ b/metadata/md5-cache/mail-filter/opendkim-2.10.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=config configure install postinst prepare setup +DEPEND=|| ( mail-filter/libmilter mail-mta/sendmail ) dev-libs/libbsd ssl? ( >=dev-libs/openssl-0.9.8:* ) berkdb? ( >=sys-libs/db-3.2:* ) opendbx? ( >=dev-db/opendbx-1.4.0 ) lua? ( dev-lang/lua:* ) ldap? ( net-nds/openldap ) lmdb? ( dev-db/lmdb ) memcached? ( dev-libs/libmemcached ) sasl? ( dev-libs/cyrus-sasl ) unbound? ( >=net-dns/unbound-1.4.1 net-dns/dnssec-root ) !unbound? ( net-libs/ldns ) gnutls? ( >=net-libs/gnutls-2.11.7 ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DESCRIPTION=A milter-based application to provide DKIM signing and verification +EAPI=5 +HOMEPAGE=http://opendkim.org +IUSE=+berkdb gnutls ldap lmdb lua memcached opendbx poll sasl selinux +ssl static-libs unbound +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=Sendmail-Open-Source BSD +RDEPEND=|| ( mail-filter/libmilter mail-mta/sendmail ) dev-libs/libbsd ssl? ( >=dev-libs/openssl-0.9.8:* ) berkdb? ( >=sys-libs/db-3.2:* ) opendbx? ( >=dev-db/opendbx-1.4.0 ) lua? ( dev-lang/lua:* ) ldap? ( net-nds/openldap ) lmdb? ( dev-db/lmdb ) memcached? ( dev-libs/libmemcached ) sasl? ( dev-libs/cyrus-sasl ) unbound? ( >=net-dns/unbound-1.4.1 net-dns/dnssec-root ) !unbound? ( net-libs/ldns ) gnutls? ( >=net-libs/gnutls-2.11.7 ) sys-process/psmisc selinux? ( sec-policy/selinux-dkim ) +REQUIRED_USE=sasl? ( ldap ) +SLOT=0 +SRC_URI=mirror://sourceforge/opendkim/opendkim-2.10.3.tar.gz +_eclasses_=autotools 999c8f6cf5d91495cb0779588f20716c db-use 82d0e62839f20e1e0d5a2259abd5316f eutils 9fb270e417e0e83d64ca52586c4a79de libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=3fb5bbbb4b7de2b8cc21db24cb26910f diff --git a/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.16 b/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.16-r1 similarity index 71% rename from metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.16 rename to metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.16-r1 index e1e081419fd5..76847e69304c 100644 --- a/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.16 +++ b/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.16-r1 @@ -5,10 +5,10 @@ HOMEPAGE=http://www.teamspeak.com/ IUSE=alsa pulseaudio KEYWORDS=~amd64 ~x86 LICENSE=teamspeak3 -RDEPEND=dev-qt/qtcore:5 dev-qt/qtgui:5[accessibility] dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtwidgets:5 sys-libs/glibc sys-libs/zlib alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) +RDEPEND=dev-libs/quazip:0/0[qt5] dev-qt/qtcore:5 dev-qt/qtgui:5[accessibility] dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtwidgets:5 sys-libs/glibc sys-libs/zlib alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) REQUIRED_USE=|| ( alsa pulseaudio ) RESTRICT=fetch mirror strip SLOT=0 SRC_URI=amd64? ( http://ftp.4players.de/pub/hosted/ts3/releases/3.0.16/TeamSpeak3-Client-linux_amd64-3.0.16.run ) x86? ( http://ftp.4players.de/pub/hosted/ts3/releases/3.0.16/TeamSpeak3-Client-linux_x86-3.0.16.run ) _eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=6593f50622470fded340c99dce86be97 +_md5_=7bf05ac16b4e616fc6523b81a64089ab diff --git a/metadata/md5-cache/net-im/choqok-1.4 b/metadata/md5-cache/net-im/choqok-1.4 deleted file mode 100644 index a7a63cdd449f..000000000000 --- a/metadata/md5-cache/net-im/choqok-1.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/libattica dev-libs/qjson >=dev-libs/qoauth-1.0.1 ayatana? ( dev-libs/libindicate-qt ) app-arch/xz-utils >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=Free/Open Source micro-blogging client for KDE -EAPI=5 -HOMEPAGE=http://choqok.gnufolks.org/ -IUSE=ayatana debug linguas_bg linguas_bs linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_eo linguas_es linguas_et linguas_fa linguas_fi linguas_fr linguas_ga linguas_gl linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_lt linguas_mr linguas_ms linguas_nb linguas_nds linguas_nl linguas_pa linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_sk linguas_sq linguas_sl linguas_sv linguas_tr linguas_ug linguas_uk linguas_zh_CN linguas_zh_TW +handbook aqua -KEYWORDS=amd64 ~ppc x86 -LICENSE=GPL-2+ -RDEPEND=dev-libs/libattica dev-libs/qjson >=dev-libs/qoauth-1.0.1 ayatana? ( dev-libs/libindicate-qt ) || ( kde-apps/oxygen-icons >=kde-base/oxygen-icons-4.14.3:4[aqua=] ) linguas_bg? ( || ( kde-apps/kde-l10n[linguas_bg(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bg(+)] ) ) linguas_bs? ( || ( kde-apps/kde-l10n[linguas_bs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bs(+)] ) ) linguas_ca? ( || ( kde-apps/kde-l10n[linguas_ca(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) ) linguas_ca@valencia? ( || ( kde-apps/kde-l10n[linguas_ca@valencia(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca@valencia(+)] ) ) linguas_cs? ( || ( kde-apps/kde-l10n[linguas_cs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) ) linguas_da? ( || ( kde-apps/kde-l10n[linguas_da(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) ) linguas_de? ( || ( kde-apps/kde-l10n[linguas_de(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) ) linguas_el? ( || ( kde-apps/kde-l10n[linguas_el(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) ) linguas_en_GB? ( || ( kde-apps/kde-l10n[linguas_en_GB(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) ) linguas_eo? ( || ( kde-apps/kde-l10n[linguas_eo(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eo(+)] ) ) linguas_es? ( || ( kde-apps/kde-l10n[linguas_es(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) ) linguas_et? ( || ( kde-apps/kde-l10n[linguas_et(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) ) linguas_fa? ( || ( kde-apps/kde-l10n[linguas_fa(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fa(+)] ) ) linguas_fi? ( || ( kde-apps/kde-l10n[linguas_fi(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) ) linguas_fr? ( || ( kde-apps/kde-l10n[linguas_fr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) ) linguas_ga? ( || ( kde-apps/kde-l10n[linguas_ga(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) ) linguas_gl? ( || ( kde-apps/kde-l10n[linguas_gl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) ) linguas_hr? ( || ( kde-apps/kde-l10n[linguas_hr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hr(+)] ) ) linguas_hu? ( || ( kde-apps/kde-l10n[linguas_hu(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) ) linguas_is? ( || ( kde-apps/kde-l10n[linguas_is(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_is(+)] ) ) linguas_it? ( || ( kde-apps/kde-l10n[linguas_it(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) ) linguas_ja? ( || ( kde-apps/kde-l10n[linguas_ja(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) ) linguas_km? ( || ( kde-apps/kde-l10n[linguas_km(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) ) linguas_lt? ( || ( kde-apps/kde-l10n[linguas_lt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) ) linguas_mr? ( || ( kde-apps/kde-l10n[linguas_mr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mr(+)] ) ) linguas_ms? ( || ( kde-apps/kde-l10n[linguas_ms(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ms(+)] ) ) linguas_nb? ( || ( kde-apps/kde-l10n[linguas_nb(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) ) linguas_nds? ( || ( kde-apps/kde-l10n[linguas_nds(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) ) linguas_nl? ( || ( kde-apps/kde-l10n[linguas_nl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) ) linguas_pa? ( || ( kde-apps/kde-l10n[linguas_pa(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pa(+)] ) ) linguas_pl? ( || ( kde-apps/kde-l10n[linguas_pl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) ) linguas_pt? ( || ( kde-apps/kde-l10n[linguas_pt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) ) linguas_pt_BR? ( || ( kde-apps/kde-l10n[linguas_pt_BR(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) ) linguas_ro? ( || ( kde-apps/kde-l10n[linguas_ro(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) ) linguas_ru? ( || ( kde-apps/kde-l10n[linguas_ru(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) ) linguas_sk? ( || ( kde-apps/kde-l10n[linguas_sk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) ) linguas_sq? ( || ( kde-apps/kde-l10n[linguas_sq(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sq(+)] ) ) linguas_sl? ( || ( kde-apps/kde-l10n[linguas_sl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sl(+)] ) ) linguas_sv? ( || ( kde-apps/kde-l10n[linguas_sv(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) ) linguas_tr? ( || ( kde-apps/kde-l10n[linguas_tr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) ) linguas_ug? ( || ( kde-apps/kde-l10n[linguas_ug(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ug(+)] ) ) linguas_uk? ( || ( kde-apps/kde-l10n[linguas_uk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) ) linguas_zh_CN? ( || ( kde-apps/kde-l10n[linguas_zh_CN(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) ) linguas_zh_TW? ( || ( kde-apps/kde-l10n[linguas_zh_TW(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -SLOT=4 -SRC_URI=mirror://sourceforge/choqok/choqok-1.4.tar.xz -_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 5d5921a298e95441da2f85be419894c0 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 7c90856593f1c0e52c66a533c4c9a8b7 kde4-functions 99e770658f27aaf2c8a5850af7598b18 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=e0dc53dfa3ce656456fa986749807e58 diff --git a/metadata/md5-cache/net-libs/iojs-2.0.1 b/metadata/md5-cache/net-libs/iojs-2.0.1 new file mode 100644 index 000000000000..86029c6fe393 --- /dev/null +++ b/metadata/md5-cache/net-libs/iojs-2.0.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare pretend setup test +DEPEND=icu? ( dev-libs/icu ) >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] !bundled-libs? ( >=net-libs/http-parser-2.5 >=dev-libs/libuv-1.4.2 >=dev-libs/openssl-1.0.2a[-bindist] ) !!net-libs/nodejs +DESCRIPTION=An npm compatible platform originally based on node.js +EAPI=5 +HOMEPAGE=http://iojs.org/ +IUSE=bundled-libs debug icu +npm snapshot +ssl python_targets_python2_7 +KEYWORDS=~amd64 ~arm ~x86 ~x64-macos +LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT +RDEPEND=icu? ( dev-libs/icu ) >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_5(-),-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),python_single_target_python2_7(+)] !bundled-libs? ( >=net-libs/http-parser-2.5 >=dev-libs/libuv-1.4.2 >=dev-libs/openssl-1.0.2a[-bindist] ) +REQUIRED_USE=python_targets_python2_7 +SLOT=0 +SRC_URI=http://iojs.org/dist/v2.0.1/iojs-v2.0.1.tar.xz +_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf pax-utils dfe060cb70d89757fde5c1ff8405e950 python-single-r1 7a178335dbd6ea7f50ed4e3e1c13c1e4 python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 +_md5_=2ee86861bfb4be6124fc8d2339fbe387 diff --git a/metadata/md5-cache/net-libs/libssh-0.7.0 b/metadata/md5-cache/net-libs/libssh-0.7.0 new file mode 100644 index 000000000000..b9d0f4a327b1 --- /dev/null +++ b/metadata/md5-cache/net-libs/libssh-0.7.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !gcrypt? ( >=dev-libs/openssl-1.0.1h-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( >=virtual/krb5-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) doc? ( app-doc/doxygen ) test? ( >=dev-util/cmocka-0.3.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=Access a working SSH implementation by means of a library +EAPI=5 +HOMEPAGE=http://www.libssh.org/ +IUSE=debug doc examples gcrypt gssapi pcap +sftp ssh1 server static-libs test zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=LGPL-2.1 +RDEPEND=zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !gcrypt? ( >=dev-libs/openssl-1.0.1h-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gssapi? ( >=virtual/krb5-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +SLOT=0/4 +SRC_URI=https://red.libssh.org/attachments/download/140/libssh-0.7.0.tar.xz -> libssh-0.7.0.tar.xz +_eclasses_=cmake-multilib ca4c6ecda3062bf851d951987568fdae cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 0983c7893df461213a05f791cc7dea6d multilib-minimal 13dd976916c35a1e2c8d170e840c7018 toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 +_md5_=77963bbabf73b79ce6c765088ce756f0 diff --git a/metadata/md5-cache/net-misc/smb4k-1.1.3 b/metadata/md5-cache/net-misc/smb4k-1.1.3 deleted file mode 100644 index 7fa9fe99ef04..000000000000 --- a/metadata/md5-cache/net-misc/smb4k-1.1.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=net-fs/samba-3.4.2[cups] sys-devel/gettext >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=The advanced network neighborhood browser for KDE -EAPI=5 -HOMEPAGE=http://sourceforge.net/projects/smb4k/ -IUSE=debug linguas_bg linguas_bs linguas_ca linguas_cs linguas_da linguas_de linguas_en_GB linguas_eo linguas_es linguas_et linguas_fi linguas_fr linguas_ga linguas_gl linguas_hu linguas_is linguas_it linguas_ja linguas_lt linguas_mai linguas_mr linguas_nb linguas_nds linguas_nl linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_sk linguas_sv linguas_tr linguas_ug linguas_uk linguas_zh_CN linguas_zh_TW +handbook aqua -KEYWORDS=amd64 ~ppc x86 -LICENSE=GPL-2 -RDEPEND=>=net-fs/samba-3.4.2[cups] || ( kde-apps/oxygen-icons >=kde-base/oxygen-icons-4.14.3:4[aqua=] ) linguas_bg? ( || ( kde-apps/kde-l10n[linguas_bg(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bg(+)] ) ) linguas_bs? ( || ( kde-apps/kde-l10n[linguas_bs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bs(+)] ) ) linguas_ca? ( || ( kde-apps/kde-l10n[linguas_ca(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) ) linguas_cs? ( || ( kde-apps/kde-l10n[linguas_cs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) ) linguas_da? ( || ( kde-apps/kde-l10n[linguas_da(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) ) linguas_de? ( || ( kde-apps/kde-l10n[linguas_de(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) ) linguas_en_GB? ( || ( kde-apps/kde-l10n[linguas_en_GB(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) ) linguas_eo? ( || ( kde-apps/kde-l10n[linguas_eo(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eo(+)] ) ) linguas_es? ( || ( kde-apps/kde-l10n[linguas_es(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) ) linguas_et? ( || ( kde-apps/kde-l10n[linguas_et(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) ) linguas_fi? ( || ( kde-apps/kde-l10n[linguas_fi(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) ) linguas_fr? ( || ( kde-apps/kde-l10n[linguas_fr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) ) linguas_ga? ( || ( kde-apps/kde-l10n[linguas_ga(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) ) linguas_gl? ( || ( kde-apps/kde-l10n[linguas_gl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) ) linguas_hu? ( || ( kde-apps/kde-l10n[linguas_hu(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) ) linguas_is? ( || ( kde-apps/kde-l10n[linguas_is(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_is(+)] ) ) linguas_it? ( || ( kde-apps/kde-l10n[linguas_it(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) ) linguas_ja? ( || ( kde-apps/kde-l10n[linguas_ja(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) ) linguas_lt? ( || ( kde-apps/kde-l10n[linguas_lt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) ) linguas_mai? ( || ( kde-apps/kde-l10n[linguas_mai(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mai(+)] ) ) linguas_mr? ( || ( kde-apps/kde-l10n[linguas_mr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mr(+)] ) ) linguas_nb? ( || ( kde-apps/kde-l10n[linguas_nb(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) ) linguas_nds? ( || ( kde-apps/kde-l10n[linguas_nds(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) ) linguas_nl? ( || ( kde-apps/kde-l10n[linguas_nl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) ) linguas_pl? ( || ( kde-apps/kde-l10n[linguas_pl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) ) linguas_pt? ( || ( kde-apps/kde-l10n[linguas_pt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) ) linguas_pt_BR? ( || ( kde-apps/kde-l10n[linguas_pt_BR(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) ) linguas_ro? ( || ( kde-apps/kde-l10n[linguas_ro(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) ) linguas_ru? ( || ( kde-apps/kde-l10n[linguas_ru(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) ) linguas_sk? ( || ( kde-apps/kde-l10n[linguas_sk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) ) linguas_sv? ( || ( kde-apps/kde-l10n[linguas_sv(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) ) linguas_tr? ( || ( kde-apps/kde-l10n[linguas_tr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) ) linguas_ug? ( || ( kde-apps/kde-l10n[linguas_ug(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ug(+)] ) ) linguas_uk? ( || ( kde-apps/kde-l10n[linguas_uk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) ) linguas_zh_CN? ( || ( kde-apps/kde-l10n[linguas_zh_CN(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) ) linguas_zh_TW? ( || ( kde-apps/kde-l10n[linguas_zh_TW(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -SLOT=4 -SRC_URI=mirror://sourceforge/smb4k/smb4k-1.1.3.tar.xz -_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 5d5921a298e95441da2f85be419894c0 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 7c90856593f1c0e52c66a533c4c9a8b7 kde4-functions 99e770658f27aaf2c8a5850af7598b18 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=e862e4de9b7751bd2e767baf0922240e diff --git a/metadata/md5-cache/net-misc/smb4k-1.1.4 b/metadata/md5-cache/net-misc/smb4k-1.1.4 deleted file mode 100644 index 9fb4a121aee1..000000000000 --- a/metadata/md5-cache/net-misc/smb4k-1.1.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=net-fs/samba-3.4.2[cups] sys-devel/gettext >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=The advanced network neighborhood browser for KDE -EAPI=5 -HOMEPAGE=http://sourceforge.net/projects/smb4k/ -IUSE=debug linguas_bg linguas_bs linguas_ca linguas_cs linguas_da linguas_de linguas_en_GB linguas_eo linguas_es linguas_et linguas_fi linguas_fr linguas_ga linguas_gl linguas_hu linguas_is linguas_it linguas_ja linguas_lt linguas_mai linguas_mr linguas_nb linguas_nds linguas_nl linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_sk linguas_sv linguas_tr linguas_ug linguas_uk linguas_zh_CN linguas_zh_TW +handbook aqua -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=GPL-2 -RDEPEND=>=net-fs/samba-3.4.2[cups] || ( kde-apps/oxygen-icons >=kde-base/oxygen-icons-4.14.3:4[aqua=] ) linguas_bg? ( || ( kde-apps/kde-l10n[linguas_bg(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bg(+)] ) ) linguas_bs? ( || ( kde-apps/kde-l10n[linguas_bs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bs(+)] ) ) linguas_ca? ( || ( kde-apps/kde-l10n[linguas_ca(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) ) linguas_cs? ( || ( kde-apps/kde-l10n[linguas_cs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) ) linguas_da? ( || ( kde-apps/kde-l10n[linguas_da(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) ) linguas_de? ( || ( kde-apps/kde-l10n[linguas_de(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) ) linguas_en_GB? ( || ( kde-apps/kde-l10n[linguas_en_GB(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) ) linguas_eo? ( || ( kde-apps/kde-l10n[linguas_eo(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eo(+)] ) ) linguas_es? ( || ( kde-apps/kde-l10n[linguas_es(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) ) linguas_et? ( || ( kde-apps/kde-l10n[linguas_et(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) ) linguas_fi? ( || ( kde-apps/kde-l10n[linguas_fi(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) ) linguas_fr? ( || ( kde-apps/kde-l10n[linguas_fr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) ) linguas_ga? ( || ( kde-apps/kde-l10n[linguas_ga(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) ) linguas_gl? ( || ( kde-apps/kde-l10n[linguas_gl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) ) linguas_hu? ( || ( kde-apps/kde-l10n[linguas_hu(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) ) linguas_is? ( || ( kde-apps/kde-l10n[linguas_is(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_is(+)] ) ) linguas_it? ( || ( kde-apps/kde-l10n[linguas_it(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) ) linguas_ja? ( || ( kde-apps/kde-l10n[linguas_ja(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) ) linguas_lt? ( || ( kde-apps/kde-l10n[linguas_lt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) ) linguas_mai? ( || ( kde-apps/kde-l10n[linguas_mai(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mai(+)] ) ) linguas_mr? ( || ( kde-apps/kde-l10n[linguas_mr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mr(+)] ) ) linguas_nb? ( || ( kde-apps/kde-l10n[linguas_nb(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) ) linguas_nds? ( || ( kde-apps/kde-l10n[linguas_nds(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) ) linguas_nl? ( || ( kde-apps/kde-l10n[linguas_nl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) ) linguas_pl? ( || ( kde-apps/kde-l10n[linguas_pl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) ) linguas_pt? ( || ( kde-apps/kde-l10n[linguas_pt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) ) linguas_pt_BR? ( || ( kde-apps/kde-l10n[linguas_pt_BR(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) ) linguas_ro? ( || ( kde-apps/kde-l10n[linguas_ro(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) ) linguas_ru? ( || ( kde-apps/kde-l10n[linguas_ru(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) ) linguas_sk? ( || ( kde-apps/kde-l10n[linguas_sk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) ) linguas_sv? ( || ( kde-apps/kde-l10n[linguas_sv(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) ) linguas_tr? ( || ( kde-apps/kde-l10n[linguas_tr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) ) linguas_ug? ( || ( kde-apps/kde-l10n[linguas_ug(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ug(+)] ) ) linguas_uk? ( || ( kde-apps/kde-l10n[linguas_uk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) ) linguas_zh_CN? ( || ( kde-apps/kde-l10n[linguas_zh_CN(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) ) linguas_zh_TW? ( || ( kde-apps/kde-l10n[linguas_zh_TW(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -SLOT=4 -SRC_URI=mirror://sourceforge/smb4k/smb4k-1.1.4.tar.xz -_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 5d5921a298e95441da2f85be419894c0 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 7c90856593f1c0e52c66a533c4c9a8b7 kde4-functions 99e770658f27aaf2c8a5850af7598b18 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=b007c1297bfa7714ffdf5558c81f855d diff --git a/metadata/md5-cache/sys-block/partitionmanager-1.1.0 b/metadata/md5-cache/sys-block/partitionmanager-1.1.0 deleted file mode 100644 index bd3927fcbcfc..000000000000 --- a/metadata/md5-cache/sys-block/partitionmanager-1.1.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/libatasmart >=sys-block/parted-3 sys-apps/util-linux sys-devel/gettext >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=KDE utility for management of partitions and file systems -EAPI=5 -HOMEPAGE=http://partitionman.sourceforge.net/ -IUSE=debug linguas_ar linguas_bg linguas_bs linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_es linguas_et linguas_fr linguas_gl linguas_it linguas_lt linguas_nb linguas_nds linguas_nl linguas_pa linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_sk linguas_sl linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW +handbook aqua -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/libatasmart >=sys-block/parted-3 sys-apps/util-linux || ( kde-apps/oxygen-icons >=kde-base/oxygen-icons-4.14.3:4[aqua=] ) linguas_ar? ( || ( kde-apps/kde-l10n[linguas_ar(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ar(+)] ) ) linguas_bg? ( || ( kde-apps/kde-l10n[linguas_bg(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bg(+)] ) ) linguas_bs? ( || ( kde-apps/kde-l10n[linguas_bs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bs(+)] ) ) linguas_ca? ( || ( kde-apps/kde-l10n[linguas_ca(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) ) linguas_ca@valencia? ( || ( kde-apps/kde-l10n[linguas_ca@valencia(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca@valencia(+)] ) ) linguas_cs? ( || ( kde-apps/kde-l10n[linguas_cs(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) ) linguas_da? ( || ( kde-apps/kde-l10n[linguas_da(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) ) linguas_de? ( || ( kde-apps/kde-l10n[linguas_de(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) ) linguas_el? ( || ( kde-apps/kde-l10n[linguas_el(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) ) linguas_en_GB? ( || ( kde-apps/kde-l10n[linguas_en_GB(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) ) linguas_es? ( || ( kde-apps/kde-l10n[linguas_es(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) ) linguas_et? ( || ( kde-apps/kde-l10n[linguas_et(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) ) linguas_fr? ( || ( kde-apps/kde-l10n[linguas_fr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) ) linguas_gl? ( || ( kde-apps/kde-l10n[linguas_gl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) ) linguas_it? ( || ( kde-apps/kde-l10n[linguas_it(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) ) linguas_lt? ( || ( kde-apps/kde-l10n[linguas_lt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) ) linguas_nb? ( || ( kde-apps/kde-l10n[linguas_nb(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) ) linguas_nds? ( || ( kde-apps/kde-l10n[linguas_nds(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) ) linguas_nl? ( || ( kde-apps/kde-l10n[linguas_nl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) ) linguas_pa? ( || ( kde-apps/kde-l10n[linguas_pa(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pa(+)] ) ) linguas_pl? ( || ( kde-apps/kde-l10n[linguas_pl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) ) linguas_pt? ( || ( kde-apps/kde-l10n[linguas_pt(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) ) linguas_pt_BR? ( || ( kde-apps/kde-l10n[linguas_pt_BR(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) ) linguas_ro? ( || ( kde-apps/kde-l10n[linguas_ro(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) ) linguas_ru? ( || ( kde-apps/kde-l10n[linguas_ru(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) ) linguas_sk? ( || ( kde-apps/kde-l10n[linguas_sk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) ) linguas_sl? ( || ( kde-apps/kde-l10n[linguas_sl(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sl(+)] ) ) linguas_sr? ( || ( kde-apps/kde-l10n[linguas_sr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr(+)] ) ) linguas_sr@ijekavian? ( || ( kde-apps/kde-l10n[linguas_sr@ijekavian(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavian(+)] ) ) linguas_sr@ijekavianlatin? ( || ( kde-apps/kde-l10n[linguas_sr@ijekavianlatin(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavianlatin(+)] ) ) linguas_sr@latin? ( || ( kde-apps/kde-l10n[linguas_sr@latin(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@latin(+)] ) ) linguas_sv? ( || ( kde-apps/kde-l10n[linguas_sv(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) ) linguas_tr? ( || ( kde-apps/kde-l10n[linguas_tr(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) ) linguas_uk? ( || ( kde-apps/kde-l10n[linguas_uk(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) ) linguas_zh_CN? ( || ( kde-apps/kde-l10n[linguas_zh_CN(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) ) linguas_zh_TW? ( || ( kde-apps/kde-l10n[linguas_zh_TW(+)] >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -SLOT=0 -SRC_URI=mirror://kde/stable/partitionmanager/1.1.0/src/partitionmanager-1.1.0.tar.xz -_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 5d5921a298e95441da2f85be419894c0 gnome2-utils 5cdfd22a2163c9d3a891648bd19453a7 kde4-base 7c90856593f1c0e52c66a533c4c9a8b7 kde4-functions 99e770658f27aaf2c8a5850af7598b18 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=a9801f6bb055f6ee66246cde3ebf7583 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.107 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.107 new file mode 100644 index 000000000000..577a251d3076 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.107 @@ -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 including the Gentoo patchset for the 3.4 kernel tree +EAPI=5 +HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches +IUSE=deblob symlink build +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~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 sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=3.4.107 +SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz mirror://gentoo/genpatches-3.4-90.base.tar.xz mirror://gentoo/genpatches-3.4-90.extras.tar.xz +_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de kernel-2 d38b702cdd3e6429d33d00f4a4f660cb multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=51311eb3eb912db14399d727cf3fdb4c diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-3.14.41 b/metadata/md5-cache/sys-kernel/vanilla-sources-3.14.42 similarity index 88% rename from metadata/md5-cache/sys-kernel/vanilla-sources-3.14.41 rename to metadata/md5-cache/sys-kernel/vanilla-sources-3.14.42 index 4aaacf9380b3..8fdd9708c759 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-3.14.41 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-3.14.42 @@ -9,7 +9,7 @@ LICENSE=GPL-2 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.14.41 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.14.41.xz mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz +SLOT=3.14.42 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.14.42.xz mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz _eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de kernel-2 d38b702cdd3e6429d33d00f4a4f660cb multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=fd1fe0c8dfe599fbb5adf0727861ea6c +_md5_=1c0a840ea59120d519cece45bc9b241c diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.0.2 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.0.3 similarity index 88% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.0.2 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.0.3 index 8d1ffdfcd584..65247240058a 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.0.2 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.0.3 @@ -9,7 +9,7 @@ LICENSE=GPL-2 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=4.0.2 -SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.0.2.xz mirror://kernel/linux/kernel/v4.x/linux-4.0.tar.xz +SLOT=4.0.3 +SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.0.3.xz mirror://kernel/linux/kernel/v4.x/linux-4.0.tar.xz _eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de kernel-2 d38b702cdd3e6429d33d00f4a4f660cb multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 da352ea9da8eb9bf158d56cca65d6c82 python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=189fe9612aaed2d161b6f40473f09b7e +_md5_=64c113529aec5893070a5ab5b6613a46 diff --git a/metadata/md5-cache/sys-libs/musl-1.1.9 b/metadata/md5-cache/sys-libs/musl-1.1.9 new file mode 100644 index 000000000000..6a7fe8644d5e --- /dev/null +++ b/metadata/md5-cache/sys-libs/musl-1.1.9 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst setup +DESCRIPTION=Lightweight, fast and simple C library focused on standards-conformance and safety +EAPI=5 +HOMEPAGE=http://www.musl-libc.org/ +IUSE=crosscompile_opts_headers-only +KEYWORDS=-* ~amd64 ~arm ~mips ~ppc ~x86 +LICENSE=MIT LGPL-2 GPL-2 +RDEPEND=!sys-apps/getent +SLOT=0 +SRC_URI=http://www.musl-libc.org/releases/musl-1.1.9.tar.gz +_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 +_md5_=02459adc4170b0c31ed09e59beea5ee2 diff --git a/metadata/md5-cache/sys-libs/musl-9999 b/metadata/md5-cache/sys-libs/musl-9999 index 99232448e8a5..3bda3c35d6b0 100644 --- a/metadata/md5-cache/sys-libs/musl-9999 +++ b/metadata/md5-cache/sys-libs/musl-9999 @@ -8,4 +8,4 @@ LICENSE=MIT LGPL-2 GPL-2 RDEPEND=!sys-apps/getent SLOT=0 _eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 git-2 e28f0d8a9b321431b1e699782851b827 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 -_md5_=c3adc87bbb6642988efe17406a66e812 +_md5_=4474470454dcebecc99359f52d257872 diff --git a/metadata/md5-cache/www-apache/mod_dnssd-0.6 b/metadata/md5-cache/www-apache/mod_dnssd-0.6 deleted file mode 100644 index 4d1e489c1858..000000000000 --- a/metadata/md5-cache/www-apache/mod_dnssd-0.6 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=net-dns/avahi[dbus] =www-servers/apache-2* -DESCRIPTION=mod_dnssd is an Apache module which adds Zeroconf support via DNS-SD using Avahi -EAPI=2 -HOMEPAGE=http://0pointer.de/lennart/projects/mod_dnssd/ -IUSE=doc -KEYWORDS=amd64 ~arm x86 -LICENSE=BSD -RDEPEND=net-dns/avahi[dbus] =www-servers/apache-2* -SLOT=0 -SRC_URI=http://0pointer.de/lennart/projects/mod_dnssd/mod_dnssd-0.6.tar.gz -_eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 9fb270e417e0e83d64ca52586c4a79de multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 -_md5_=a9218fbc47a310c2fed4ff61d03ccad9 diff --git a/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.460 b/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.460 new file mode 100644 index 000000000000..6b9a339aaebf --- /dev/null +++ b/metadata/md5-cache/www-plugins/adobe-flash-11.2.202.460 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst prerm setup test unpack +DEPEND=amd64? ( abi_x86_32? ( !abi_x86_64? ( www-plugins/nspluginwrapper ) ) ) app-arch/unzip +DESCRIPTION=Adobe Flash Player +EAPI=5 +HOMEPAGE=http://www.adobe.com/products/flashplayer.html http://get.adobe.com/flashplayer/ +IUSE=debug kde selinux cpu_flags_x86_sse2 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=-* ~amd64 ~x86 +LICENSE=AdobeFlash-11.x +RDEPEND=amd64? ( abi_x86_32? ( !abi_x86_64? ( www-plugins/nspluginwrapper ) ) ) abi_x86_64? ( dev-libs/atk dev-libs/glib:2 dev-libs/nspr dev-libs/nss kde? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 kde-base/kdelibs x11-libs/libICE x11-libs/libSM x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libXpm ) media-libs/fontconfig media-libs/freetype >=sys-libs/glibc-2.4 x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXrender x11-libs/libXt x11-libs/pango ) abi_x86_32? ( amd64? ( || ( ( >=dev-libs/atk-2.10.0[abi_x86_32(-)] >=x11-libs/cairo-1.12.14-r4[abi_x86_32(-)] >=x11-libs/gdk-pixbuf-2.30.7[abi_x86_32(-)] >=x11-libs/gtk+-2.24.23:2[abi_x86_32(-)] >=x11-libs/pango-1.36.3[abi_x86_32(-)] ) app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)] ) || ( ( >=dev-libs/glib-2.34.3:2[abi_x86_32(-)] >=dev-libs/nspr-4.10.4[abi_x86_32(-)] >=dev-libs/nss-3.15.4[abi_x86_32(-)] ) app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) || ( ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)] >=media-libs/freetype-2.5.0.1[abi_x86_32(-)] >=x11-libs/libX11-1.6.2[abi_x86_32(-)] >=x11-libs/libXcursor-1.1.14[abi_x86_32(-)] >=x11-libs/libXext-1.3.2[abi_x86_32(-)] >=x11-libs/libXrender-0.9.8[abi_x86_32(-)] >=x11-libs/libXt-1.1.4[abi_x86_32(-)] ) app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] ) ) x86? ( dev-libs/atk dev-libs/glib:2 dev-libs/nspr dev-libs/nss kde? ( dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 kde-base/kdelibs x11-libs/libICE x11-libs/libSM x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libXpm ) media-libs/fontconfig media-libs/freetype >=sys-libs/glibc-2.4 x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXrender x11-libs/libXt x11-libs/pango ) ) || ( media-fonts/liberation-fonts media-fonts/corefonts ) selinux? ( sec-policy/selinux-flash ) +REQUIRED_USE=cpu_flags_x86_sse2 debug? ( abi_x86_32 ) || ( abi_x86_64 abi_x86_32 ) +RESTRICT=strip mirror +SLOT=0 +SRC_URI=abi_x86_32? ( !debug? ( http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.460/install_flash_player_11_linux.i386.tar.gz -> adobe-flash-11.2.202.460.i386.tar.gz ) debug? ( http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz -> adobe-flash-11.2.202.460-debug.i386.tar.gz ) ) abi_x86_64? ( http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.460/install_flash_player_11_linux.x86_64.tar.gz -> adobe-flash-11.2.202.460.x86_64.tar.gz ) +_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de mozextension ba6829881080a663d68531424a3dfbc6 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 0983c7893df461213a05f791cc7dea6d multilib-minimal 13dd976916c35a1e2c8d170e840c7018 nsplugins 7ea51b2f6cbd5b36b9c0163cc3ee03a2 toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=108d4f3d9ec6c6acc621439158b9a0c2 diff --git a/metadata/md5-cache/www-servers/tornado-4.1.0-r1 b/metadata/md5-cache/www-servers/tornado-4.1.0-r1 new file mode 100644 index 000000000000..e510775cd67f --- /dev/null +++ b/metadata/md5-cache/www-servers/tornado-4.1.0-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] dev-python/sphinx_rtd_theme[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] ) test? ( python_targets_python2_7? ( dev-python/pycurl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/certifi[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] python_targets_python3_3? ( dev-python/asyncio[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] ) python_targets_python2_7? ( dev-python/backports-ssl-match-hostname[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_pypy(-)?,-python_single_target_pypy(-)] ) python_targets_pypy? ( dev-python/backports-ssl-match-hostname[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_pypy(-)?,-python_single_target_pypy(-)] ) python_targets_python2_7? ( dev-python/twisted-names[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/twisted-web[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/mock[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] +DESCRIPTION=Tornado is a Python web framework and asynchronous networking library, ... . +EAPI=5 +HOMEPAGE=http://www.tornadoweb.org/ +IUSE=doc examples test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy +KEYWORDS=~amd64 ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=python_targets_python2_7? ( dev-python/pycurl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/certifi[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] python_targets_python3_3? ( dev-python/asyncio[python_targets_python3_3(-)?,-python_single_target_python3_3(-)] ) python_targets_python2_7? ( dev-python/backports-ssl-match-hostname[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_pypy(-)?,-python_single_target_pypy(-)] ) python_targets_pypy? ( dev-python/backports-ssl-match-hostname[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_pypy(-)?,-python_single_target_pypy(-)] ) python_targets_python2_7? ( dev-python/twisted-names[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/twisted-web[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) +SLOT=0 +SRC_URI=https://github.com/tornadoweb/tornado/archive/v4.1.0.tar.gz -> tornado-4.1.0.tar.gz +_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_md5_=14b70fad4f27c55a70dc8d02ca200f59 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 7fa942e3d3be..0199acaf6116 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Wed, 13 May 2015 13:06:55 +0000 +Wed, 13 May 2015 18:07:36 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 6a824c0e1fc6..bdfb5080ca69 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed May 13 13:06:51 UTC 2015 +Wed May 13 18:07:32 UTC 2015 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 67c5e12f33ce..2ed63c8ffac1 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 13 May 2015 13:30:01 +0000 +Wed, 13 May 2015 18:30:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index da4c7d39c074..2d15b7f39242 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1431522301 Wed 13 May 2015 01:05:01 PM UTC +1431540301 Wed 13 May 2015 06:05:01 PM UTC diff --git a/net-im/choqok/Manifest b/net-im/choqok/Manifest index 2ea4a1344d69..de6e26fd8e2a 100644 --- a/net-im/choqok/Manifest +++ b/net-im/choqok/Manifest @@ -1,2 +1 @@ -DIST choqok-1.4.tar.xz 1021228 SHA256 70c8cfab14a691514d12c9c75d7009f27e3c26364ccbd81a541fea0ab76a92b7 SHA512 1fbfaba6b661789b1f5ec76130084b874eb8f5c65132bcbc34babae476c1d4ed197ca9af37404c5348439c54dca2a021c69a384fc718f184a1af014ed42ed006 WHIRLPOOL 3af414fa3ade0de8d277fe6752c20959881a9365471f13180432a84b7256f24085e2931c749354c386e1a4628000ccff4175c97bb2c657f0aa8c08cf3d984511 DIST choqok-1.5.tar.xz 1068516 SHA256 5cb97ac4cdf9db4699bb7445a9411393073d213fea649ab0713f659f1308efe4 SHA512 fbb31abedd07ea1c674a7d59b4a18808ca03812ac37c60ea67d2d641668be4a9137e9f4573eda1e19425123601e9536971170e3948c1e5098b220991571a2cf3 WHIRLPOOL c4f869bab6a23a2ffa2e8e071414a6c7170816269e6e9f77df4269b94b627248fd259eb3c24217a2a838f74162ba6c198ff5549371b61f516fb142b8690cdce0 diff --git a/net-im/choqok/choqok-1.4.ebuild b/net-im/choqok/choqok-1.4.ebuild deleted file mode 100644 index 0efdc02469be..000000000000 --- a/net-im/choqok/choqok-1.4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/choqok/choqok-1.4.ebuild,v 1.5 2014/02/09 19:09:27 kensington Exp $ - -EAPI=5 - -KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB eo es et fa fi fr ga gl -hr hu is it ja km lt mr ms nb nds nl pa pl pt pt_BR ro ru sk sq sl sv tr ug -uk zh_CN zh_TW" -KDE_HANDBOOK="optional" -inherit kde4-base - -DESCRIPTION="Free/Open Source micro-blogging client for KDE" -HOMEPAGE="http://choqok.gnufolks.org/" - -if [[ ${PV} != *9999* ]]; then - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - KEYWORDS="amd64 ~ppc x86" -else - KEYWORDS="" -fi - -LICENSE="GPL-2+" -SLOT="4" -IUSE="ayatana debug" - -RDEPEND=" - dev-libs/libattica - dev-libs/qjson - >=dev-libs/qoauth-1.0.1 - ayatana? ( dev-libs/libindicate-qt ) -" -DEPEND="${RDEPEND} - app-arch/xz-utils -" - -DOCS=( AUTHORS README TODO changelog ) - -src_prepare(){ - local mycmakeargs=( - $(cmake-utils_use !ayatana QTINDICATE_DISABLE) - ) - - kde4-base_src_prepare -} diff --git a/net-libs/iojs/Manifest b/net-libs/iojs/Manifest index 1a7fa272900a..8c59cd2455a8 100644 --- a/net-libs/iojs/Manifest +++ b/net-libs/iojs/Manifest @@ -8,3 +8,4 @@ DIST iojs-v1.6.2.tar.xz 10516028 SHA256 0015db12ebc7bdef4c44d88af08c964dea5fbf45 DIST iojs-v1.6.3.tar.xz 10625872 SHA256 79954738268ef0952a61549b951230fac70ce0f7fc709cae25b1d53039430380 SHA512 b07a1eed5a96e0b8db006e0d75e526a05db1b04bea2155058e58a8dbd3f3a638d2cf64aef4afabef544a7db3f4c6652bd17b14f9fc4a90263d7ddcd29c48b0ae WHIRLPOOL 56de6fb7187e5041acd978c27ed85e12cb02a6b204c2c1ebe68a356f9fb8e552def1846c4ce30d4deff7230ab2fefeebc9adc756c91c556d52586c1d0a2bd6c0 DIST iojs-v1.7.1.tar.xz 10867156 SHA256 3c63010701b1968baf08d99327821c79746d0602ba71060c07d2bd9f1ff485f4 SHA512 4b3841d3098d41805d21a01d897740e9d9aaa1cc323a591d4c477faf893cfb00dcb4610ae93ac041566d543b1d6b19a6f17b17965d10b75c9667e6b4dcce3446 WHIRLPOOL c21be6348e56912fe193dea79becd5fccb97c0372eb6fdc59b60aa070bc30cfe96f055709f565a13411c17212d04029861f197fb57a2bdce795bf5ef41839529 DIST iojs-v1.8.1.tar.xz 11617684 SHA256 8b9b4a141daca22e6bf28e8af86ce5f9ca5918d08923fb5619b7e614a674d966 SHA512 eaee8c20e827c66359e2661fbf82a20139946829a43fa2e8ff409031ca9e081fb877d64d64670c662ecd15ead6c80f201e57fdb83d0ff5f6c6d2098569c2bb07 WHIRLPOOL c046dcad252e71a83b2e2a00aa8f6cdfb221c06f597945ee3ee4d391d4fd854cf971ba78e701a0672536542b860db18c4ef9333f6606ce294b4f3ea2830d1612 +DIST iojs-v2.0.1.tar.xz 11702524 SHA256 aa9f1d385e79689cb0c8311a607a726daafd6027428f1a33b2a16b2d08815290 SHA512 4c89d682bdfea87d86a5aba6643be82e0febc4e5458f649ea37ab0f4df9e9dad0ed139741cf0a8dd46f44910cbd1782f8b6c0abc98721d515e2e6b2c3ef9f3ed WHIRLPOOL aaa6c3b27471fae9391a8264c9e074b19585e36057b43d2aa12dc627aac5579a13c3f028d756d8de1b65bd441c20894c0584c954f38467b098fb0b7dd459cb76 diff --git a/net-libs/iojs/iojs-2.0.1.ebuild b/net-libs/iojs/iojs-2.0.1.ebuild new file mode 100644 index 000000000000..b6e3009af724 --- /dev/null +++ b/net-libs/iojs/iojs-2.0.1.ebuild @@ -0,0 +1,125 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/iojs/iojs-2.0.1.ebuild,v 1.1 2015/05/13 15:16:48 mgorny Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +MY_PV="v${PV}" +MY_P="${PN}-${MY_PV}" + +inherit flag-o-matic pax-utils python-single-r1 toolchain-funcs + +DESCRIPTION="An npm compatible platform originally based on node.js" +HOMEPAGE="http://iojs.org/" +SRC_URI="http://iojs.org/dist/${MY_PV}/${MY_P}.tar.xz" + +LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~x64-macos" +IUSE="bundled-libs debug icu +npm snapshot +ssl" + +RDEPEND="icu? ( dev-libs/icu ) + ${PYTHON_DEPS} + !bundled-libs? ( + >=net-libs/http-parser-2.5 + >=dev-libs/libuv-1.4.2 + >=dev-libs/openssl-1.0.2a[-bindist] + )" +DEPEND="${RDEPEND} + !!net-libs/nodejs" +S="${WORKDIR}/${MY_P}" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +pkg_pretend() { + if ! test-flag-CXX -std=c++11 ; then + die "Your compiler doesn't support C++11. Use GCC 4.8, Clang 3.3 or newer." + fi +} + +src_prepare() { + tc-export CC CXX PKG_CONFIG + export V=1 # Verbose build + export BUILDTYPE=Release + + # fix compilation on Darwin + # http://code.google.com/p/gyp/issues/detail?id=260 + sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || die + + # make sure we use python2.* while using gyp + sed -i -e "s/python/${EPYTHON}/" deps/npm/node_modules/node-gyp/gyp/gyp || die + sed -i -e "s/|| 'python'/|| '${EPYTHON}'/" deps/npm/node_modules/node-gyp/lib/configure.js || die + + # less verbose install output (stating the same as portage, basically) + sed -i -e "/print/d" tools/install.py || die + + # proper libdir, hat tip @ryanpcmcquen https://github.com/iojs/io.js/issues/504 + local LIBDIR=$(get_libdir) + sed -i -e "s|lib/|${LIBDIR}/|g" tools/install.py || die + sed -i -e "s/'lib'/'${LIBDIR}'/" lib/module.js || die + sed -i -e "s|\"lib\"|\"${LIBDIR}\"|" deps/npm/lib/npm.js || die + + epatch "${FILESDIR}"/${PN}-1.8.1-pkgconfig.patch + + # Avoid a test that I've only been able to reproduce from emerge. It doesnt + # seem sandbox related either (invoking it from a sandbox works fine). + # The issue is that no stdin handle is openened when asked for one. + # It doesn't really belong upstream , so it'll just be removed until someone + # with more gentoo-knowledge than me (jbergstroem) figures it out. + rm test/parallel/test-stdout-close-unref.js || die + + # debug builds. change install path, remove optimisations and override buildtype + if use debug; then + sed -i -e "s|out/Release/|out/Debug/|g" tools/install.py || die + BUILDTYPE=Debug + fi +} + +src_configure() { + local myconf=() + local myarch="" + use bundled-libs || myconf+=( --shared-openssl --shared-libuv --shared-http-parser --shared-zlib ) + use npm || myconf+=( --without-npm ) + use icu && myconf+=( --with-intl=system-icu ) + use snapshot && myconf+=( --with-snapshot ) + use ssl || myconf+=( --without-ssl ) + use debug && myconf+=( --debug ) + + case ${ABI} in + x86) myarch="ia32";; + amd64) myarch="x64";; + x32) myarch="x32";; + arm) myarch="arm";; + arm64) myarch="arm64";; + *) die "Unrecognized ARCH ${ARCH}";; + esac + + "${PYTHON}" configure \ + --prefix="${EPREFIX}"/usr \ + --dest-cpu=${myarch} \ + --without-dtrace \ + "${myconf[@]}" || die +} + +src_compile() { + emake -C out mksnapshot + pax-mark m "out/${BUILDTYPE}/mksnapshot" + emake -C out +} + +src_install() { + local LIBDIR="${ED}/usr/$(get_libdir)" + emake install DESTDIR="${ED}" PREFIX=/usr + use npm && dodoc -r "${LIBDIR}"/node_modules/npm/html + rm -rf "${LIBDIR}"/node_modules/npm/{doc,html} || die + find "${LIBDIR}"/node_modules -type f -name "LICENSE" -or -name "LICENCE" -delete || die + + pax-mark -m "${ED}"/usr/bin/iojs +} + +src_test() { + out/${BUILDTYPE}/cctest || die + declare -xl TESTTYPE="${BUILDTYPE}" + "${PYTHON}" tools/test.py --mode=${TESTTYPE} -J message parallel sequential || die +} diff --git a/net-libs/libssh/Manifest b/net-libs/libssh/Manifest index 996c56bf3c24..17ba8518399c 100644 --- a/net-libs/libssh/Manifest +++ b/net-libs/libssh/Manifest @@ -2,3 +2,4 @@ DIST libssh-0.6.4-libgcrypt_build_fix.patch 1660 SHA256 729e6c4aeacb0c066906b320 DIST libssh-0.6.4.tar.gz 381835 SHA256 7e3205e2e95bf35b23b83a6485a7d59abe7c7546d01b728f691cf0c374216b52 SHA512 02c1879d7afed9cc8404366c343ea770e97fcdcc7cc467f15b762b2c5724399de3efe69fdf6ee86a607c0f4d2337586f34150b9e0dcc8ccd8e86de79f574cba5 WHIRLPOOL e086afbe604905bdc024a1ce7503644285fdb394a168b6049e44751c64cdf51ba9e036a32f568d749252ad537fe9f874eadb8aea92de580f9c93a9d91a6ef457 DIST libssh-0.6.5-compilefix.patch 668 SHA256 90eb8bd3e31c4df5a5aa40d4e0d440c290190be8524396c979dc2fe5005c9b61 SHA512 8ade351e6499922bc983cfb1b7042a8eca4322b64a5fd1eb9d4afc0baba311f0af970dc3f43b864d510d3a4668f58e83e6214a6e90ddbf4199ab9fea6c73d036 WHIRLPOOL d65f3505eae97feb16f5b0cdfc83a6638dcdca2916facedd05b9987797b72231725c0834355048e48bc38413ad1b9c718cfbdad410fbd13573b38c919ccbac0b DIST libssh-0.6.5.tar.xz 281564 SHA256 0fd52763e033d5e9b1cd55f60a74e619731c5ba630938eec95682dbe4cf7dc2c SHA512 55d614ff311a29a20b93094ac1dd16a2ad1345368b874a0e385f0c235e8defde8816948ab04eab68ade477a0a6901b317c7884df1ba3078cf12db89dfc4169cc WHIRLPOOL 9801eee45a178306b0645d75c268df381d206a8c566695d8b6c228ea7f5638a313bdbdf990ad7bd299c24d280595007b44fd16449ee3a0643b6e2084bb148d09 +DIST libssh-0.7.0.tar.xz 349548 SHA256 0551bc341f33641ddc349b31730b3010870ad26a4dbfad3d090a1738fe3e402b SHA512 2ef897f7295d2b4ba63f0d797c51ba2c8cb7d8569152d34ec982d2b88adccc97c8f2aabea3bbc88b72421256d3d0be661f82bbcf5c4b151018b5a695be445568 WHIRLPOOL 1337ca1fc69c5de60f2d33ce1d66f04b0d2807b01794af6787a5d4b7ca84715afe00ff72d8b1bb21590186b7af9058fa90c69af865a0534402735076dec51397 diff --git a/net-libs/libssh/libssh-0.7.0.ebuild b/net-libs/libssh/libssh-0.7.0.ebuild new file mode 100644 index 000000000000..64596e605ae0 --- /dev/null +++ b/net-libs/libssh/libssh-0.7.0.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/libssh-0.7.0.ebuild,v 1.1 2015/05/13 14:14:03 polynomial-c Exp $ + +EAPI=5 + +MY_P=${PN}-${PV/_rc/rc} +inherit eutils cmake-multilib multilib + +DESCRIPTION="Access a working SSH implementation by means of a library" +HOMEPAGE="http://www.libssh.org/" +SRC_URI="https://red.libssh.org/attachments/download/140/${MY_P}.tar.xz -> ${P}.tar.xz" + +LICENSE="LGPL-2.1" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +SLOT="0/4" # subslot = soname major version +IUSE="debug doc examples gcrypt gssapi pcap +sftp ssh1 server static-libs test zlib" +# Maintainer: check IUSE-defaults at DefineOptions.cmake + +RDEPEND=" + zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) + !gcrypt? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] ) + gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] ) + gssapi? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] ) +" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + test? ( >=dev-util/cmocka-0.3.1[${MULTILIB_USEDEP}] ) +" + +DOCS=( AUTHORS README ChangeLog ) + +S=${WORKDIR}/${MY_P} + +PATCHES=( + "${FILESDIR}"/${PN}-0.5.0-tests.patch +) + +src_prepare() { + # just install the examples do not compile them + sed -i \ + -e '/add_subdirectory(examples)/s/^/#DONOTWANT/' \ + CMakeLists.txt || die + + cmake-utils_src_prepare +} + +multilib_src_configure() { + local mycmakeargs=( + $(cmake-utils_use_with debug DEBUG_CALLTRACE) + $(cmake-utils_use_with debug DEBUG_CRYPTO) + $(cmake-utils_use_with gcrypt) + $(cmake-utils_use_with gssapi) + $(cmake-utils_use_with pcap) + $(cmake-utils_use_with server) + $(cmake-utils_use_with sftp) + $(cmake-utils_use_with ssh1) + $(cmake-utils_use_with static-libs STATIC_LIB) + $(cmake-utils_use_with test STATIC_LIB) + $(cmake-utils_use_with test TESTING) + $(cmake-utils_use_with zlib) + ) + + cmake-utils_src_configure +} + +multilib_src_compile() { + cmake-utils_src_compile + multilib_is_native_abi && use doc && cmake-utils_src_compile doc +} + +multilib_src_install() { + cmake-utils_src_install + + multilib_is_native_abi && use doc && dohtml -r doc/html/. + + use static-libs || rm -f "${D}"/usr/$(get_libdir)/libssh{,_threads}.a +} + +multilib_src_install_all() { + einstalldocs + + if use examples; then + docinto examples + dodoc examples/*.{c,h,cpp} + fi +} diff --git a/net-misc/smb4k/Manifest b/net-misc/smb4k/Manifest index da584cd6be09..bfac8ea17e0c 100644 --- a/net-misc/smb4k/Manifest +++ b/net-misc/smb4k/Manifest @@ -1,3 +1 @@ -DIST smb4k-1.1.3.tar.xz 3063488 SHA256 a5674cb03c448b3a1311be9da964c20303c2f2deac406a74614b8fcec8765544 SHA512 702dd69eea8305021c33769bce2def942ddae3035d2987e24c0abe642db7033887b297181630f57ff3841774561d03e92dc5e00212a76e44630f73e3e2cbd46f WHIRLPOOL 53cac0047d9ce4648e43b97ad02e7004ba060dcb0b3b2e561adbd5232a199095b7e12611355302de4ee62f9fd684e522944a6a19e62821e9271d505f29577de5 -DIST smb4k-1.1.4.tar.xz 3109124 SHA256 d073731b09f16fe6a91deba09f6f2eb3ffab4be07c024fe79da9d4fdf9b47223 SHA512 e93130b0b3d38d763a721a1fd613c14e6122b32d49c1ce79e83c9fa42ba4bf063fa2d25c3a10ce3592c1b4f3e71fe6e2ddd2ece07b76e380ac15d5caf9bc4aa0 WHIRLPOOL 0188eabad32436ba73463d1e40555a3232a090d63c4296371e0d74656ecda72269de108e1cbaad30ce335de4b186eecb6fc6e5d620acc4ae67f5e32100b8b997 DIST smb4k-1.2.0.tar.xz 3911380 SHA256 42b32a7f5c534e17e5130cb8a69ee1f38d82e8c5932091a20e9faf0b16c4fd2f SHA512 3256c24328246a86f19b943c7d10bed7a5979ef5940be1381a07be93c91a80adcf42e5bbfb791dc62edc1d9ece38a5e86c33974706ed23a4db399e4b869acf58 WHIRLPOOL 1b24526acb042c3f06a05b3c1f7516f0a1fe21667abb5bb1330868c48bd7731f4c6aacc307b1befbd9e2407665ba8b1ac1b43478013c671c9fd15e4fff79949d diff --git a/net-misc/smb4k/smb4k-1.1.3.ebuild b/net-misc/smb4k/smb4k-1.1.3.ebuild deleted file mode 100644 index 33ada17c8826..000000000000 --- a/net-misc/smb4k/smb4k-1.1.3.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/smb4k/smb4k-1.1.3.ebuild,v 1.3 2014/10/24 15:26:14 zlogene Exp $ - -EAPI=5 - -KDE_LINGUAS="bg bs ca cs da de en_GB eo es et fi fr ga gl hu is it ja lt mai mr -nb nds nl pl pt pt_BR ro ru sk sv tr ug uk zh_CN zh_TW" -KDE_HANDBOOK="optional" -KDE_DOC_DIRS="doc doc-translations/%lingua_${PN}" -inherit kde4-base - -DESCRIPTION="The advanced network neighborhood browser for KDE" -HOMEPAGE="http://sourceforge.net/projects/smb4k/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="4" -KEYWORDS="amd64 ~ppc x86" -IUSE="debug" - -RDEPEND=">=net-fs/samba-3.4.2[cups]" -DEPEND="${RDEPEND} - sys-devel/gettext -" - -DOCS=( AUTHORS BUGS ChangeLog README ) diff --git a/net-misc/smb4k/smb4k-1.1.4.ebuild b/net-misc/smb4k/smb4k-1.1.4.ebuild deleted file mode 100644 index f502b295a381..000000000000 --- a/net-misc/smb4k/smb4k-1.1.4.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/smb4k/smb4k-1.1.4.ebuild,v 1.1 2015/01/02 15:09:37 mrueg Exp $ - -EAPI=5 - -KDE_LINGUAS="bg bs ca cs da de en_GB eo es et fi fr ga gl hu is it ja lt mai mr -nb nds nl pl pt pt_BR ro ru sk sv tr ug uk zh_CN zh_TW" -KDE_HANDBOOK="optional" -KDE_DOC_DIRS="doc doc-translations/%lingua_${PN}" -inherit kde4-base - -DESCRIPTION="The advanced network neighborhood browser for KDE" -HOMEPAGE="http://sourceforge.net/projects/smb4k/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="4" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug" - -RDEPEND=">=net-fs/samba-3.4.2[cups]" -DEPEND="${RDEPEND} - sys-devel/gettext -" - -DOCS=( AUTHORS BUGS ChangeLog README ) diff --git a/sys-block/partitionmanager/Manifest b/sys-block/partitionmanager/Manifest index a67cbb56e989..5985734d25d8 100644 --- a/sys-block/partitionmanager/Manifest +++ b/sys-block/partitionmanager/Manifest @@ -1,3 +1,2 @@ -DIST partitionmanager-1.1.0.tar.xz 1747260 SHA256 30ac75f85bb61e6ec9b6f5d80dee4a2c8501a0a0c62997f6d734e63459802cc8 SHA512 9e35777ae54f46ea585fd7ea7295c63531bca0a9bd53bf967f1e58219a63bb3c8d198785a9f5c7ddde6ae93f40b7be04ecf16598065b775e8e013686db7be6be WHIRLPOOL 86e426c741719d8c48e39d1567f6aa2664ae7e5ad5982793d348adb675c6e779bff8873e2ed3af088712a45e930713ef54e963f5c61eb7b3101ce14978cc96a2 DIST partitionmanager-1.1.1.tar.xz 1738132 SHA256 4cf3fa71bd20b06755d36bb9aa7692fa4770a1d84ec8eb72654cb58fdea563de SHA512 3cae1d0c34c2d8a245094ff85131def5c48e4247462104a84c4dcac2230e115df61cc72b6acdf735b1755f921b8f17adb1b2a5f97a9b3fa9a0628619e7e34117 WHIRLPOOL b4bb73a8d7c5f157c7bd95ba1f907b81955206c283a09cd84397f5db5ad33ec25e55a9a5a0cb8742008396bb574b05a5b9df04030b24c0b76aaf064a31031bb2 DIST partitionmanager-1.2.1.tar.xz 1794200 SHA256 eb5b8b00ab6f0a2c5ef494b1c70441100ff70bf691006c4aa95f39d00b43e4e0 SHA512 9d33847e307df65081966d4aea2b2efeb7e1befe911268c71e678d196bf0fb9160b9812c7df2021dca2a3a4a5e9efffcf435d242b3496e6e7c7b1d89fea15441 WHIRLPOOL 945676c27a5aa80b6551d75c8324ed3d85328fbfea6f2447e0345e0d1a5ba9d45165ce36332c444b3aea5076f80060b47f4568699fc5bb59e18222af0d7a56c7 diff --git a/sys-block/partitionmanager/partitionmanager-1.1.0.ebuild b/sys-block/partitionmanager/partitionmanager-1.1.0.ebuild deleted file mode 100644 index c8e85523319e..000000000000 --- a/sys-block/partitionmanager/partitionmanager-1.1.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/partitionmanager/partitionmanager-1.1.0.ebuild,v 1.3 2014/10/10 10:58:00 ago Exp $ - -EAPI=5 - -KDE_HANDBOOK="optional" -KDE_LINGUAS="ar bg bs ca ca@valencia cs da de el en_GB es et fr gl it lt nb nds -nl pa pl pt pt_BR ro ru sk sl sr sr@ijekavian sr@ijekavianlatin sr@latin sv tr -uk zh_CN zh_TW" -inherit kde4-base - -DESCRIPTION="KDE utility for management of partitions and file systems" -HOMEPAGE="http://partitionman.sourceforge.net/" -SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" - -LICENSE="GPL-2" -KEYWORDS="amd64 x86" -SLOT="0" -IUSE="debug" - -RDEPEND=" - dev-libs/libatasmart - >=sys-block/parted-3 - sys-apps/util-linux -" -DEPEND="${RDEPEND} - sys-devel/gettext -" - -src_configure() { - local mycmakeargs=( - -DENABLE_UDISKS2=ON - ) - - kde4-base_src_configure -} diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 805ca6302940..e9b8c4158c00 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -30,6 +30,8 @@ DIST genpatches-3.19-9.experimental.tar.xz 61632 SHA256 c1668cb0ebe2c04a5f9d837c DIST genpatches-3.19-9.extras.tar.xz 16280 SHA256 f0b77c7754741f000933a1450c39027c509ca66b44e78add44b100b02e415e5c SHA512 764e704d43573b80604f090b35b4c5913cc8d8abcb8f94590621df879668fdd0607db1a711a6fb24dd7b2ad709dff1110381e4b8072ad435ef7356639d8baacf WHIRLPOOL 6e8243526c27642cade7d1e9b36c6453c7a5ea63e99abae77ebd866365543930d1ee685b7a447f38e40bc8cfcbe84b01cbc8f5a6e443fe732b8e14ff3487a45d DIST genpatches-3.4-89.base.tar.xz 1274612 SHA256 67f1fc28b1a48e201d011f543aa8cbb2cbf596557cde7e66e68c40310639d327 SHA512 2e3ff2b26a0a4f7bbabda2b1845660ccfaead481c408af461b3bd8965a9657b99a5aac80fd8735d6eb6b1e0e9e5699bb5f9cb9c45d6845b37abfd17c546ca4bf WHIRLPOOL 78af99b652223aca35ac94e6e9d7d696b17cfd5690183deb9e0eda831925866145ec8ddf6e5e9e9f6e39a215af0e3b25c2165878557737997816106ad6b69eb5 DIST genpatches-3.4-89.extras.tar.xz 18240 SHA256 c93ee7aa7b095db85cb12f990a2d344e87f4caaee64cdd8e85336c483459b69d SHA512 936c2baf1b5015913a1dc2f43353cd8286a5749f5deb382c0cf569d9ca302b9f85c6ba678d77156c5d54c87ba2f3147751fe4622fd6738b2d1b55b0f44c09c34 WHIRLPOOL 7a8d218525509e1a1eddba81341cb20ac06a4b4120d2e43a92d0855584e38eb39ce497538931d4972e2406bd48ce77f2613aea3a407b0f884936fa9ff22fa6fc +DIST genpatches-3.4-90.base.tar.xz 1325696 SHA256 77764d0afc0e3a9db3b4e3314c86505ed8703834f8364fabf7bc21004d14425b SHA512 df2583e5a939a2ae9a2fade243b128ad3b1d4f7370407bca15ad1dca2defde271ede16daa8c01f844053af5da7a5cfbb7ea04839fe93a4a21fe87d1d8551374f WHIRLPOOL 17050e7e73b15106fb1831290a685810e65e41a345669e401ab324a3fa27576d02cb17e22b3f8c36961b501b31254cef82d849cac005504b8feb5b4113d9cbc3 +DIST genpatches-3.4-90.extras.tar.xz 18236 SHA256 787d5a43bbadfcb40ac5f7aed21aca6bba239bcf495b0d051380f675487ecb42 SHA512 9917f83e64c0705e0c810723ada2f14109d29cee03576027fb234229796c024d8092abbb91406e2ff9594e9e1840f718885e9e0ff294cdb2bfb0ef76fbcfde0d WHIRLPOOL 255b4f46bd3f0685f6903eb04be187dfa3f821318c7bb8ae48fb17c35eabd88d0f14684f6031326cea4935246acd0766abe6e7363f1a527af686c7fa965cf9d3 DIST genpatches-4.0-1.base.tar.xz 3720 SHA256 e1abe1fdf42dda7e0e5aef9843bc5d240416c6fbde8dcca44e2a43b5e5f6c2f1 SHA512 3d67dba40ff8501d258e9a30996d70be5e614661f76fd4978c5837f16b42f1ac9015010e7b6a9826ed20c0723547d19ffafd54dcface2a41b0a95d23aa72dcbb WHIRLPOOL 791a508360e23160a7ba9dbc3f6c311727cb638693fa63354e60a847aa0bed7ea6c2d8b0e2605d1cfdcc77101caab9c0b8886a5fe71effa03dbe47895f44e3bd DIST genpatches-4.0-1.experimental.tar.xz 4904 SHA256 1366bdf5fd8320048e7354bbff0297709bce1fba17dc8764d5099e793fd20524 SHA512 9e2d4a3df438d885f017c2b03061b401ab6ec2351c1be1dfddee749e8606f23a12787d4889e8890c2e500e41322d70ba2ca2653860e19e8df75c43abdf77c3e6 WHIRLPOOL c813abbfee764de1c2f9125de38d9fc7db4b3fb4d169cdd0cbe2193229647659fcbcbe749e5b74f4babc9d328ce2240cfc98752c22e1504fc19459b0f98180d8 DIST genpatches-4.0-1.extras.tar.xz 16276 SHA256 1fc718e10dfdfedbaeb896c60c5cfe95c7d1fe4af23de8596a467c309ddcb18a SHA512 7a866aadf905cd463a527e517021bc5060045f7c3b9fb82d0031b399fbd8d9b69db15547ec8ee6eb9e9fd81ca6613a1fe9d2cfed74f474884f42e15eafc8b487 WHIRLPOOL 2c2eeb44761bfb01de861acd58df12bdf5ad339eeec825cd0b9669f5287bc73e38cfbcc6aa904ae222b68514fe736aa33ffe5db2c3dab75dedc93493600caa17 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.4.107.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.4.107.ebuild new file mode 100644 index 000000000000..d4aed45dc3f0 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-3.4.107.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.4.107.ebuild,v 1.1 2015/05/13 16:45:23 mpagano Exp $ + +EAPI="5" +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="90" +K_DEBLOB_AVAILABLE="0" +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" +IUSE="deblob" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 7ad9cadecc3d..c89dd54b6a44 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -12,9 +12,9 @@ DIST linux-3.4.tar.xz 66748028 SHA256 ff3dee6a855873d12487a6f4070ec2f7996d073019 DIST linux-4.0.tar.xz 82313052 SHA256 0f2f7d44979bc8f71c4fc5d3308c03499c26a824dd311fdf6eef4dee0d7d5991 SHA512 ce13d2c1c17908fd9a4aa42bb6348a0cb13dd22e560bd54c61b8bfdf62726d6095f130c59177a2fe4793b7dc399481bf10d3556d1d571616000f180304e5a995 WHIRLPOOL c481256e23dc82209942d4f2fc9a94aa7fc4c3c69b05eaa041a58ca4bdc5781274ec4c49d597ccf94b634d61418ec578d20a6569c6c7052b4d3cf33611c99001 DIST patch-3.10.78.xz 1109132 SHA256 0b86190c3142fc22e405865d9d028f3e72ca4197d46dd034fe47e6d80665737c SHA512 a878c20ec95b3e6d2cc0ee664eca95b5b7c0c321d281d2617ade1cea0a4bb78cb21491a2f677992fabb2577938dd4fdd404f0ead54ff63076672ea6dba2e7770 WHIRLPOOL 352af0017d169e8d5b0d0ee3d18aa2b3f78f3e1ff5b9a49c0f1daae0ff0b5f0d8551642e87bc3f23496dcdb858c61cbf6544756f48f80777de45f0e8929af760 DIST patch-3.12.42.xz 1207152 SHA256 43b79cde0a61471c11a1f90f70607a254263f3568a9d33563ac9446fb1cf0817 SHA512 5441162d835cdbd95e41107de010d29c3ac9fb94277d3d273614e13a9753bc16fedf9787b19c7b1dead5b72008983ed4ef716f268a6b6beb7820c7c7790e135e WHIRLPOOL 6faeb7463c5020894d085d6e1838ebfc283624bd518b29ddecd251818643f7180f0431441e2e929bc26d30d653019b7f2394983773a1fa14fe78317d5a426c70 -DIST patch-3.14.41.xz 876872 SHA256 64b3131606ff534ee27f61323ca1cc9693545edf4871bdbcb2bfa299ce5efca9 SHA512 d3426fce0b4709955167164f1226de5f7d7292fea57f5f0e565bd590a226b854424c428f3c28909132cd93330af0c3105eb53f77aa8ddc8bbfaef38a413a9992 WHIRLPOOL 3e193713b1c04ad1b48ff3d0dfc006faf00ad1a17298e4ec162eed468319adde93ad8bf80a8060201a7f6b1a3ec34e4e03a9cf2d3807d0b03dda140f13c1ce18 +DIST patch-3.14.42.xz 884784 SHA256 f226736d5c641668d34f5a27b87be1119a6ec001b1583376cbf0af8632828c6a SHA512 86fa6939b80486709e881cdbe636288128410eecff13a113896af931cd750f68ce10927c53544fd69d83517c5ff98c4986922a5d7a3a8944a4929954e73fdad0 WHIRLPOOL 2996f38f55f255847be5545ca31f9d385bca9ada71b2f7dcc46f4b0190913d3632ad95774d0baa24bd9faf0e98fac364c801362085ec50854ceeec5bcf373002 DIST patch-3.18.13.xz 368132 SHA256 d9191eb7fa47e95c81945e561cdf35bb12fcdd2bbf12f37f60533cbf57be429c SHA512 4d85a6a64b2d07b94b817fd4c3e0406910dd7d2028e58cfb13cf04d9ebb3bfe0f99148742489e2d5a72d93018c85adbf0e37bd068c01084d305574a9c49f9dff WHIRLPOOL dba5b06eddd83a592f53af1c3d57d51afaf01dab7b43471ff071b2d33bd12363f3c14b1c6dc5dab0bcf1574eaa58db8f6ac0a63f7d8efff57d019b453f698b2a DIST patch-3.19.8.xz 250604 SHA256 2e4f01c2ce7ccb2ffee1722724df0a2c2ad6ba5fa74218aa816bda19f3ddcf5d SHA512 29c63beaab43493093a002c29d979e999d11f44eb5465b887ddf75313cd7755d20b3ea19ac1ef68ae586fb4e5275817bfe56d1dfba930ffaabd618702541aebb WHIRLPOOL d8c7fed18c9fa036f7affabc6c9cbb71e825d49e1ed16b387b466a48909cde237e4c07cb0b6d7dc99a79813fb8a2bf42d0fa73faa38a78e5e4ff34b86e31ffb0 DIST patch-3.2.69.xz 1406184 SHA256 25e1b9752bd42004dfe5c3c362570434ce674845ea03fa53e9a6a3381f089bb0 SHA512 7e6cde3e773d1e9ab29786b7023a176cada2035466bb52b77a0e9d38c3ec010ff3cd105dcdb870a666a2c98adc511a24820c24b8274b8218df4fd138aa2c94fe WHIRLPOOL 390a68bf3261a20ad9c8c3d96f6ae24a79990cd879071b3f48c0f9fab03577ee9916209feb1f04b64b4f20be46270f2301ced15aa9b44115030790f308f615ed DIST patch-3.4.107.xz 1216492 SHA256 1c8c5cea7f0811064e33fd034ee35c399e376f2f0bcac37502f62e1f3a686f40 SHA512 fdc3aa1023bce84c2bb8741d7ee32d9262175d8ade2b26cc8e3f06d9d04580feb8d7f62e993dd9804c4e3eb05667f7b1397a8082ee605096e20b37ada90f7fde WHIRLPOOL 6224b2c21108b754991b11060d79a96c9afe2b5a35f94bf225b25d03f2dce39882bbd6371f752b6fbb3b8613487bd1a5832711be63a5207a00764274ea213ff5 -DIST patch-4.0.2.xz 73112 SHA256 c879ac300e9c1c8d2433ad9c66be5d374d15cf2175ac9876fb22d7d53a6b2e3b SHA512 bb633f5db560737295407d5d68522b2a0e05007aed15a9ef3a9e3d8ede9773fac127c96f063509d097294aa1beb596c746e622a9f55d9ba22f346d2e45c1d3d5 WHIRLPOOL 3487dd834b4bc324bd9a1decb6bdbe825ae95f9fd37666356392c73f1059f0208004ddf9af4d34f17e55aa72405c3eccd4a26f13f74f4cf2ca9efece8f2e5ff8 +DIST patch-4.0.3.xz 95184 SHA256 e8e42b67cd5ca28d3cd85b868a8caf6c0b971c948d6695ea6e399e132664de83 SHA512 ee0967151de3567bda0d0fd1edc96d7d14ed1450d3c13d53b3842ad1caa9e687908e2442a1249f0c4b5ca8113f3a65af2dd28d8ce12ca5db174f09a27b8726ab WHIRLPOOL caf94e2715e2825688592bcec1b27b56c9b1f02dcbe545256c94d8f3e4db4fbfb2c253d5f13518af9e930ae1617be090e124097dee87ae50069dd872973615ce diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.14.41.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.14.42.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-3.14.41.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.14.42.ebuild index aa4dc5b6fe1b..f9fd35f1cad1 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-3.14.41.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-3.14.42.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 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.14.41.ebuild,v 1.1 2015/05/06 21:32:29 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.14.42.ebuild,v 1.1 2015/05/13 13:28:37 mpagano Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.0.2.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.0.3.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-4.0.2.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.0.3.ebuild index cfd4b763ccaa..083bbf9505dd 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-4.0.2.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-4.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-4.0.2.ebuild,v 1.1 2015/05/06 21:32:29 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-4.0.3.ebuild,v 1.1 2015/05/13 13:28:37 mpagano Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-libs/musl/Manifest b/sys-libs/musl/Manifest index 161fc59e3102..842315d7e5c8 100644 --- a/sys-libs/musl/Manifest +++ b/sys-libs/musl/Manifest @@ -1,2 +1,3 @@ DIST musl-1.1.7.tar.gz 904546 SHA256 d8e0aae287ecf8aa6500d3ed4131f33d216a7857dc7649a89125ffca6bf91599 SHA512 7fe002ed5f7fd96c8759f3f85ee382809043e1829e093b88eaaddc197f7d558473ad66b33be41dbb1afe750ccdd62e6dfcc3a591c122e84435142fab890e8edc WHIRLPOOL c9261b4887df25316f7b179cfdf6b25277f69aa512c29ebe53b6fa4742712007d393144cbbf825be4cb63aa250558efbae2dcb43185a4937b99c0e9bd6efc861 DIST musl-1.1.8.tar.gz 904465 SHA256 fa928506415b9c555977daaf874c190eaf7fbbd16028cc5c5f33a00a83227813 SHA512 de2f0b03fd199e2ceb9937686d1092838744dccaddb3916f9baef9cdd2621624fb3c4af2206a3366d12852d84ccc8b0b68350f9d06a9e2bcdbc0309dc05383ff WHIRLPOOL 439059ed2134614cf7ccd3b8b7a8c50c53b7aab4a8114b030a1bd2fdb12c6c57621a7ee139aafcada2500c3b0dea3b1b812d7bae7bca85243867edd520adb891 +DIST musl-1.1.9.tar.gz 905914 SHA256 00bf7173caf972c88cd07cb0d420c082a2f35efcccc1a81f8909bec2d030283e SHA512 a6f899814b728113d3ad1b9d03dfde4991af1d9cb85cf596583d6c98cfd596dc2523453ff9bd6e40daef9a63682bf39a66d88ddaa5b51bac72f52c9ff43b9590 WHIRLPOOL b86ed0bbbbecc24b4ea3efd9682f2a6bbe81453e9f801a55f9cd8ffab0cc61ff4f4fa5c2ac956afd7e0685e04060fd8622426dba7284ef3d55348860a9603fba diff --git a/sys-libs/musl/files/ldconfig.in b/sys-libs/musl/files/ldconfig.in new file mode 100644 index 000000000000..a2921903c32c --- /dev/null +++ b/sys-libs/musl/files/ldconfig.in @@ -0,0 +1,144 @@ +#!/bin/bash -e +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +ROOT="/" + +LDSO_CONF="/etc/ld.so.conf" +if [[ ! -e $LDSO_CONF ]]; then + echo "$LDSO_CONF not found" >&2 + exit 1 +fi + +LDSO_CONF_DIR=$(dirname $LDSO_CONF) + +VERBOSE=0 + +UPDATE_LINKS=1 + +get_options() { + while getopts "vnNXf:C:r:p" opt "$@"; do + case $opt in + v) + echo "ldconfig for musl in Gentoo" + VERBOSE=1 + ;; + r) + ROOT=$OPTARG + ;; + f) + LDSO_CONF=$OPTARG + ;; + X) + UPDATE_LINKS=0 + ;; + \?) + echo "Invalid option: -$opt" >&2 + exit 1 + ;; + n|N|C|p) + echo "Unimplemented option: -$opt" >&2 + exit 1 + ;; + esac + done + + if [[ $UPDATE_LINKS == 1 ]]; then + echo "Updating links is not implemented." + fi +} + + +repeated() { + local l=$1 + local drs="${@:2}" + for m in $drs; do + [[ $m == $l ]] && return 0 + done + return 1 +} + +expand() { + # We are assuming the ld.so.conf's 'include' is not recursive + local f line l + local glob="$LDSO_CONF_DIR/$1" + local drs="${@:2} " + + for f in $glob; do + [[ ! -f $f ]] && continue + while read line; do + line=${line%%#*} + line=${line//:/ } + line=${line//,/ } + for l in $line; do + #We must add this whether or not the directory exists + repeated $l $drs && continue + drs+=" $l " + done + done < $f + done + + echo $drs +} + +read_ldso_conf() { + local drs=" " + + while read line; do + # Sanitize the line - see ldconfig(8) for delimiters + # Note: bash read turns tabs into spaces and read already + # delimits on newlines with the default $IFS + line=${line%%#*} # Remove comments + line=${line//:/ } # Change colon delimiter to space + line=${line//,/ } # Change comma delimiter to space + + next=0 + for l in $line; do + if [[ $next == 1 ]]; then + next=0 + drs=$(expand $l $drs) + elif [[ $l == "include" ]]; then + next=1 + else + # glibc's ldconfig silently skips non directories + if [[ -d $l ]]; then + repeated $l $drs && continue + drs+=" $l " + fi + fi + done + done < $1 + + echo $drs +} + +sanitize() { + local drs=$@ + + repeated "/lib" $drs || drs="/lib $drs" + repeated "/usr/lib" $drs || drs="/usr/lib $drs" + + echo $drs +} + +get_options "$@" +drs=$(read_ldso_conf "$LDSO_CONF") +drs=$(sanitize $drs) + +ARCH=@@ARCH@@ +LDSO_PATH="/lib/ld-musl-${ARCH}.so.1" +if [[ ! -e $LDSO_PATH ]]; then + echo "$LDSO_PATH not found" >&2 + exit 1 +fi + +LDSO_ARCH=$(basename $LDSO_PATH) +LDSO_NAME=${LDSO_ARCH%.so.1} +ETC_LDSO_PATH=/etc/${LDSO_NAME}.path + +X=$(mktemp --tmpdir=/tmp ${LDSO_NAME}.XXXXXX) +for d in $drs; do + echo $d >> $X +done +chmod 644 $X +mv $X $ETC_LDSO_PATH diff --git a/sys-libs/musl/musl-1.1.9.ebuild b/sys-libs/musl/musl-1.1.9.ebuild new file mode 100644 index 000000000000..6ff265a715e4 --- /dev/null +++ b/sys-libs/musl/musl-1.1.9.ebuild @@ -0,0 +1,126 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/musl/musl-1.1.9.ebuild,v 1.2 2015/05/13 17:37:06 ulm Exp $ + +EAPI=5 + +inherit eutils flag-o-matic multilib toolchain-funcs +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="git://git.musl-libc.org/musl" + inherit git-2 +fi + +export CBUILD=${CBUILD:-${CHOST}} +export CTARGET=${CTARGET:-${CHOST}} +if [[ ${CTARGET} == ${CHOST} ]] ; then + if [[ ${CATEGORY} == cross-* ]] ; then + export CTARGET=${CATEGORY#cross-} + fi +fi + +DESCRIPTION="Lightweight, fast and simple C library focused on standards-conformance and safety" +HOMEPAGE="http://www.musl-libc.org/" +if [[ ${PV} != "9999" ]] ; then + PATCH_VER="" + SRC_URI="http://www.musl-libc.org/releases/${P}.tar.gz" + KEYWORDS="-* ~amd64 ~arm ~mips ~ppc ~x86" +fi + +LICENSE="MIT LGPL-2 GPL-2" +SLOT="0" +IUSE="crosscompile_opts_headers-only" + +RDEPEND="!sys-apps/getent" + +is_crosscompile() { + [[ ${CHOST} != ${CTARGET} ]] +} + +just_headers() { + use crosscompile_opts_headers-only && is_crosscompile +} + +musl_endian() { + # XXX: this wont work for bi-endian, but we dont have any + touch "${T}"/endian.s + $(tc-getAS ${CTARGET}) "${T}"/endian.s -o "${T}"/endian.o + case $(file "${T}"/endian.o) in + *" MSB "*) echo "";; + *" LSB "*) echo "el";; + *) echo "nfc";; # We shouldn't be here + esac +} + +pkg_setup() { + if [ ${CTARGET} == ${CHOST} ] ; then + case ${CHOST} in + *-musl*) ;; + *) die "Use sys-devel/crossdev to build a musl toolchain" ;; + esac + fi + + epatch_user +} + +src_configure() { + tc-getCC ${CTARGET} + just_headers && export CC=true + + local sysroot + is_crosscompile && sysroot=/usr/${CTARGET} + ./configure \ + --target=${CTARGET} \ + --prefix=${sysroot}/usr \ + --syslibdir=${sysroot}/lib \ + --disable-gcc-wrapper +} + +src_compile() { + emake include/bits/alltypes.h || die + just_headers && return 0 + + emake || die +} + +src_install() { + local target="install" + just_headers && target="install-headers" + emake DESTDIR="${D}" ${target} || die + just_headers && return 0 + + # musl provides ldd via a sym link to its ld.so + local sysroot + is_crosscompile && sysroot=/usr/${CTARGET} + local ldso=$(basename "${D}"${sysroot}/lib/ld-musl-*) + dosym ${sysroot}/lib/${ldso} ${sysroot}/usr/bin/ldd + + if [[ ${CATEGORY} != cross-* ]] ; then + local target=$(tc-arch) arch + local endian=$(musl_endian) + case ${target} in + amd64) arch="x86_64";; + arm) arch="armhf";; # We only have hardfloat right now + mips) arch="mips${endian}";; + ppc) arch="powerpc";; + x86) arch="i386";; + esac + cp "${FILESDIR}"/ldconfig.in "${T}" + sed -e "s|@@ARCH@@|${arch}|" "${T}"/ldconfig.in > "${T}"/ldconfig + into / + dosbin "${T}"/ldconfig + into /usr + dobin "${FILESDIR}"/getent + echo 'LDPATH="include ld.so.conf.d/*.conf"' > "${T}"/00musl + doenvd "${T}"/00musl || die + fi +} + +pkg_postinst() { + is_crosscompile && return 0 + + [ "${ROOT}" != "/" ] && return 0 + + ldconfig + # reload init ... + /sbin/telinit U 2>/dev/null +} diff --git a/sys-libs/musl/musl-9999.ebuild b/sys-libs/musl/musl-9999.ebuild index a53ab97b3f32..98c6ba5ffb0c 100644 --- a/sys-libs/musl/musl-9999.ebuild +++ b/sys-libs/musl/musl-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/musl/musl-9999.ebuild,v 1.19 2015/04/18 11:24:34 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/musl/musl-9999.ebuild,v 1.21 2015/05/13 17:37:06 ulm Exp $ EAPI=5 @@ -40,6 +40,17 @@ just_headers() { use crosscompile_opts_headers-only && is_crosscompile } +musl_endian() { + # XXX: this wont work for bi-endian, but we dont have any + touch "${T}"/endian.s + $(tc-getAS ${CTARGET}) "${T}"/endian.s -o "${T}"/endian.o + case $(file "${T}"/endian.o) in + *" MSB "*) echo "";; + *" LSB "*) echo "el";; + *) echo "nfc";; # We shouldn't be here + esac +} + pkg_setup() { if [ ${CTARGET} == ${CHOST} ] ; then case ${CHOST} in @@ -84,10 +95,21 @@ src_install() { dosym ${sysroot}/lib/${ldso} ${sysroot}/usr/bin/ldd if [[ ${CATEGORY} != cross-* ]] ; then + local target=$(tc-arch) arch + local endian=$(musl_endian) + case ${target} in + amd64) arch="x86_64";; + arm) arch="armhf";; # We only have hardfloat right now + mips) arch="mips${endian}";; + ppc) arch="powerpc";; + x86) arch="i386";; + esac + cp "${FILESDIR}"/ldconfig.in "${T}" + sed -e "s|@@ARCH@@|${arch}|" "${T}"/ldconfig.in > "${T}"/ldconfig + into / + dosbin "${T}"/ldconfig into /usr dobin "${FILESDIR}"/getent - into / - dosbin "${FILESDIR}"/ldconfig echo 'LDPATH="include ld.so.conf.d/*.conf"' > "${T}"/00musl doenvd "${T}"/00musl || die fi diff --git a/www-apache/mod_dnssd/mod_dnssd-0.6.ebuild b/www-apache/mod_dnssd/mod_dnssd-0.6.ebuild deleted file mode 100644 index c2ea0e453eb6..000000000000 --- a/www-apache/mod_dnssd/mod_dnssd-0.6.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_dnssd/mod_dnssd-0.6.ebuild,v 1.3 2014/06/22 18:47:53 maekke Exp $ - -EAPI="2" - -inherit apache-module eutils - -DESCRIPTION="mod_dnssd is an Apache module which adds Zeroconf support via DNS-SD using Avahi" -HOMEPAGE="http://0pointer.de/lennart/projects/mod_dnssd/" -SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="doc" - -DEPEND="net-dns/avahi[dbus]" -RDEPEND="${DEPEND}" - -APACHE2_MOD_CONF="80_${PN}" -APACHE2_MOD_DEFINE="DNSSD" - -need_apache2 - -src_prepare() { - # Respect LDFLAGS and use LIBS properly. - epatch "${FILESDIR}/${P}-ldflags.patch" -} - -src_configure() { - econf --with-apxs=${APXS} --disable-lynx -} - -# Do not use inherited src_compile since it doesn't do what we want -src_compile() { - emake || die "emake failed" -} diff --git a/www-plugins/adobe-flash/Manifest b/www-plugins/adobe-flash/Manifest index a55ad0352722..18f2908f5264 100644 --- a/www-plugins/adobe-flash/Manifest +++ b/www-plugins/adobe-flash/Manifest @@ -1,3 +1,6 @@ DIST adobe-flash-11.2.202.457-debug.i386.tar.gz 7413102 SHA256 2a39b71b988d90abca6e21aaf89bb2cffcc7678414a6a68bb803a86dd0433596 SHA512 18fc3445a538c75eb224f80cbaad2b76384df05cd95a95dfa6b3064d96bf6595e28b0c263df24356c753fff4f98312000100246767b9fded4c432c78f71caf19 WHIRLPOOL bb1f3b827d8012d3ab28a57abf2cabafc997f0616dbaa96d70db489a0d93c04d1b837666586ec965aa6bb61483735369317ae407d2916ea54199b72e922e1cbc DIST adobe-flash-11.2.202.457.i386.tar.gz 6933677 SHA256 6c123f7ef61a8a3ae92ffe75ce635f47718193d8360c191d4076ae60562e3462 SHA512 35879110bbc04c84f600d2c81b2de5216d537de81223474a567bc0ce8cc938f236b83b9f86b0e5852de6548a4bfda756eac23abc08e0ce34997766c3bf4495de WHIRLPOOL 9b09243a3130ba45f7202e1d49c99f1ffb57ad3413294da417fc435c630128198eefbfa304ec04a8c5e286d1c665c961d03dc4ddfa098bb2db1386e5e658de49 DIST adobe-flash-11.2.202.457.x86_64.tar.gz 7246975 SHA256 22fb9acb4876afcdf74b52843a704e3d5096cab86ae92035f703d002c935795a SHA512 04865d812affdb69cb5d42a3766b17b0e279d47953a64e6d424f4b8dd1d8223c726f46f3e0b29ebd445bd06cfb68adad5b6806248bb0668a964c081d99c79ff4 WHIRLPOOL b5242d545f603bea31f06a0c837d491624b769922eca06b3f1902628e1af78b7dea08bc41ed9448d6a009e803a0b5d267179f01dfcbad0bc787adf83c0824ec4 +DIST adobe-flash-11.2.202.460-debug.i386.tar.gz 7415560 SHA256 5bcf0907be776d9879a177385acea073b5507d0cf35a09cec4a049c86447e6b9 SHA512 c6c0ce0332df30754ad0bbd8de1d032d511c9426a9d757ce28080de88f4275cbcad66058746a4e1b5fc45e51ad7ad649e3fa0628831dd4e53ad61fbe27dfd222 WHIRLPOOL 7872fc00f683ffaa8cd16e204b76c23ae15b6cef188dd728e03d550d9e1deadf885a604d18d06b26608ca6097182b777470288024eabf81add9722d8aedd9504 +DIST adobe-flash-11.2.202.460.i386.tar.gz 6933479 SHA256 a11f686f9931727cc8d1f2c9e91294e57f1245618f9f71009835cc3f072bc594 SHA512 33dab18c69f0dbe603bebd0eb03ba3aa49e19fbfbf63dadd092af1f1d4eeaeebfc80f83074f706572cd4cbfce1299eb1fb5ddd5fcd40ac937a7d62ca0a2fce52 WHIRLPOOL fe7379d6ac6ad3f387bc278c4521536dafa3b04d28aaaf09e70f260caa803cc45f4c62283543de66f58cc4cc024a4eb51e850d3f4ccffefabe5c8112d25e845b +DIST adobe-flash-11.2.202.460.x86_64.tar.gz 7247288 SHA256 d9e6d8bb58f37e6d4dda637ed1aaa78edfdc422f1fd50227347fbfaa63875094 SHA512 8d22a785d10f97ea5b53390e89a9b93b181705cf0bf7df55545117f0d819306fc66c3f0d4a36542d6508199a98f335e1fafaf5172c1309a757d672399691bd39 WHIRLPOOL 57e1766cb82990e6e9d7b507dd6fa36f305ec0243bf4c6807f1d9c13aadf21dad35ca16800828ac693a1480ce4f323ef8c019f4d4070bda9fc53475f51f32fe2 diff --git a/www-plugins/adobe-flash/adobe-flash-11.2.202.460.ebuild b/www-plugins/adobe-flash/adobe-flash-11.2.202.460.ebuild new file mode 100644 index 000000000000..8f9cc6a803de --- /dev/null +++ b/www-plugins/adobe-flash/adobe-flash-11.2.202.460.ebuild @@ -0,0 +1,249 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.460.ebuild,v 1.1 2015/05/13 16:08:30 jer Exp $ + +EAPI=5 +inherit nsplugins toolchain-funcs versionator multilib multilib-minimal + +DESCRIPTION="Adobe Flash Player" +HOMEPAGE=" + http://www.adobe.com/products/flashplayer.html + http://get.adobe.com/flashplayer/ +" + +AF_URI="http://fpdownload.macromedia.com/get/flashplayer/pdc" +AF_DB_URI="http://fpdownload.macromedia.com/pub/flashplayer/updaters" +PV_M=$(get_major_version) +AF_32_URI="${AF_URI}/${PV}/install_flash_player_${PV_M}_linux.i386.tar.gz -> ${P}.i386.tar.gz" +AF_64_URI="${AF_URI}/${PV}/install_flash_player_${PV_M}_linux.x86_64.tar.gz -> ${P}.x86_64.tar.gz" +AF_32_DB_URI="${AF_DB_URI}/${PV_M}/flashplayer_${PV_M}_plugin_debug.i386.tar.gz -> ${P}-debug.i386.tar.gz" + +SRC_URI=" + abi_x86_32? ( + !debug? ( ${AF_32_URI} ) + debug? ( ${AF_32_DB_URI} ) + ) + abi_x86_64? ( ${AF_64_URI} ) +" +IUSE="debug kde selinux cpu_flags_x86_sse2" +REQUIRED_USE=" + cpu_flags_x86_sse2 + debug? ( abi_x86_32 ) + || ( abi_x86_64 abi_x86_32 ) +" +SLOT="0" + +KEYWORDS="-* ~amd64 ~x86" +LICENSE="AdobeFlash-11.x" +RESTRICT="strip mirror" + +S="${WORKDIR}" + +NATIVE_DEPS=" + dev-libs/atk + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + kde? ( + dev-qt/qtcore:4 + dev-qt/qtdbus:4 + dev-qt/qtgui:4 + dev-qt/qtsvg:4 + kde-base/kdelibs + x11-libs/libICE + x11-libs/libSM + x11-libs/libXau + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXft + x11-libs/libXpm + ) + media-libs/fontconfig + media-libs/freetype + >=sys-libs/glibc-2.4 + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/libXcursor + x11-libs/libXext + x11-libs/libXrender + x11-libs/libXt + x11-libs/pango +" + +DEPEND=" + amd64? ( abi_x86_32? ( !abi_x86_64? ( www-plugins/nspluginwrapper ) ) ) +" +RDEPEND=" + ${DEPEND} + abi_x86_64? ( ${NATIVE_DEPS} ) + abi_x86_32? ( + amd64? ( + || ( + ( + >=dev-libs/atk-2.10.0[abi_x86_32(-)] + >=x11-libs/cairo-1.12.14-r4[abi_x86_32(-)] + >=x11-libs/gdk-pixbuf-2.30.7[abi_x86_32(-)] + >=x11-libs/gtk+-2.24.23:2[abi_x86_32(-)] + >=x11-libs/pango-1.36.3[abi_x86_32(-)] + ) + app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)] + ) + || ( + ( + >=dev-libs/glib-2.34.3:2[abi_x86_32(-)] + >=dev-libs/nspr-4.10.4[abi_x86_32(-)] + >=dev-libs/nss-3.15.4[abi_x86_32(-)] + ) + app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + ) + || ( + ( + >=media-libs/fontconfig-2.10.92[abi_x86_32(-)] + >=media-libs/freetype-2.5.0.1[abi_x86_32(-)] + >=x11-libs/libX11-1.6.2[abi_x86_32(-)] + >=x11-libs/libXcursor-1.1.14[abi_x86_32(-)] + >=x11-libs/libXext-1.3.2[abi_x86_32(-)] + >=x11-libs/libXrender-0.9.8[abi_x86_32(-)] + >=x11-libs/libXt-1.1.4[abi_x86_32(-)] + ) + app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] + ) + ) + x86? ( ${NATIVE_DEPS} ) + ) + || ( media-fonts/liberation-fonts media-fonts/corefonts ) + selinux? ( sec-policy/selinux-flash ) +" + +# Ignore QA warnings in these closed-source binaries, since we can't fix them: +QA_PREBUILT="usr/*" + +any_cpu_missing_flag() { + local value=${1} + grep '^flags' /proc/cpuinfo | grep -qv "${value}" +} + +pkg_setup() { + unset need_lahf_wrapper + if use abi_x86_64 && any_cpu_missing_flag 'lahf_lm'; then + export need_lahf_wrapper=1 + fi +} + +src_unpack() { + local files=( ${A} ) + + multilib_src_unpack() { + mkdir -p "${BUILD_DIR}" || die + cd "${BUILD_DIR}" || die + + # we need to filter out the other archive(s) + local other_abi + [[ ${ABI} == amd64 ]] && other_abi=i386 || other_abi=x86_64 + unpack ${files[@]//*${other_abi}*/} + } + + multilib_parallel_foreach_abi multilib_src_unpack +} + +src_configure() { :; } + +multilib_src_compile() { + if [[ ${ABI} == amd64 && ${need_lahf_wrapper} ]]; then + # This experimental wrapper, from Maks Verver via bug #268336 should + # emulate the missing lahf instruction affected platforms. + set -- $(tc-getCC) -fPIC -shared -nostdlib -lc \ + -oflashplugin-lahf-fix.so "${FILESDIR}/flashplugin-lahf-fix.c" + echo "${@}" >&2 + "${@}" || die "Compile of flashplugin-lahf-fix.so failed" + fi +} + +multilib_src_install() { + # PLUGINS_DIR comes from nsplugins.eclass + exeinto /usr/$(get_libdir)/${PLUGINS_DIR} + doexe libflashplayer.so + + if [[ ${ABI} == amd64 && ${need_lahf_wrapper} ]]; then + # This experimental wrapper, from Maks Verver via bug #268336 should + # emulate the missing lahf instruction affected platforms. + doexe flashplugin-lahf-fix.so + fi + + if multilib_is_native_abi; then + if use kde; then + local pkglibdir=lib + [[ -d usr/lib64 ]] && pkglibdir=lib64 + + exeinto /usr/$(get_libdir)/kde4 + doexe usr/${pkglibdir}/kde4/kcm_adobe_flash_player.so + insinto /usr/share/kde4/services + doins usr/share/kde4/services/kcm_adobe_flash_player.desktop + else + # No KDE applet, so allow the GTK utility to show up in KDE: + sed -i usr/share/applications/flash-player-properties.desktop \ + -e "/^NotShowIn=KDE;/d" || die "sed of .desktop file failed" + fi + + # The userland 'flash-player-properties' standalone app: + dobin usr/bin/flash-player-properties + + # Icon and .desktop for 'flash-player-properties' + insinto /usr/share + doins -r usr/share/{icons,applications} + dosym ../icons/hicolor/48x48/apps/flash-player-properties.png \ + /usr/share/pixmaps/flash-player-properties.png + fi + + # The magic config file! + insinto "/etc/adobe" + doins "${FILESDIR}/mms.cfg" +} + +unregister_pluginwrapper() { + # TODO: Perhaps parse the output of 'nspluginwrapper -l' + # TODO: However, the 64b flash plugin makes + # TODO: 'nspluginwrapper -l' segfault. + local FLASH_WRAPPER="${ROOT}/usr/lib64/${PLUGINS_DIR}/npwrapper.libflashplayer.so" + if has_version 'www-plugins/nspluginwrapper' && [[ -f ${FLASH_WRAPPER} ]]; then + einfo "Removing 32-bit plugin wrapper" + nspluginwrapper -r "${FLASH_WRAPPER}" + fi +} + +pkg_postinst() { + if use amd64 ; then + if [[ ${need_lahf_wrapper} ]]; then + ewarn "Your processor does not support the 'lahf' instruction which is used" + ewarn "by Adobe's 64-bit flash binary. We have installed a wrapper which" + ewarn "should allow this plugin to run. If you encounter problems, please" + ewarn "adjust your USE flags to install only the 32-bit version and reinstall:" + ewarn " ${CATEGORY}/${PN}[abi_x86_32,-abi_x86_64]" + elog + fi + # needed to clean up upgrades from older installs + if use abi_x86_64 && [[ -n ${REPLACING_VERSIONS} ]]; then + unregister_pluginwrapper + fi + if has_version 'www-plugins/nspluginwrapper'; then + if use abi_x86_32 && ! use abi_x86_64; then + einfo "nspluginwrapper detected: Installing plugin wrapper" + local oldabi="${ABI}" + ABI="x86" + local FLASH_SOURCE="${ROOT}/usr/lib32/${PLUGINS_DIR}/libflashplayer.so" + nspluginwrapper -i "${FLASH_SOURCE}" + ABI="${oldabi}" + fi + elif use abi_x86_32; then + elog "To use the 32-bit flash player in a native 64-bit browser," + elog "you must install www-plugins/nspluginwrapper" + fi + fi +} + +pkg_prerm() { + use amd64 && use abi_x86_32 && ! use abi_x86_64 && \ + unregister_pluginwrapper +} diff --git a/www-servers/tornado/tornado-4.1.0-r1.ebuild b/www-servers/tornado/tornado-4.1.0-r1.ebuild new file mode 100644 index 000000000000..08d1874cc1cd --- /dev/null +++ b/www-servers/tornado/tornado-4.1.0-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/tornado/tornado-4.1.0-r1.ebuild,v 1.2 2015/05/13 17:03:26 idella4 Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_3 python3_4 pypy ) + +inherit distutils-r1 vcs-snapshot + +DESCRIPTION="Tornado is a Python web framework and asynchronous networking library, ... ." +HOMEPAGE="http://www.tornadoweb.org/" +SRC_URI="https://github.com/tornadoweb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples test" + +CDEPEND=" + $(python_gen_cond_dep 'dev-python/pycurl[${PYTHON_USEDEP}]' python2_7) + dev-python/certifi[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/asyncio[${PYTHON_USEDEP}]' 'python3_3') + $(python_gen_cond_dep 'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' python2_7 pypy) + $(python_gen_cond_dep 'dev-python/twisted-names[${PYTHON_USEDEP}]' python2_7) + $(python_gen_cond_dep 'dev-python/twisted-web[${PYTHON_USEDEP}]' python2_7) +" +# dev-python/twisted-* only supports python2_7 currently +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] + ) + test? ( + ${CDEPEND} + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) + ) +" +RDEPEND="${CDEPEND}" + +python_prepare_all() { + local PATCHES=( + "${FILESDIR}"/drop-intersphinx.patch + ) + + distutils-r1_python_prepare_all +} + +python_compile_all() { + use doc && emake -C docs sphinx +} + +python_test() { + "${PYTHON}" -m tornado.test.runtests || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/build/html/. ) + use examples && local EXAMPLES=( demos/. ) + + distutils-r1_python_install_all +}