diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-10-12 13:28:03 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-10-12 13:28:03 +0000 |
commit | f6a29cb43c7bafd0c042a1686b5505ae595ae754 (patch) | |
tree | e77f33e379fe26f19bd019041ab84144df1b5460 | |
parent | Clock skew fix for AMD64 X2, and update to Linux 2.6.13.4 (diff) | |
download | gentoo-2-f6a29cb43c7bafd0c042a1686b5505ae595ae754.tar.gz gentoo-2-f6a29cb43c7bafd0c042a1686b5505ae595ae754.tar.bz2 gentoo-2-f6a29cb43c7bafd0c042a1686b5505ae595ae754.zip |
New version.
(Portage version: 2.0.51.22-r3)
28 files changed, 548 insertions, 8 deletions
diff --git a/kde-base/kdeartwork/ChangeLog b/kde-base/kdeartwork/ChangeLog index 082030f3ef1d..4565b4b2a3f0 100644 --- a/kde-base/kdeartwork/ChangeLog +++ b/kde-base/kdeartwork/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for kde-base/kdeartwork # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeartwork/ChangeLog,v 1.133 2005/10/06 23:20:47 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeartwork/ChangeLog,v 1.134 2005/10/12 13:23:24 greg_g Exp $ + +*kdeartwork-3.4.3 (12 Oct 2005) + + 12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> + +files/kdeartwork-3.4.3-configure.patch, + +files/kdeartwork-3.4.3-kfiresaver.patch, +kdeartwork-3.4.3.ebuild: + New version. 06 Oct 2005; Hardave Riar <hardave@gentoo.org> kdeartwork-3.4.2.ebuild: Keyworded ~mips. diff --git a/kde-base/kdeartwork/files/digest-kdeartwork-3.4.3 b/kde-base/kdeartwork/files/digest-kdeartwork-3.4.3 new file mode 100644 index 000000000000..e62cea27e0c2 --- /dev/null +++ b/kde-base/kdeartwork/files/digest-kdeartwork-3.4.3 @@ -0,0 +1 @@ +MD5 a571991c6e21321177febafadb61efaa kdeartwork-3.4.3.tar.bz2 18022458 diff --git a/kde-base/kdeartwork/files/kdeartwork-3.4.3-configure.patch b/kde-base/kdeartwork/files/kdeartwork-3.4.3-configure.patch new file mode 100644 index 000000000000..567431d69d75 --- /dev/null +++ b/kde-base/kdeartwork/files/kdeartwork-3.4.3-configure.patch @@ -0,0 +1,140 @@ +diff -Nur kdeartwork-3.4.3.orig/kscreensaver/configure.in.in kdeartwork-3.4.3/kscreensaver/configure.in.in +--- kdeartwork-3.4.3.orig/kscreensaver/configure.in.in 2005-10-06 08:12:25.000000000 +0200 ++++ kdeartwork-3.4.3/kscreensaver/configure.in.in 2005-10-08 10:02:25.000000000 +0200 +@@ -37,32 +37,41 @@ + AM_CONDITIONAL(COMPILE_ARTS_KSAVERS, test x$build_arts = xyes) + AM_CONDITIONAL(COMPILE_ARTS_GL_KSAVERS, test x$have_gl = xyes && test x$ac_cv_kde_qt_has_opengl = xyes && test x$build_arts = xyes) + +-LIBART= ++AC_ARG_WITH(libart, ++ [AC_HELP_STRING(--with-libart, ++ [enable support for libart @<:@default=check@:>@])], ++ [], with_libart=check) + +-KDE_FIND_PATH(libart2-config, LIBART_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [ +- AC_MSG_WARN([Could not find libart anywhere, check http://www.levien.com/libart/]) +-]) +- +-if test -n "$LIBART_CONFIG"; then +- vers=`$LIBART_CONFIG --version 2>/dev/null | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` +- if test -n "$vers" && test "$vers" -ge 2003008 +- then +- LIBART_LIBS="`$LIBART_CONFIG --libs`" +- LIBART_RPATH= +- for args in $LIBART_LIBS; do ++LIBART= ++if test "x$with_libart" != xno; then ++ KDE_FIND_PATH(libart2-config, LIBART_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [ ++ AC_MSG_WARN([Could not find libart anywhere, check http://www.levien.com/libart/]) ++ ]) ++ ++ if test -n "$LIBART_CONFIG"; then ++ vers=`$LIBART_CONFIG --version 2>/dev/null | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` ++ if test -n "$vers" && test "$vers" -ge 2003008; then ++ LIBART_LIBS="`$LIBART_CONFIG --libs`" ++ LIBART_RPATH= ++ for args in $LIBART_LIBS; do + case $args in + -L*) + LIBART_RPATH="$LIBART_RPATH $args" + ;; + esac +- done +- LIBART_RPATH=`echo $LIBART_RPATH | sed -e "s/-L/-R/g"` +- LIBART_CFLAGS="`$LIBART_CONFIG --cflags`" +- LIBART=yes +- +- AC_DEFINE_UNQUOTED(HAVE_LIBART, 1, [Defines if your system has the libart library]) +- else +- AC_MSG_WARN([You need at least libart 2.3.8]) ++ done ++ LIBART_RPATH=`echo $LIBART_RPATH | sed -e "s/-L/-R/g"` ++ LIBART_CFLAGS="`$LIBART_CONFIG --cflags`" ++ LIBART=yes ++ ++ AC_DEFINE_UNQUOTED(HAVE_LIBART, 1, [Defines if your system has the libart library]) ++ else ++ AC_MSG_WARN([You need at least libart 2.3.8]) ++ fi ++ fi ++ ++ if test "x$with_libart" != xcheck && test -z "$LIBART"; then ++ AC_MSG_ERROR([--with-libart was given, but test for libart failed]) + fi + fi + +diff -Nur kdeartwork-3.4.3.orig/kscreensaver/kxsconfig/configure.in.bot kdeartwork-3.4.3/kscreensaver/kxsconfig/configure.in.bot +--- kdeartwork-3.4.3.orig/kscreensaver/kxsconfig/configure.in.bot 2005-10-05 15:11:48.000000000 +0200 ++++ kdeartwork-3.4.3/kscreensaver/kxsconfig/configure.in.bot 2005-10-08 10:02:25.000000000 +0200 +@@ -1,4 +1,4 @@ +-if test "$XSCREENSAVER" = "NO"; then ++if test "x$with_xscreensaver" = xcheck && test "$XSCREENSAVER" = "NO"; then + echo "" + echo "xscreensaver could not be detected on your system." + echo "Check www.jwz.org/xscreensaver if you're loving to" +diff -Nur kdeartwork-3.4.3.orig/kscreensaver/kxsconfig/configure.in.in kdeartwork-3.4.3/kscreensaver/kxsconfig/configure.in.in +--- kdeartwork-3.4.3.orig/kscreensaver/kxsconfig/configure.in.in 2005-10-05 15:11:48.000000000 +0200 ++++ kdeartwork-3.4.3/kscreensaver/kxsconfig/configure.in.in 2005-10-08 10:03:21.000000000 +0200 +@@ -22,25 +22,30 @@ + done + IFS=$old_IFS + +-KDE_FIND_PATH(lib$kdelibsuff/xscreensaver/flame, XSCREENSAVER, [ $xscreensaver_prefixes ], +- [ +- KDE_FIND_PATH(lib/xscreensaver/flame, XSCREENSAVER, [ $xscreensaver_prefixes ], +- [ +- KDE_FIND_PATH(bin/xscreensaver-hacks/flame, XSCREENSAVER, +- [ $xscreensaver_prefixes ], +- [ +- KDE_FIND_PATH(hacks/flame, XSCREENSAVER, +- [ $xscreensaver_prefixes ], +- [ +- XSCREENSAVER=NO +- ]) +- ]) +- ]) +- ]) ++AC_ARG_WITH(xscreensaver, ++ [AC_HELP_STRING(--with-xscreensaver, ++ [enable support for xscreensaver @<:@default=check@:>@])], ++ [], with_xscreensaver=check) ++ ++XSCREENSAVER='' ++echo "Searching in $xscreensaver_prefixes" ++if test "x$with_xscreensaver" != xno; then ++ for xsdir in lib$kdelibsuff/xscreensaver lib/xscreensaver \ ++ lib$kdelibsuff/misc/xscreensaver lib/misc/xscreensaver \ ++ libexec$kdelibsuff/xscreensaver libexec/xscreensaver \ ++ bin/xscreensaver-hacks hacks; do ++ test -n "$XSCREENSAVER" && break ++ KDE_FIND_PATH("$xsdir/flame", XSCREENSAVER, [ $xscreensaver_prefixes ]) ++ done ++ ++ if test "x$with_xscreensaver" != xcheck && test "x$XSCREENSAVER" = x; then ++ AC_MSG_ERROR([--with-xscreensaver was given, but test for xscreensaver failed]) ++ fi ++fi + + XSCREENSAVER_HACKS_DIR= + +-if test "$XSCREENSAVER" != "NO"; then ++if test -n "$XSCREENSAVER"; then + XSCREENSAVER_HACKS_DIR=`echo $XSCREENSAVER | sed -e 's,/flame$,,'` + AC_DEFINE_UNQUOTED(XSCREENSAVER_HACKS_DIR, "$XSCREENSAVER_HACKS_DIR", [Defines where xscreensaver stores its graphic hacks]) + +@@ -48,7 +53,6 @@ + for subdir in lib/xscreensaver/config \ + lib/X11/xscreensaver/config \ + share/control-center/screensavers \ +- share/control-center/screensavers \ + share/xscreensaver/config \ + xscreensaver \ + config/control-center-2.0; do +@@ -62,6 +66,5 @@ + [Defines where xscreensaver stores it's config files]) + fi + +-AM_CONDITIONAL(include_XSCREENSAVER, test "$XSCREENSAVER" != "NO") ++AM_CONDITIONAL(include_XSCREENSAVER, test -n "$XSCREENSAVER") + AC_SUBST(XSCREENSAVER_HACKS_DIR) +- diff --git a/kde-base/kdeartwork/files/kdeartwork-3.4.3-kfiresaver.patch b/kde-base/kdeartwork/files/kdeartwork-3.4.3-kfiresaver.patch new file mode 100644 index 000000000000..53e69720b1bd --- /dev/null +++ b/kde-base/kdeartwork/files/kdeartwork-3.4.3-kfiresaver.patch @@ -0,0 +1,12 @@ +diff -Nur kdeartwork-3.4.3.orig/kscreensaver/kdesavers/Makefile.am kdeartwork-3.4.3/kscreensaver/kdesavers/Makefile.am +--- kdeartwork-3.4.3.orig/kscreensaver/kdesavers/Makefile.am 2005-10-05 15:11:45.000000000 +0200 ++++ kdeartwork-3.4.3/kscreensaver/kdesavers/Makefile.am 2005-10-10 16:19:25.000000000 +0200 +@@ -95,7 +95,7 @@ + desktop_DATA = KBanner.desktop KPolygon.desktop \ + KSlideshow.desktop KLines-saver.desktop KLorenz.desktop \ + KBlob.desktop KVm.desktop \ +- KClock.desktop $(X11_DESKTOP_FILES) $(GL_DESKTOP_FILES) $(LIBART_DESKTOP_FILES) ++ KClock.desktop $(X11_DESKTOP_FILES) $(GL_DESKTOP_FILES) $(LIBART_DESKTOP_FILES) $(ARTS_GL_DESKTOP_FILES) + + desktopdir = $(kde_appsdir)/System/ScreenSavers + diff --git a/kde-base/kdeartwork/kdeartwork-3.4.3.ebuild b/kde-base/kdeartwork/kdeartwork-3.4.3.ebuild new file mode 100644 index 000000000000..78de00dd4b01 --- /dev/null +++ b/kde-base/kdeartwork/kdeartwork-3.4.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeartwork/kdeartwork-3.4.3.ebuild,v 1.1 2005/10/12 13:23:24 greg_g Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE artwork package" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="opengl xscreensaver" + +DEPEND="~kde-base/kdebase-${PV} + media-libs/libart_lgpl + opengl? ( virtual/opengl ) + xscreensaver? ( x11-misc/xscreensaver )" + +src_unpack() { + kde_src_unpack + + # Configure patch. Applied for 3.5. + epatch ${FILESDIR}/kdeartwork-3.4.3-configure.patch + + # Fix Makefile. Applied for 3.4.4. + epatch ${FILESDIR}/kdeartwork-3.4.3-kfiresaver.patch + + # For the configure and Makefile patch. + make -f admin/Makefile.common || die +} + +src_compile() { + local myconf="--with-dpms --with-libart + $(use_with opengl gl) $(use_with xscreensaver)" + + kde_src_compile +} diff --git a/kde-base/kdeedu/ChangeLog b/kde-base/kdeedu/ChangeLog index 44575ebd4532..35f99629e8ae 100644 --- a/kde-base/kdeedu/ChangeLog +++ b/kde-base/kdeedu/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for kde-base/kdeedu # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeedu/ChangeLog,v 1.152 2005/10/06 23:38:38 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeedu/ChangeLog,v 1.153 2005/10/12 13:24:08 greg_g Exp $ + +*kdeedu-3.4.3-r10 (12 Oct 2005) +*kdeedu-3.4.3 (12 Oct 2005) + + 12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> +kdeedu-3.4.3.ebuild, + +kdeedu-3.4.3-r10.ebuild: + New version. 06 Oct 2005; Hardave Riar <hardave@gentoo.org> kdeedu-3.4.2-r2.ebuild: Keyworded ~mips. diff --git a/kde-base/kdeedu/files/digest-kdeedu-3.4.3 b/kde-base/kdeedu/files/digest-kdeedu-3.4.3 new file mode 100644 index 000000000000..4e5b4661f69a --- /dev/null +++ b/kde-base/kdeedu/files/digest-kdeedu-3.4.3 @@ -0,0 +1 @@ +MD5 9f4059beb1c3495973dd80d11bcae462 kdeedu-3.4.3.tar.bz2 23983295 diff --git a/kde-base/kdeedu/files/digest-kdeedu-3.4.3-r10 b/kde-base/kdeedu/files/digest-kdeedu-3.4.3-r10 new file mode 100644 index 000000000000..4e5b4661f69a --- /dev/null +++ b/kde-base/kdeedu/files/digest-kdeedu-3.4.3-r10 @@ -0,0 +1 @@ +MD5 9f4059beb1c3495973dd80d11bcae462 kdeedu-3.4.3.tar.bz2 23983295 diff --git a/kde-base/kdeedu/kdeedu-3.4.3-r10.ebuild b/kde-base/kdeedu/kdeedu-3.4.3-r10.ebuild new file mode 100644 index 000000000000..cbf0a30e3537 --- /dev/null +++ b/kde-base/kdeedu/kdeedu-3.4.3-r10.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeedu/kdeedu-3.4.3-r10.ebuild,v 1.1 2005/10/12 13:24:08 greg_g Exp $ + +inherit kde-dist + +DESCRIPTION="KDE educational apps" + +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="kig-scripting" + +DEPEND="kig-scripting? ( >=dev-libs/boost-1.32 )" + +src_compile() { + local myconf="$(use_enable kig-scripting kig-python-scripting)" + + kde_src_compile +} diff --git a/kde-base/kdeedu/kdeedu-3.4.3.ebuild b/kde-base/kdeedu/kdeedu-3.4.3.ebuild new file mode 100644 index 000000000000..b5603b632cb0 --- /dev/null +++ b/kde-base/kdeedu/kdeedu-3.4.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeedu/kdeedu-3.4.3.ebuild,v 1.1 2005/10/12 13:24:08 greg_g Exp $ + +inherit kde-dist + +DESCRIPTION="KDE educational apps" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +#IUSE="kig-scripting" +IUSE="" + +# Waiting for stabilization +#DEPEND="kig-scripting? ( >=dev-libs/boost-1.32 )" + +src_compile() { + #local myconf="$(use_enable kig-scripting kig-python-scripting)" + local myconf="--disable-kig-python-scripting" + + kde_src_compile +} diff --git a/kde-base/kdegames/ChangeLog b/kde-base/kdegames/ChangeLog index ad9e0279fb77..e805efcc1efb 100644 --- a/kde-base/kdegames/ChangeLog +++ b/kde-base/kdegames/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kdegames # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegames/ChangeLog,v 1.130 2005/10/06 23:17:25 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegames/ChangeLog,v 1.131 2005/10/12 13:24:47 greg_g Exp $ + +*kdegames-3.4.3 (12 Oct 2005) + + 12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> +kdegames-3.4.3.ebuild: + New version. 06 Oct 2005; Hardave Riar <hardave@gentoo.org> kdegames-3.4.2.ebuild: Keyworded ~mips. diff --git a/kde-base/kdegames/files/digest-kdegames-3.4.3 b/kde-base/kdegames/files/digest-kdegames-3.4.3 new file mode 100644 index 000000000000..f8b3045f3cf4 --- /dev/null +++ b/kde-base/kdegames/files/digest-kdegames-3.4.3 @@ -0,0 +1 @@ +MD5 40ae2b318b94ab1832b484d2a4d3ab83 kdegames-3.4.3.tar.bz2 9413492 diff --git a/kde-base/kdegames/kdegames-3.4.3.ebuild b/kde-base/kdegames/kdegames-3.4.3.ebuild new file mode 100644 index 000000000000..e641d2511f2d --- /dev/null +++ b/kde-base/kdegames/kdegames-3.4.3.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegames/kdegames-3.4.3.ebuild,v 1.1 2005/10/12 13:24:47 greg_g Exp $ + +inherit kde-dist + +DESCRIPTION="KDE games (not just solitaire ;-)" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="" + +# For backgrounds in kpat. +RDEPEND="~kde-base/kdebase-${PV}" + +src_compile() { + local myconf="--disable-setgid" + + kde_src_compile +} diff --git a/kde-base/kdegraphics/ChangeLog b/kde-base/kdegraphics/ChangeLog index ff0511ff148d..6224a62623d3 100644 --- a/kde-base/kdegraphics/ChangeLog +++ b/kde-base/kdegraphics/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kdegraphics # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegraphics/ChangeLog,v 1.187 2005/10/06 23:24:55 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegraphics/ChangeLog,v 1.188 2005/10/12 13:25:26 greg_g Exp $ + +*kdegraphics-3.4.3 (12 Oct 2005) + + 12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> +kdegraphics-3.4.3.ebuild: + New version. 06 Oct 2005; Hardave Riar <hardave@gentoo.org> kdegraphics-3.4.2-r2.ebuild: diff --git a/kde-base/kdegraphics/files/digest-kdegraphics-3.4.3 b/kde-base/kdegraphics/files/digest-kdegraphics-3.4.3 new file mode 100644 index 000000000000..2cb888ba9f29 --- /dev/null +++ b/kde-base/kdegraphics/files/digest-kdegraphics-3.4.3 @@ -0,0 +1 @@ +MD5 e2b2926301204a0f587d9e6e163c06d9 kdegraphics-3.4.3.tar.bz2 6554272 diff --git a/kde-base/kdegraphics/kdegraphics-3.4.3.ebuild b/kde-base/kdegraphics/kdegraphics-3.4.3.ebuild new file mode 100644 index 000000000000..25dc7761ee2a --- /dev/null +++ b/kde-base/kdegraphics/kdegraphics-3.4.3.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegraphics/kdegraphics-3.4.3.ebuild,v 1.1 2005/10/12 13:25:26 greg_g Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE graphics-related apps" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="gphoto2 imlib nodrm openexr opengl povray scanner tetex" + +DEPEND="~kde-base/kdebase-${PV} + >=media-libs/freetype-2 + media-libs/fontconfig + gphoto2? ( media-libs/libgphoto2 ) + scanner? ( media-gfx/sane-backends ) + media-libs/libart_lgpl + media-libs/lcms + dev-libs/fribidi + imlib? ( media-libs/imlib ) + virtual/ghostscript + media-libs/tiff + openexr? ( >=media-libs/openexr-1.2 ) + povray? ( media-gfx/povray + virtual/opengl )" + +RDEPEND="${DEPEND} + app-text/xpdf + tetex? ( + || ( >=app-text/tetex-2 + app-text/ptex + app-text/cstetex + app-text/dvipdfm ) )" + +DEPEND="${DEPEND} + dev-util/pkgconfig" + +src_unpack() { + kde_src_unpack + + # Fix detection of gocr (kde bug 90082). + epatch "${FILESDIR}/kdegraphics-3.4.1-gocr.patch" + + # Configure patch. Applied for 3.5. + epatch "${FILESDIR}/kdegraphics-3.4-configure.patch" + + # For the configure patch. + make -f admin/Makefile.common || die +} + +src_compile() { + if use gphoto2; then + myconf="${myconf} --with-kamera \ + --with-gphoto2-includes=/usr/include/gphoto2 \ + --with-gphoto2-libraries=/usr/lib/gphoto2" + else + myconf="${myconf} --without-kamera" + fi + + use scanner || export DO_NOT_COMPILE="${DO_NOT_COMPILE} kooka libkscan" + use povray || export DO_NOT_COMPILE="${DO_NOT_COMPILE} kpovmodeler" + + myconf="${myconf} $(use_with imlib) $(use_enable !nodrm kpdf-drm) + $(use_with openexr)" + + kde_src_compile +} diff --git a/kde-base/kdemultimedia/ChangeLog b/kde-base/kdemultimedia/ChangeLog index c9183e1a5f27..68f6f691a6e7 100644 --- a/kde-base/kdemultimedia/ChangeLog +++ b/kde-base/kdemultimedia/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-base/kdemultimedia # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/ChangeLog,v 1.173 2005/10/06 23:29:48 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/ChangeLog,v 1.174 2005/10/12 13:26:06 greg_g Exp $ + +*kdemultimedia-3.4.3 (12 Oct 2005) + + 12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> + +kdemultimedia-3.4.3.ebuild: + New version. 06 Oct 2005; Hardave Riar <hardave@gentoo.org> kdemultimedia-3.4.2.ebuild: Keyworded ~mips. diff --git a/kde-base/kdemultimedia/files/digest-kdemultimedia-3.4.3 b/kde-base/kdemultimedia/files/digest-kdemultimedia-3.4.3 new file mode 100644 index 000000000000..6a467e9c0865 --- /dev/null +++ b/kde-base/kdemultimedia/files/digest-kdemultimedia-3.4.3 @@ -0,0 +1 @@ +MD5 49fed5afad01c322d3bc8c6a175d1898 kdemultimedia-3.4.3.tar.bz2 5495757 diff --git a/kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild b/kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild new file mode 100644 index 000000000000..30437e93b5b6 --- /dev/null +++ b/kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.4.3.ebuild,v 1.1 2005/10/12 13:26:06 greg_g Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE multimedia apps: noatun, kscd, juk..." + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="alsa audiofile encode flac gstreamer jack mp3 musicbrainz speex theora vorbis xine" + +DEPEND="~kde-base/kdebase-${PV} + media-sound/cdparanoia + media-libs/libsamplerate + audiofile? ( media-libs/audiofile ) + mp3? ( media-libs/libmad ) + jack? ( media-sound/jack-audio-connection-kit ) + flac? ( media-libs/flac ) + encode? ( media-sound/lame ) + vorbis? ( media-sound/vorbis-tools ) + xine? ( >=media-libs/xine-lib-1.0 ) + alsa? ( media-libs/alsa-lib ) + speex? ( media-libs/speex ) + theora? ( media-libs/libtheora ) + gstreamer? ( >=media-libs/gstreamer-0.8 + >=media-libs/gst-plugins-0.8 ) + >=media-libs/taglib-1.2 + musicbrainz? ( media-libs/tunepimp media-libs/musicbrainz )" + +RDEPEND="${DEPEND} + gstreamer? ( mp3? ( >=media-plugins/gst-plugins-mad-0.8 ) + vorbis? ( >=media-plugins/gst-plugins-ogg-0.8 + >=media-plugins/gst-plugins-vorbis-0.8 ) + flac? ( >=media-plugins/gst-plugins-flac-0.8 ) )" + +DEPEND="${DEPEND} + dev-util/pkgconfig" + +src_unpack() { + kde_src_unpack + + # Fix for 64 bit systems. Applied for 3.5. + epatch "${FILESDIR}/kdemultimedia-3.4.0-amd64.patch" + + # Configure patch. Applied for 3.5. + epatch "${FILESDIR}/kdemultimedia-3.4-configure.patch" + + # For the configure patch. + make -f admin/Makefile.common || die +} + +src_compile() { + use speex && myconf="--with-extra-includes=/usr/include/speex" + + myconf="${myconf} --with-cdparanoia --enable-cdparanoia + $(use_with alsa arts-alsa) $(use_with alsa) + $(use_with vorbis) $(use_with encode lame) + $(use_with flac) $(use_with speex) + $(use_with mp3 libmad) $(use_with jack) + $(use_with xine) $(use_with musicbrainz)" + + kde_src_compile +} diff --git a/kde-base/kdenetwork/ChangeLog b/kde-base/kdenetwork/ChangeLog index 6f509fbe3cd2..de1c2c0568dd 100644 --- a/kde-base/kdenetwork/ChangeLog +++ b/kde-base/kdenetwork/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kdenetwork # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdenetwork/ChangeLog,v 1.167 2005/10/06 23:22:37 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdenetwork/ChangeLog,v 1.168 2005/10/12 13:26:46 greg_g Exp $ + +*kdenetwork-3.4.3 (12 Oct 2005) + + 12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> +kdenetwork-3.4.3.ebuild: + New version. 06 Oct 2005; Hardave Riar <hardave@gentoo.org> kdenetwork-3.4.2.ebuild: Keyworded ~mips. diff --git a/kde-base/kdenetwork/files/digest-kdenetwork-3.4.3 b/kde-base/kdenetwork/files/digest-kdenetwork-3.4.3 new file mode 100644 index 000000000000..b0c25015bc99 --- /dev/null +++ b/kde-base/kdenetwork/files/digest-kdenetwork-3.4.3 @@ -0,0 +1 @@ +MD5 9c762557e6572b2d53736fefc33b028a kdenetwork-3.4.3.tar.bz2 7364627 diff --git a/kde-base/kdenetwork/kdenetwork-3.4.3.ebuild b/kde-base/kdenetwork/kdenetwork-3.4.3.ebuild new file mode 100644 index 000000000000..5d8b8279be05 --- /dev/null +++ b/kde-base/kdenetwork/kdenetwork-3.4.3.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdenetwork/kdenetwork-3.4.3.ebuild,v 1.1 2005/10/12 13:26:46 greg_g Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE network apps: kopete, kppp, kget..." + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="rdesktop slp ssl wifi xmms" + +DEPEND="~kde-base/kdebase-${PV} + dev-libs/libxslt + dev-libs/libxml2 + slp? ( net-libs/openslp ) + wifi? ( net-wireless/wireless-tools ) + xmms? ( media-sound/xmms )" + +RDEPEND="${DEPEND} + rdesktop? ( >=net-misc/rdesktop-1.4.1 ) + dev-lang/perl + ssl? ( app-crypt/qca-tls + dev-perl/IO-Socket-SSL )" +# perl: for KSirc +# qca-tls: for Kopete jabber plugin. +# IO-Socket-SSL: for SSL support in KSirc. + +DEPEND="${DEPEND} + dev-util/pkgconfig" + +src_unpack() { + kde_src_unpack + + # Disable meanwhile support in kopete. See bug 96778. + epatch "$FILESDIR/disable-meanwhile.diff" + + # Configure patch. Applied for 3.5. + epatch "${FILESDIR}/kdenetwork-3.4-configure.patch" + + # For the configure patch. + make -f admin/Makefile.common || die +} + +src_compile() { + local myconf="$(use_enable slp) $(use_with wifi) + $(use_with xmms) --without-external-libgadu" + + kde_src_compile +} + +src_install() { + kde_src_install + + chmod u+s ${D}/${KDEDIR}/bin/reslisa + + # empty config file needed for lisa to work with default settings + dodir /etc + touch ${D}/etc/lisarc + + # lisa, reslisa initscripts + sed -e "s:_KDEDIR_:${KDEDIR}:g" ${FILESDIR}/lisa > ${T}/lisa + sed -e "s:_KDEDIR_:${KDEDIR}:g" ${FILESDIR}/reslisa > ${T}/reslisa + exeinto /etc/init.d + doexe ${T}/lisa ${T}/reslisa + + insinto /etc/conf.d + newins ${FILESDIR}/lisa.conf lisa + newins ${FILESDIR}/reslisa.conf reslisa +} diff --git a/kde-base/kdepim/ChangeLog b/kde-base/kdepim/ChangeLog index 5d8159637f64..23b8d1bc97cc 100644 --- a/kde-base/kdepim/ChangeLog +++ b/kde-base/kdepim/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kdepim # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim/ChangeLog,v 1.172 2005/10/06 23:19:26 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim/ChangeLog,v 1.173 2005/10/12 13:27:31 greg_g Exp $ + +*kdepim-3.4.3 (12 Oct 2005) + + 12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> +kdepim-3.4.3.ebuild: + New version. 06 Oct 2005; Hardave Riar <hardave@gentoo.org> kdepim-3.4.2-r1.ebuild: Keyworded ~mips. diff --git a/kde-base/kdepim/files/digest-kdepim-3.4.3 b/kde-base/kdepim/files/digest-kdepim-3.4.3 new file mode 100644 index 000000000000..e1e5a75b8e71 --- /dev/null +++ b/kde-base/kdepim/files/digest-kdepim-3.4.3 @@ -0,0 +1 @@ +MD5 b2c145f3779578c9208dcbec9a4a5aea kdepim-3.4.3.tar.bz2 11327132 diff --git a/kde-base/kdepim/kdepim-3.4.3.ebuild b/kde-base/kdepim/kdepim-3.4.3.ebuild new file mode 100644 index 000000000000..9b396bdc3a0b --- /dev/null +++ b/kde-base/kdepim/kdepim-3.4.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim/kdepim-3.4.3.ebuild,v 1.1 2005/10/12 13:27:31 greg_g Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE PIM (Personal Information Management) apps: korganizer, kmail, knode..." + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="crypt gnokii pda" + +DEPEND="~kde-base/kdebase-${PV} + >=dev-libs/cyrus-sasl-2 + pda? ( app-pda/pilot-link dev-libs/libmal ) + gnokii? ( app-mobilephone/gnokii ) + crypt? ( >=app-crypt/gpgme-0.9.0-r1 )" + +src_unpack() { + kde_src_unpack + + # Configure patch. Applied for 3.5. + epatch "${FILESDIR}/kdepim-3.4-configure.patch" + + # For the configure patch. + make -f admin/Makefile.common || die +} + +src_compile() { + local myconf="--with-sasl $(use_with gnokii)" + + kde_src_compile +} diff --git a/kde-base/kdetoys/ChangeLog b/kde-base/kdetoys/ChangeLog index af889fba6158..f658161e2c7c 100644 --- a/kde-base/kdetoys/ChangeLog +++ b/kde-base/kdetoys/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kdetoys # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdetoys/ChangeLog,v 1.120 2005/10/06 23:26:13 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdetoys/ChangeLog,v 1.121 2005/10/12 13:28:03 greg_g Exp $ + +*kdetoys-3.4.3 (12 Oct 2005) + + 12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> +kdetoys-3.4.3.ebuild: + New version. 06 Oct 2005; Hardave Riar <hardave@gentoo.org> kdetoys-3.4.2.ebuild: Keyworded ~mips. diff --git a/kde-base/kdetoys/files/digest-kdetoys-3.4.3 b/kde-base/kdetoys/files/digest-kdetoys-3.4.3 new file mode 100644 index 000000000000..cb0b63d26b58 --- /dev/null +++ b/kde-base/kdetoys/files/digest-kdetoys-3.4.3 @@ -0,0 +1 @@ +MD5 1dae200dc1be8527a5f7dca690cbffc1 kdetoys-3.4.3.tar.bz2 3168237 diff --git a/kde-base/kdetoys/kdetoys-3.4.3.ebuild b/kde-base/kdetoys/kdetoys-3.4.3.ebuild new file mode 100644 index 000000000000..bc03b158e8e8 --- /dev/null +++ b/kde-base/kdetoys/kdetoys-3.4.3.ebuild @@ -0,0 +1,10 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdetoys/kdetoys-3.4.3.ebuild,v 1.1 2005/10/12 13:28:03 greg_g Exp $ + +inherit kde-dist + +DESCRIPTION="KDE toys" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="" |