|
From: <za...@us...> - 2009-03-10 15:05:50
|
Revision: 551
http://libmage.svn.sourceforge.net/libmage/?rev=551&view=rev
Author: zaufi
Date: 2009-03-10 15:05:42 +0000 (Tue, 10 Mar 2009)
Log Message:
-----------
add boost 1.38
Modified Paths:
--------------
gentoo-portage-overlay/trunk/sets/my-kde-4.conf
gentoo-portage-overlay/trunk/sets/my-kdeadmin-4.conf
gentoo-portage-overlay/trunk/sets/my-kdeartwork-4.conf
gentoo-portage-overlay/trunk/sets/my-kdebase-4.conf
gentoo-portage-overlay/trunk/sets/my-kdeedu-4.conf
gentoo-portage-overlay/trunk/sets/my-kdegames-4.conf
gentoo-portage-overlay/trunk/sets/my-kdegraphics-4.conf
gentoo-portage-overlay/trunk/sets/my-kdemultimedia-4.conf
gentoo-portage-overlay/trunk/sets/my-kdenetwork-4.conf
gentoo-portage-overlay/trunk/sets/my-kdepim-4.conf
gentoo-portage-overlay/trunk/sets/my-kdesdk-4.conf
gentoo-portage-overlay/trunk/sets/my-kdetoys-4.conf
gentoo-portage-overlay/trunk/sets/my-kdeutils-4.conf
Added Paths:
-----------
gentoo-portage-overlay/trunk/dev-libs/
gentoo-portage-overlay/trunk/dev-libs/boost/
gentoo-portage-overlay/trunk/dev-libs/boost/boost-1.38.0.ebuild
gentoo-portage-overlay/trunk/dev-libs/boost/files/
gentoo-portage-overlay/trunk/dev-libs/boost/files/boost-1.33.1-gcc41_visit_each.patch
gentoo-portage-overlay/trunk/dev-libs/boost/files/boost-alpha-threads.patch
gentoo-portage-overlay/trunk/dev-libs/boost/files/random-Jamfile
gentoo-portage-overlay/trunk/dev-libs/boost/files/remove_toolset_from_targetname.patch
gentoo-portage-overlay/trunk/dev-util/
gentoo-portage-overlay/trunk/dev-util/boost-build/
gentoo-portage-overlay/trunk/dev-util/boost-build/boost-build-1.38.0.ebuild
Added: gentoo-portage-overlay/trunk/dev-libs/boost/boost-1.38.0.ebuild
===================================================================
--- gentoo-portage-overlay/trunk/dev-libs/boost/boost-1.38.0.ebuild (rev 0)
+++ gentoo-portage-overlay/trunk/dev-libs/boost/boost-1.38.0.ebuild 2009-03-10 15:05:42 UTC (rev 551)
@@ -0,0 +1,292 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.37.0.ebuild,v 1.1 2008/12/16 16:37:27 dev-zero Exp $
+
+EAPI="2"
+
+inherit python flag-o-matic multilib toolchain-funcs versionator check-reqs
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+
+MY_P=${PN}_$(replace_all_version_separators _)
+PATCHSET_VERSION="${PV}-1"
+
+DESCRIPTION="Boost Libraries for C++"
+HOMEPAGE="http://www.boost.org/"
+SRC_URI="mirror://sourceforge/boost/${MY_P}.tar.bz2"
+LICENSE="freedist Boost-1.0"
+SLOT="1.38"
+IUSE="debug doc expat icu mpi tools"
+
+RDEPEND="icu? ( >=dev-libs/icu-3.3 )
+ expat? ( dev-libs/expat )
+ mpi? ( || ( sys-cluster/openmpi sys-cluster/mpich2 ) )
+ sys-libs/zlib
+ virtual/python
+ !<=dev-libs/boost-1.35.0-r2"
+DEPEND="${RDEPEND}
+ dev-util/boost-build:${SLOT}"
+PDEPEND="app-admin/eselect-boost"
+
+S=${WORKDIR}/${MY_P}
+
+# Maintainer Information
+# ToDo:
+# - write a patch to support /dev/urandom on FreeBSD and OSX (see below)
+
+MAJOR_PV=$(replace_all_version_separators _ ${SLOT})
+BJAM="bjam-${MAJOR_PV}"
+
+pkg_setup() {
+ if has test ${FEATURES} ; then
+ CHECKREQS_DISK_BUILD="1024"
+ check_reqs
+
+ ewarn "The tests may take several hours on a recent machine"
+ ewarn "but they will not fail (unless something weird happens ;-)"
+ ewarn "This is because the tests depend on the used compiler/-version"
+ ewarn "and the platform and upstream says that this is normal."
+ ewarn "If you are interested in the results, please take a look at the"
+ ewarn "generated results page:"
+ ewarn " ${ROOT}usr/share/doc/${PF}/status/cs-$(uname).html"
+ ebeep 5
+
+ fi
+}
+
+src_prepare() {
+# EPATCH_SOURCE="${WORKDIR}/patches"
+# EPATCH_SUFFIX="patch"
+# epatch
+
+ epatch "${FILESDIR}/remove_toolset_from_targetname.patch"
+
+ # This enables building the boost.random library with /dev/urandom support
+ if ! use userland_Darwin ; then
+ mkdir -p libs/random/build
+ cp "${FILESDIR}/random-Jamfile" libs/random/build/Jamfile.v2
+ fi
+}
+
+generate_options() {
+ # Maintainer information:
+ # The debug-symbols=none and optimization=none
+ # are not official upstream flags but a Gentoo
+ # specific patch to make sure that all our
+ # CXXFLAGS/LDFLAGS are being respected.
+ # Using optimization=off would for example add
+ # "-O0" and override "-O2" set by the user.
+ # Please take a look at the boost-build ebuild
+ # for more infomration.
+
+ BUILDNAME="gentoorelease"
+ use debug && BUILDNAME="gentoodebug"
+
+ OPTIONS="${BUILDNAME}"
+
+ use icu && OPTIONS="${OPTIONS} -sICU_PATH=/usr"
+ if use expat ; then
+ OPTIONS="${OPTIONS} -sEXPAT_INCLUDE=/usr/include -sEXPAT_LIBPATH=/usr/$(get_libdir)"
+ fi
+
+ if ! use mpi ; then
+ OPTIONS="${OPTIONS} --without-mpi"
+ fi
+
+ OPTIONS="${OPTIONS} --user-config=${S}/user-config.jam --boost-build=/usr/share/boost-build-${MAJOR_PV}"
+}
+
+src_configure() {
+ einfo "Writing new user-config.jam"
+ python_version
+
+ local compiler compilerVersion compilerExecutable mpi
+ if [[ ${CHOST} == *-darwin* ]] ; then
+ compiler=darwin
+ compilerVersion=$(gcc-version)
+ compilerExecutable=$(tc-getCXX)
+ append-ldflags -ldl
+ else
+ compiler=gcc
+ compilerVersion=$(gcc-version)
+ compilerExecutable=$(tc-getCXX)
+ fi
+
+ use mpi && mpi="using mpi ;"
+
+ cat > "${S}/user-config.jam" << __EOF__
+
+variant gentoorelease : release : <optimization>none <debug-symbols>none ;
+variant gentoodebug : debug : <optimization>none <debug-symbols>none ;
+
+using ${compiler} : ${compilerVersion} : ${compilerExecutable} : <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;
+using python : ${PYVER} : /usr : /usr/include/python${PYVER} : /usr/lib/python${PYVER} ;
+
+${mpi}
+
+__EOF__
+
+}
+
+src_compile() {
+
+ NUMJOBS=$(sed -e 's/.*\(\-j[ 0-9]\+\) .*/\1/; s/--jobs=\?/-j/' <<< ${MAKEOPTS})
+
+ generate_options
+
+ elog "Using the following options to build: "
+ elog " ${OPTIONS}"
+
+ export BOOST_ROOT="${S}"
+
+ ${BJAM} ${NUMJOBS} -q \
+ ${OPTIONS} \
+ threading=single,multi link=shared,static runtime-link=shared,static \
+ --prefix="${D}/usr" \
+ --layout=versioned \
+ || die "building boost failed"
+
+ if use tools; then
+ cd "${S}/tools/"
+ ${BJAM} ${NUMJOBS} -q \
+ ${OPTIONS} \
+ --prefix="${D}/usr" \
+ --layout=versioned \
+ || die "building tools failed"
+ fi
+
+}
+
+src_install () {
+
+ generate_options
+
+ export BOOST_ROOT="${S}"
+
+ ${BJAM} -q \
+ ${OPTIONS} \
+ threading=single,multi link=shared,static runtime-link=shared,static \
+ --prefix="${D}/usr" \
+ --includedir="${D}/usr/include" \
+ --libdir="${D}/usr/$(get_libdir)" \
+ --layout=versioned \
+ install || die "install failed for options '${OPTIONS}'"
+
+ # Move the mpi.so to the right place and make sure it's slotted
+ if use mpi; then
+ mkdir -p "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/mpi_${MAJOR_PV}"
+ mv "${D}/usr/$(get_libdir)/mpi.so" "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/mpi_${MAJOR_PV}/"
+ touch "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/mpi_${MAJOR_PV}/__init__.py"
+ fi
+
+ if use doc ; then
+ find libs -iname "test" -or -iname "src" | xargs rm -rf
+ dohtml \
+ -A pdf,txt,cpp \
+ *.{htm,html,png,css} \
+ -r doc more people wiki
+ insinto /usr/share/doc/${PF}/html
+ doins -r libs
+
+ # To avoid broken links
+ insinto /usr/share/doc/${PF}/html
+ doins LICENSE_1_0.txt
+
+ dosym /usr/include/boost /usr/share/doc/${PF}/html/boost
+ fi
+
+ cd "${D}/usr/$(get_libdir)"
+
+ # Remove (unversioned) symlinks
+ # And check for what we remove to catch bugs
+ for f in libboost_*[!$(get_version_component_range 2)].{a,so} ; do
+ if [ ! -h "${f}" ] ; then
+ eerror "Ups, tried to remove a real file instead of a symlink"
+ die "slotting/naming of the libs broken!"
+ fi
+ rm "${f}"
+ done
+
+ # If built with debug enabled, all libraries get a 'd' postfix,
+ # this breaks linking other apps against boost (bug #181972)
+ if use debug ; then
+ for lib in libboost_* ; do
+ dosym ${lib} "/usr/$(get_libdir)/$(sed -e 's/-d\././' -e 's/d\././' <<< ${lib})"
+ done
+ fi
+
+ for lib in libboost_thread-mt-{s-${MAJOR_PV}.a,${MAJOR_PV}.a,${MAJOR_PV}.so} ; do
+ dosym ${lib} "/usr/$(get_libdir)/$(sed -e 's/-mt//' <<< ${lib})"
+ done
+
+ if use tools; then
+ cd "${S}/dist/bin"
+ # Append version postfix to binaries for slotting
+ for b in * ; do
+ newbin "${b}" "${b}-${MAJOR_PV}"
+ done
+
+ cd "${S}/dist"
+ insinto /usr/share
+ doins -r share/boostbook
+ # Append version postfix for slotting
+ mv "${D}/usr/share/boostbook" "${D}/usr/share/boostbook-${MAJOR_PV}"
+ fi
+
+ cd "${S}/status"
+ if [ -f regress.log ] ; then
+ docinto status
+ dohtml *.{html,gif} ../boost.png
+ dodoc regress.log
+ fi
+
+ python_need_rebuild
+}
+
+src_test() {
+ generate_options
+
+ export BOOST_ROOT=${S}
+
+ cd "${S}/tools/regression/build"
+ ${BJAM} -q \
+ ${OPTIONS} \
+ --prefix="${D}/usr" \
+ --layout=versioned \
+ process_jam_log compiler_status \
+ || die "building regression test helpers failed"
+
+ cd "${S}/status"
+
+ # Some of the test-checks seem to rely on regexps
+ export LC_ALL="C"
+
+ # The following is largely taken from tools/regression/run_tests.sh,
+ # but adapted to our needs.
+
+ # Run the tests & write them into a file for postprocessing
+ ${BJAM} \
+ ${OPTIONS} \
+ --dump-tests 2>&1 | tee regress.log
+
+ # Postprocessing
+ cat regress.log | "${S}/tools/regression/build/bin/gcc-$(gcc-version)/${BUILDNAME}/process_jam_log" --v2
+ if test $? != 0 ; then
+ die "Postprocessing the build log failed"
+ fi
+
+ cat > "${S}/status/comment.html" <<- __EOF__
+ <p>Tests are run on a <a href="http://www.gentoo.org">Gentoo</a> system.</p>
+__EOF__
+
+ # Generate the build log html summary page
+ "${S}/tools/regression/build/bin/gcc-$(gcc-version)/${BUILDNAME}/compiler_status" --v2 \
+ --comment "${S}/status/comment.html" "${S}" \
+ cs-$(uname).html cs-$(uname)-links.html
+ if test $? != 0 ; then
+ die "Generating the build log html summary page failed"
+ fi
+
+ # And do some cosmetic fixes :)
+ sed -i -e 's|http://www.boost.org/boost.png|boost.png|' *.html
+}
Added: gentoo-portage-overlay/trunk/dev-libs/boost/files/boost-1.33.1-gcc41_visit_each.patch
===================================================================
--- gentoo-portage-overlay/trunk/dev-libs/boost/files/boost-1.33.1-gcc41_visit_each.patch (rev 0)
+++ gentoo-portage-overlay/trunk/dev-libs/boost/files/boost-1.33.1-gcc41_visit_each.patch 2009-03-10 15:05:42 UTC (rev 551)
@@ -0,0 +1,10 @@
+--- boost/bind.hpp.orig 2006-10-05 21:09:32.000000000 +0200
++++ boost/bind.hpp 2006-10-05 21:10:10.000000000 +0200
+@@ -27,6 +27,7 @@
+ #include <boost/type.hpp>
+ #include <boost/bind/arg.hpp>
+ #include <boost/detail/workaround.hpp>
++#include <boost/visit_each.hpp>
+
+ // Borland-specific bug, visit_each() silently fails to produce code
+
Added: gentoo-portage-overlay/trunk/dev-libs/boost/files/boost-alpha-threads.patch
===================================================================
--- gentoo-portage-overlay/trunk/dev-libs/boost/files/boost-alpha-threads.patch (rev 0)
+++ gentoo-portage-overlay/trunk/dev-libs/boost/files/boost-alpha-threads.patch 2009-03-10 15:05:42 UTC (rev 551)
@@ -0,0 +1,24 @@
+diff -urN boost_1_33_0-pristine/tools/build/v1/gcc-tools.jam boost_1_33_0/tools/build/v1/gcc-tools.jam
+--- boost_1_33_0-pristine/tools/build/v1/gcc-tools.jam 2005-09-12 00:31:23.000000000 -0400
++++ boost_1_33_0/tools/build/v1/gcc-tools.jam 2005-09-12 00:32:45.000000000 -0400
+@@ -146,7 +146,7 @@
+ }
+ case * :
+ {
+- flags gcc CFLAGS <threading>multi : -pthread ;
++ flags gcc CFLAGS <threading>multi : -D_REENTRANT -pthread ;
+ flags gcc LINKFLAGS <threading>multi : -pthread ;
+ flags gcc FINDLIBS <threading>multi : rt ;
+ }
+diff -urN boost_1_33_0-pristine/tools/build/v2/tools/gcc.jam boost_1_33_0/tools/build/v2/tools/gcc.jam
+--- boost_1_33_0-pristine/tools/build/v2/tools/gcc.jam 2005-09-12 00:31:23.000000000 -0400
++++ boost_1_33_0/tools/build/v2/tools/gcc.jam 2005-09-12 00:33:04.000000000 -0400
+@@ -368,7 +368,7 @@
+ }
+ case * :
+ {
+- flags gcc OPTIONS <threading>multi : -pthread ;
++ flags gcc OPTIONS <threading>multi : -D_REENTRANT -pthread ;
+ flags gcc FINDLIBS-SA <threading>multi : rt ;
+ }
+ }
Added: gentoo-portage-overlay/trunk/dev-libs/boost/files/random-Jamfile
===================================================================
--- gentoo-portage-overlay/trunk/dev-libs/boost/files/random-Jamfile (rev 0)
+++ gentoo-portage-overlay/trunk/dev-libs/boost/files/random-Jamfile 2009-03-10 15:05:42 UTC (rev 551)
@@ -0,0 +1,15 @@
+# Copyright (c) 2006 Tiziano Mueller
+#
+# Use, modification and distribution of the file is subject to the
+# Boost Software License, Version 1.0.
+# (See at http://www.boost.org/LICENSE_1_0.txt)
+
+
+project boost/random
+ : source-location ../ ;
+
+SOURCES = random_device ;
+
+lib boost_random
+ : $(SOURCES).cpp
+ : <link>shared:<define>BOOST_RANDOM_DYN_LINK=1 ;
Added: gentoo-portage-overlay/trunk/dev-libs/boost/files/remove_toolset_from_targetname.patch
===================================================================
--- gentoo-portage-overlay/trunk/dev-libs/boost/files/remove_toolset_from_targetname.patch (rev 0)
+++ gentoo-portage-overlay/trunk/dev-libs/boost/files/remove_toolset_from_targetname.patch 2009-03-10 15:05:42 UTC (rev 551)
@@ -0,0 +1,11 @@
+--- boost_1_36_0/Jamroot.orig 2008-11-14 16:36:10.000000000 +0100
++++ boost_1_36_0/Jamroot 2008-11-14 16:36:54.000000000 +0100
+@@ -311,7 +311,7 @@
+ if $(layout) = versioned
+ {
+ local result = [ common.format-name
+- <base> <toolset> <threading> <runtime> -$(BOOST_VERSION_TAG)
++ <base> <threading> <runtime> -$(BOOST_VERSION_TAG)
+ -$(BUILD_ID)
+ : $(name) : $(type) : $(property-set) ] ;
+
Added: gentoo-portage-overlay/trunk/dev-util/boost-build/boost-build-1.38.0.ebuild
===================================================================
--- gentoo-portage-overlay/trunk/dev-util/boost-build/boost-build-1.38.0.ebuild (rev 0)
+++ gentoo-portage-overlay/trunk/dev-util/boost-build/boost-build-1.38.0.ebuild 2009-03-10 15:05:42 UTC (rev 551)
@@ -0,0 +1,104 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.37.0.ebuild,v 1.1 2008/12/16 15:44:42 dev-zero Exp $
+
+EAPI="2"
+
+inherit flag-o-matic toolchain-funcs versionator
+
+MY_PV=$(replace_all_version_separators _)
+MAJOR_PV="$(replace_all_version_separators _ $(get_version_component_range 1-2))"
+
+DESCRIPTION="A system for large project software construction, which is simple to use and powerful."
+HOMEPAGE="http://www.boost.org/tools/build/v2/index.html"
+SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
+LICENSE="Boost-1.0"
+SLOT="1.38"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE="examples python"
+
+DEPEND="!<dev-libs/boost-1.34.0
+ !<=dev-util/boost-build-1.35.0-r1
+ python? ( dev-lang/python )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/boost_${MY_PV}/tools"
+
+src_unpack() {
+ tar xjpf "${DISTDIR}/${A}" boost_${MY_PV}/tools/{jam,build/v2}
+}
+
+src_prepare() {
+ # Remove stripping option
+ cd "${S}/jam/src"
+ sed -i -e 's|-s\b||' \
+ build.jam || die "sed failed"
+
+ # Force regeneration
+ rm jambase.c
+
+ # This patch allows us to fully control optimization
+ # and stripping flags when bjam is used as build-system
+ # We simply extend the optimization and debug-symbols feature
+ # with empty dummies called 'none'
+ cd "${S}/build/v2"
+ sed -i \
+ -e 's/\(off speed space\)/\1 none/' \
+ -e 's/\(debug-symbols : on off\)/\1 none/' \
+ tools/builtin.jam || die "sed failed"
+}
+
+src_compile() {
+ cd jam/src
+ local toolset
+
+ if [[ ${CHOST} == *-darwin* ]] ; then
+ toolset=darwin
+ else
+ # Using boost's generic toolset here, which respects CC and CFLAGS
+ toolset=cc
+ fi
+
+ append-flags -fno-strict-aliasing
+
+ # For slotting
+ sed -i \
+ -e "s|/usr/share/boost-build|/usr/share/boost-build-${MAJOR_PV}|" \
+ Jambase || die "sed failed"
+
+ # The build.jam file for building bjam using a bootstrapped jam0 ignores
+ # the LDFLAGS env var (bug #209794). We have now two options:
+ # a) change the cc-target definition in build.jam to include separate compile
+ # and link targets to make it use the LDFLAGS var, or
+ # b) a simple dirty workaround by injecting the LDFLAGS in the LIBS env var
+ # (which should not be set by us).
+ if [[ -z "${LDFLAGS}" ]] ; then
+ CC=$(tc-getCC) ./build.sh ${toolset} $(use_with python) \
+ || die "building bjam failed"
+ else
+ LIBS=${LDFLAGS} CC=$(tc-getCC) ./build.sh ${toolset} \
+ $(use_with python) || die "building bjam failed"
+ fi
+}
+
+src_install() {
+ newbin jam/src/bin.*/bjam bjam-${MAJOR_PV}
+
+ cd "${S}/build/v2"
+ insinto /usr/share/boost-build-${MAJOR_PV}
+ doins -r boost-build.jam bootstrap.jam build-system.jam site-config.jam user-config.jam \
+ build kernel options tools util || die
+
+ dodoc doc/userman.pdf changes.txt hacking.txt release_procedure.txt \
+ notes/build_dir_option.txt notes/relative_source_paths.txt
+
+ if use examples ; then
+ insinto /usr/share/doc/${PF}
+ doins -r example
+ fi
+}
+
+src_test() {
+ cd jam/test
+ ./test.sh || die "tests failed"
+}
Modified: gentoo-portage-overlay/trunk/sets/my-kde-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kde-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kde-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -10,4 +10,4 @@
* my-kdetoys-4
* my-kdeutils-4
-?: kde-base/kate:4.1
+?: kde-base/kate:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdeadmin-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdeadmin-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdeadmin-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,4 +1,4 @@
-?: kde-base/kcron:4.1
-?: kde-base/knetworkconf:4.1
-?: kde-base/ksystemlog:4.1
-?: kde-base/kuser:4.1
+?: kde-base/kcron:4.2
+?: kde-base/knetworkconf:4.2
+?: kde-base/ksystemlog:4.2
+?: kde-base/kuser:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdeartwork-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdeartwork-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdeartwork-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,9 +1,9 @@
-#?: kde-base/kdeartwork-colorschemes:4.1
-?: kde-base/kdeartwork-emoticons:4.1
-?: kde-base/kdeartwork-iconthemes:4.1
-?: kde-base/kdeartwork-kscreensaver:4.1
-#?: kde-base/kdeartwork-kworldclock:4.1
-#?: kde-base/kdeartwork-sounds:4.1
-#?: kde-base/kdeartwork-styles:4.1
-#?: kde-base/kdeartwork-wallpapers:4.1
-#?: kde-base/kdeartwork-icewm-themes:4.1
+#?: kde-base/kdeartwork-colorschemes:4.2
+?: kde-base/kdeartwork-emoticons:4.2
+?: kde-base/kdeartwork-iconthemes:4.2
+#?: kde-base/kdeartwork-kscreensaver:4.2
+#?: kde-base/kdeartwork-kworldclock:4.2
+#?: kde-base/kdeartwork-sounds:4.2
+#?: kde-base/kdeartwork-styles:4.2
+#?: kde-base/kdeartwork-wallpapers:4.2
+#?: kde-base/kdeartwork-icewm-themes:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdebase-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdebase-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdebase-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,46 +1,46 @@
-?: kde-base/dolphin:4.1
-?: kde-base/drkonqi:4.1
-?: kde-base/kappfinder:4.1
-?: kde-base/kcheckpass:4.1
-?: kde-base/kcmshell:4.1
-?: kde-base/kcontrol:4.1
-?: kde-base/kde-menu:4.1
-?: kde-base/kde-menu-icons:4.1
-?: kde-base/kdebugdialog:4.1
-?: kde-base/kdebase-cursors:4.1
-?: kde-base/kdebase-startkde:4.1
-?: kde-base/kdepasswd:4.1
-?: kde-base/kdesu:4.1
-?: kde-base/kdialog:4.1
-?: kde-base/kdm:4.1
-?: kde-base/keditbookmarks:4.1
-?: kde-base/kfile:4.1
-#?: kde-base/kfind:4.1
-?: kde-base/khelpcenter:4.1
-?: kde-base/khotkeys:4.1
-?: kde-base/kinfocenter:4.1
-?: kde-base/kiconfinder:4.1
-?: kde-base/kioclient:4.1
-?: kde-base/klipper:4.1
-?: kde-base/kmenuedit:4.1
-?: kde-base/kmimetypefinder:4.1
-?: kde-base/knetattach:4.1
-?: kde-base/knewstuff:4.1
-?: kde-base/konqueror:4.1
-?: kde-base/kpasswdserver:4.1
-?: kde-base/kquitapp:4.1
-?: kde-base/kscreensaver:4.1
-?: kde-base/kstart:4.1
-?: kde-base/ksysguard:4.1
-?: kde-base/ksystraycmd:4.1
-?: kde-base/ktimezoned:4.1
-?: kde-base/ktraderclient:4.1
-?: kde-base/kuiserver:4.1
-?: kde-base/konsole:4.1
-?: kde-base/kurifilter-plugins:4.1
-?: kde-base/kwrite:4.1
-?: kde-base/nsplugins:4.1
-?: kde-base/phonon-xine:4.1
-?: kde-base/renamedlg-plugins:4.1
-?: kde-base/solid-hardware:4.1
-?: kde-base/soliduiserver:4.1
+?: kde-base/dolphin:4.2
+?: kde-base/drkonqi:4.2
+?: kde-base/kappfinder:4.2
+?: kde-base/kcheckpass:4.2
+?: kde-base/kcmshell:4.2
+?: kde-base/kcontrol:4.2
+?: kde-base/kde-menu:4.2
+?: kde-base/kde-menu-icons:4.2
+?: kde-base/kdebugdialog:4.2
+?: kde-base/kdebase-cursors:4.2
+?: kde-base/kdebase-startkde:4.2
+?: kde-base/kdepasswd:4.2
+?: kde-base/kdesu:4.2
+?: kde-base/kdialog:4.2
+?: kde-base/kdm:4.2
+?: kde-base/keditbookmarks:4.2
+?: kde-base/kfile:4.2
+#?: kde-base/kfind:4.2
+?: kde-base/khelpcenter:4.2
+?: kde-base/khotkeys:4.2
+?: kde-base/kinfocenter:4.2
+?: kde-base/kiconfinder:4.2
+?: kde-base/kioclient:4.2
+?: kde-base/klipper:4.2
+?: kde-base/kmenuedit:4.2
+?: kde-base/kmimetypefinder:4.2
+?: kde-base/knetattach:4.2
+?: kde-base/knewstuff:4.2
+?: kde-base/konqueror:4.2
+?: kde-base/kpasswdserver:4.2
+?: kde-base/kquitapp:4.2
+?: kde-base/kscreensaver:4.2
+?: kde-base/kstart:4.2
+?: kde-base/ksysguard:4.2
+?: kde-base/ksystraycmd:4.2
+?: kde-base/ktimezoned:4.2
+?: kde-base/ktraderclient:4.2
+?: kde-base/kuiserver:4.2
+?: kde-base/konsole:4.2
+?: kde-base/kurifilter-plugins:4.2
+?: kde-base/kwrite:4.2
+?: kde-base/nsplugins:4.2
+#?: kde-base/phonon-xine:4.2
+?: kde-base/renamedlg-plugins:4.2
+?: kde-base/solid-hardware:4.2
+?: kde-base/soliduiserver:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdeedu-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdeedu-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdeedu-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,20 +1,20 @@
-#?: kde-base/blinken:4.1
-#?: kde-base/kalgebra:4.1
-#?: kde-base/kalzium:4.1
-#?: kde-base/kanagram:4.1
-#?: kde-base/kbruch:4.1
-#?: kde-base/kgeography:4.1
-#?: kde-base/khangman:4.1
-#?: kde-base/kig:4.1
-#?: kde-base/kiten:4.1
-#?: kde-base/klettres:4.1
-#?: kde-base/kmplot:4.1
-#?: kde-base/kpercentage:4.1
-#?: kde-base/kstars:4.1
-?: kde-base/ktouch:4.1
-#?: kde-base/kturtle:4.1
-#?: kde-base/kwordquiz:4.1
-#?: kde-base/libkdeedu:4.1
-#?: kde-base/marble:4.1
-#?: kde-base/parley:4.1
-#?: kde-base/step:4.1
+#?: kde-base/blinken:4.2
+#?: kde-base/kalgebra:4.2
+#?: kde-base/kalzium:4.2
+#?: kde-base/kanagram:4.2
+#?: kde-base/kbruch:4.2
+#?: kde-base/kgeography:4.2
+#?: kde-base/khangman:4.2
+#?: kde-base/kig:4.2
+#?: kde-base/kiten:4.2
+#?: kde-base/klettres:4.2
+#?: kde-base/kmplot:4.2
+#?: kde-base/kpercentage:4.2
+#?: kde-base/kstars:4.2
+?: kde-base/ktouch:4.2
+#?: kde-base/kturtle:4.2
+#?: kde-base/kwordquiz:4.2
+#?: kde-base/libkdeedu:4.2
+#?: kde-base/marble:4.2
+#?: kde-base/parley:4.2
+#?: kde-base/step:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdegames-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdegames-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdegames-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,31 +1,31 @@
-#?: kde-base/bovo:4.1
-#?: kde-base/katomic:4.1
-#?: kde-base/kbattleship:4.1
-#?: kde-base/kblackbox:4.1
-#?: kde-base/kblocks:4.1
-#?: kde-base/kbounce:4.1
-#?: kde-base/kbreakout:4.1
-#?: kde-base/kdiamond:4.1
-#?: kde-base/kfourinline:4.1
-#?: kde-base/kgoldrunner:4.1
-#?: kde-base/kiriki:4.1
-#?: kde-base/kjumpingcube:4.1
-#?: kde-base/klines:4.1
-#?: kde-base/kmahjongg:4.1
-#?: kde-base/kmines:4.1
-?: kde-base/knetwalk:4.1
-#?: kde-base/kolf:4.1
-#?: kde-base/kollision:4.1
-#?: kde-base/konquest:4.1
-#?: kde-base/kpat:4.1
-#?: kde-base/kreversi:4.1
-#?: kde-base/ksame:4.1
-?: kde-base/kshisen:4.1
-#?: kde-base/ksirk:4.1
-#?: kde-base/kspaceduel:4.1
-#?: kde-base/ksquares:4.1
-#?: kde-base/ktuberling:4.1
-#?: kde-base/kubrick:4.1
-#?: kde-base/libkdegames:4.1
-#?: kde-base/libkmahjongg:4.1
-#?: kde-base/lskat:4.1
+#?: kde-base/bovo:4.2
+#?: kde-base/katomic:4.2
+#?: kde-base/kbattleship:4.2
+#?: kde-base/kblackbox:4.2
+#?: kde-base/kblocks:4.2
+#?: kde-base/kbounce:4.2
+#?: kde-base/kbreakout:4.2
+#?: kde-base/kdiamond:4.2
+#?: kde-base/kfourinline:4.2
+#?: kde-base/kgoldrunner:4.2
+#?: kde-base/kiriki:4.2
+#?: kde-base/kjumpingcube:4.2
+#?: kde-base/klines:4.2
+#?: kde-base/kmahjongg:4.2
+#?: kde-base/kmines:4.2
+?: kde-base/knetwalk:4.2
+#?: kde-base/kolf:4.2
+#?: kde-base/kollision:4.2
+#?: kde-base/konquest:4.2
+#?: kde-base/kpat:4.2
+#?: kde-base/kreversi:4.2
+#?: kde-base/ksame:4.2
+?: kde-base/kshisen:4.2
+#?: kde-base/ksirk:4.2
+#?: kde-base/kspaceduel:4.2
+#?: kde-base/ksquares:4.2
+#?: kde-base/ktuberling:4.2
+#?: kde-base/kubrick:4.2
+#?: kde-base/libkdegames:4.2
+#?: kde-base/libkmahjongg:4.2
+#?: kde-base/lskat:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdegraphics-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdegraphics-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdegraphics-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,14 +1,14 @@
-#?: kde-base/gwenview:4.1
-?: kde-base/kamera:4.1
-?: kde-base/kcolorchooser:4.1
-?: kde-base/kgamma:4.1
-#?: kde-base/kolourpaint:4.1
-#?: kde-base/kruler:4.1
-?: kde-base/ksnapshot:4.1
-#?: kde-base/libkdcraw:4.1
-#?: kde-base/libkexiv2:4.1
-#?: kde-base/libkipi:4.1
-#?: kde-base/libksane:4.1
-#?: kde-base/okular:4.1
-?: kde-base/svgpart:4.1
-?: kde-base/kdegraphics-strigi-analyzer:4.1
+#?: kde-base/gwenview:4.2
+?: kde-base/kamera:4.2
+?: kde-base/kcolorchooser:4.2
+?: kde-base/kgamma:4.2
+#?: kde-base/kolourpaint:4.2
+#?: kde-base/kruler:4.2
+?: kde-base/ksnapshot:4.2
+#?: kde-base/libkdcraw:4.2
+#?: kde-base/libkexiv2:4.2
+#?: kde-base/libkipi:4.2
+#?: kde-base/libksane:4.2
+#?: kde-base/okular:4.2
+?: kde-base/svgpart:4.2
+?: kde-base/kdegraphics-strigi-analyzer:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdemultimedia-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdemultimedia-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdemultimedia-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,7 +1,7 @@
-#?: kde-base/dragonplayer:4.1
-#?: kde-base/juk:4.1
-?: kde-base/kdemultimedia-kioslaves:4.1
-?: kde-base/kmix:4.1
-#?: kde-base/kscd:4.1
-#?: kde-base/libkcddb:4.1
-#?: kde-base/libkcompactdisc:4.1
+#?: kde-base/dragonplayer:4.2
+#?: kde-base/juk:4.2
+?: kde-base/kdemultimedia-kioslaves:4.2
+?: kde-base/kmix:4.2
+#?: kde-base/kscd:4.2
+#?: kde-base/libkcddb:4.2
+#?: kde-base/libkcompactdisc:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdenetwork-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdenetwork-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdenetwork-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,8 +1,8 @@
-?: kde-base/kdenetwork-filesharing:4.1
-?: kde-base/kdnssd:4.1
-?: kde-base/kget:4.1
-#?: kde-base/knewsticker:4.1
-?: kde-base/kopete:4.1
-#?: kde-base/kppp:4.1
-#?: kde-base/krdc:4.1
-#?: kde-base/krfb:4.1
+?: kde-base/kdenetwork-filesharing:4.2
+?: kde-base/kdnssd:4.2
+?: kde-base/kget:4.2
+#?: kde-base/knewsticker:4.2
+?: kde-base/kopete:4.2
+#?: kde-base/kppp:4.2
+#?: kde-base/krdc:4.2
+#?: kde-base/krfb:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdepim-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdepim-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdepim-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,28 +1,28 @@
-?: kde-base/akonadi:4.1
-?: kde-base/akregator:4.1
-?: kde-base/kaddressbook:4.1
-?: kde-base/kalarm:4.1
-?: kde-base/kdemaildir:4.1
-?: kde-base/kdepim-icons:4.1
-?: kde-base/kdepim-kresources:4.1
-?: kde-base/kdepim-strigi-analyzer:4.1
-?: kde-base/kdepim-wizards:4.1
-#?: kde-base/kitchensync:4.1
-#?: kde-base/kjots:4.1
-?: kde-base/kleopatra:4.1
-?: kde-base/kmail:4.1
-#?: kde-base/kmailcvt:4.1
-?: kde-base/knode:4.1
-?: kde-base/knotes:4.1
-?: kde-base/kode:4.1
-?: kde-base/kontact:4.1
-?: kde-base/kontactinterfaces:4.1
-?: kde-base/korganizer:4.1
-?: kde-base/ktimetracker:4.1
-#?: kde-base/ktnef:4.1
-?: kde-base/libkdepim:4.1
-?: kde-base/libkholidays:4.1
-?: kde-base/libkleo:4.1
-?: kde-base/libkpgp:4.1
-?: kde-base/libksieve:4.1
-?: kde-base/mimelib:4.1
+?: kde-base/akonadi:4.2
+?: kde-base/akregator:4.2
+?: kde-base/kaddressbook:4.2
+?: kde-base/kalarm:4.2
+?: kde-base/kdemaildir:4.2
+?: kde-base/kdepim-icons:4.2
+?: kde-base/kdepim-kresources:4.2
+?: kde-base/kdepim-strigi-analyzer:4.2
+?: kde-base/kdepim-wizards:4.2
+#?: kde-base/kitchensync:4.2
+#?: kde-base/kjots:4.2
+?: kde-base/kleopatra:4.2
+?: kde-base/kmail:4.2
+#?: kde-base/kmailcvt:4.2
+?: kde-base/knode:4.2
+?: kde-base/knotes:4.2
+?: kde-base/kode:4.2
+?: kde-base/kontact:4.2
+?: kde-base/kontactinterfaces:4.2
+?: kde-base/korganizer:4.2
+?: kde-base/ktimetracker:4.2
+#?: kde-base/ktnef:4.2
+?: kde-base/libkdepim:4.2
+?: kde-base/libkholidays:4.2
+?: kde-base/libkleo:4.2
+?: kde-base/libkpgp:4.2
+?: kde-base/libksieve:4.2
+?: kde-base/mimelib:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdesdk-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdesdk-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdesdk-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,15 +1,15 @@
-#?: kde-base/cervisia:4.1
-#?: kde-base/kapptemplate:4.1
-?: kde-base/kate:4.1
-#?: kde-base/kbugbuster:4.1
-#?: kde-base/kcachegrind:4.1
-?: kde-base/kdeaccounts-plugin:4.1
-?: kde-base/kdesdk-kioslaves:4.1
-#?: kde-base/kdesdk-misc:4.1
-#?: kde-base/kdesdk-scripts:4.1
-?: kde-base/kdesdk-strigi-analyzer:4.1
-?: kde-base/kompare:4.1
-?: kde-base/kstartperf:4.1
-#?: kde-base/kuiviewer:4.1
-?: kde-base/lokalize:4.1
-?: kde-base/umbrello:4.1
+#?: kde-base/cervisia:4.2
+#?: kde-base/kapptemplate:4.2
+?: kde-base/kate:4.2
+#?: kde-base/kbugbuster:4.2
+#?: kde-base/kcachegrind:4.2
+?: kde-base/kdeaccounts-plugin:4.2
+?: kde-base/kdesdk-kioslaves:4.2
+#?: kde-base/kdesdk-misc:4.2
+#?: kde-base/kdesdk-scripts:4.2
+?: kde-base/kdesdk-strigi-analyzer:4.2
+?: kde-base/kompare:4.2
+?: kde-base/kstartperf:4.2
+#?: kde-base/kuiviewer:4.2
+?: kde-base/lokalize:4.2
+?: kde-base/umbrello:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdetoys-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdetoys-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdetoys-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,4 +1,4 @@
-#?: kde-base/amor:4.1
-#?: kde-base/kteatime:4.1
-#?: kde-base/ktux:4.1
-#?: kde-base/kweather:4.1
+#?: kde-base/amor:4.2
+#?: kde-base/kteatime:4.2
+#?: kde-base/ktux:4.2
+#?: kde-base/kweather:4.2
Modified: gentoo-portage-overlay/trunk/sets/my-kdeutils-4.conf
===================================================================
--- gentoo-portage-overlay/trunk/sets/my-kdeutils-4.conf 2009-02-27 00:55:33 UTC (rev 550)
+++ gentoo-portage-overlay/trunk/sets/my-kdeutils-4.conf 2009-03-10 15:05:42 UTC (rev 551)
@@ -1,12 +1,12 @@
-?: kde-base/ark:4.1
-?: kde-base/kcalc:4.1
-?: kde-base/kcharselect:4.1
-?: kde-base/kdessh:4.1
-#?: kde-base/kdf:4.1
-?: kde-base/kgpg:4.1
-#?: kde-base/kjots:4.1
-#?: kde-base/ktimer:4.1
-?: kde-base/kwallet:4.1
-?: kde-base/superkaramba:4.1
-?: kde-base/sweeper:4.1
-?: kde-base/okteta:4.1
+?: kde-base/ark:4.2
+?: kde-base/kcalc:4.2
+?: kde-base/kcharselect:4.2
+?: kde-base/kdessh:4.2
+#?: kde-base/kdf:4.2
+?: kde-base/kgpg:4.2
+#?: kde-base/kjots:4.2
+#?: kde-base/ktimer:4.2
+?: kde-base/kwallet:4.2
+?: kde-base/superkaramba:4.2
+?: kde-base/sweeper:4.2
+?: kde-base/okteta:4.2
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|