From 766a756dd7ed3226587ca1e7e798725e70a9a5be Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:03:39 +0200 Subject: consolekit, petites corrections --- extra/consolekit/.footprint.i686 | 1 + extra/consolekit/.footprint.x86_64 | 1 + extra/consolekit/.md5sum.i686 | 1 + extra/consolekit/.md5sum.x86_64 | 1 + extra/consolekit/Pkgfile | 9 ++++++--- extra/consolekit/pam-foreground-compat.ck | 16 ++++++++++++++++ 6 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 extra/consolekit/pam-foreground-compat.ck diff --git a/extra/consolekit/.footprint.i686 b/extra/consolekit/.footprint.i686 index 577382604..28d4f2132 100755 --- a/extra/consolekit/.footprint.i686 +++ b/extra/consolekit/.footprint.i686 @@ -27,6 +27,7 @@ drwxr-xr-x root/root usr/lib/ConsoleKit/ -rwxr-xr-x root/root usr/lib/ConsoleKit/ck-get-x11-server-pid drwxr-xr-x root/root usr/lib/ConsoleKit/run-seat.d/ drwxr-xr-x root/root usr/lib/ConsoleKit/run-session.d/ +-rwxr-xr-x root/root usr/lib/ConsoleKit/run-session.d/pam-foreground-compat.ck drwxr-xr-x root/root usr/lib/ConsoleKit/scripts/ -rwxr-xr-x root/root usr/lib/ConsoleKit/scripts/ck-system-restart -rwxr-xr-x root/root usr/lib/ConsoleKit/scripts/ck-system-stop diff --git a/extra/consolekit/.footprint.x86_64 b/extra/consolekit/.footprint.x86_64 index 577382604..28d4f2132 100755 --- a/extra/consolekit/.footprint.x86_64 +++ b/extra/consolekit/.footprint.x86_64 @@ -27,6 +27,7 @@ drwxr-xr-x root/root usr/lib/ConsoleKit/ -rwxr-xr-x root/root usr/lib/ConsoleKit/ck-get-x11-server-pid drwxr-xr-x root/root usr/lib/ConsoleKit/run-seat.d/ drwxr-xr-x root/root usr/lib/ConsoleKit/run-session.d/ +-rwxr-xr-x root/root usr/lib/ConsoleKit/run-session.d/pam-foreground-compat.ck drwxr-xr-x root/root usr/lib/ConsoleKit/scripts/ -rwxr-xr-x root/root usr/lib/ConsoleKit/scripts/ck-system-restart -rwxr-xr-x root/root usr/lib/ConsoleKit/scripts/ck-system-stop diff --git a/extra/consolekit/.md5sum.i686 b/extra/consolekit/.md5sum.i686 index 1b94c75d5..c0a4662bb 100755 --- a/extra/consolekit/.md5sum.i686 +++ b/extra/consolekit/.md5sum.i686 @@ -1 +1,2 @@ b57eb18eae8c4d3631d5f4f030218a29 ConsoleKit-0.4.4.tar.bz2 +a8a4de71d9b0549b8143e5f6c2a36fc7 pam-foreground-compat.ck diff --git a/extra/consolekit/.md5sum.x86_64 b/extra/consolekit/.md5sum.x86_64 index 1b94c75d5..c0a4662bb 100755 --- a/extra/consolekit/.md5sum.x86_64 +++ b/extra/consolekit/.md5sum.x86_64 @@ -1 +1,2 @@ b57eb18eae8c4d3631d5f4f030218a29 ConsoleKit-0.4.4.tar.bz2 +a8a4de71d9b0549b8143e5f6c2a36fc7 pam-foreground-compat.ck diff --git a/extra/consolekit/Pkgfile b/extra/consolekit/Pkgfile index 39bdfd437..964f3ff34 100755 --- a/extra/consolekit/Pkgfile +++ b/extra/consolekit/Pkgfile @@ -7,8 +7,9 @@ name=consolekit version=0.4.4 -release=1 -source=(http://www.freedesktop.org/software/ConsoleKit/dist/ConsoleKit-$version.tar.bz2) +release=3 +source=(http://www.freedesktop.org/software/ConsoleKit/dist/ConsoleKit-$version.tar.bz2 + pam-foreground-compat.ck) build() { cd ConsoleKit-$version @@ -18,9 +19,11 @@ build() { --localstatedir=/var \ --libexecdir=/usr/lib/ConsoleKit \ --enable-pam-module \ - --enable-docbook-docs + --enable-docbook-docs \ + --with-dbus-services=$PKG/usr/share/dbus-1/services make make DESTDIR=$PKG install + install -m755 $SRC/pam-foreground-compat.ck $PKG/usr/lib/ConsoleKit/run-session.d/ } diff --git a/extra/consolekit/pam-foreground-compat.ck b/extra/consolekit/pam-foreground-compat.ck new file mode 100644 index 000000000..7f6b122d5 --- /dev/null +++ b/extra/consolekit/pam-foreground-compat.ck @@ -0,0 +1,16 @@ +#!/bin/sh +TAGDIR=/var/run/console + +[ -n "$CK_SESSION_USER_UID" ] || exit 1 + +TAGFILE="$TAGDIR/`getent passwd $CK_SESSION_USER_UID | cut -f 1 -d:`" + +if [ "$1" = "session_added" ]; then + mkdir -p "$TAGDIR" + echo "$CK_SESSION_ID" >> "$TAGFILE" +fi + +if [ "$1" = "session_removed" ] && [ -e "$TAGFILE" ]; then + sed -i "\%^$CK_SESSION_ID\$%d" "$TAGFILE" + [ -s "$TAGFILE" ] || rm -f "$TAGFILE" +fi -- cgit v1.2.3-70-g09d2 From d21affb8959307e352721277af606891f30d2771 Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:04:32 +0200 Subject: polkit, petites corrections --- extra/polkit/.footprint.i686 | 5 ++--- extra/polkit/.footprint.x86_64 | 5 ++--- extra/polkit/Pkgfile | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/extra/polkit/.footprint.i686 b/extra/polkit/.footprint.i686 index 6dbb41e6e..6afaa253f 100644 --- a/extra/polkit/.footprint.i686 +++ b/extra/polkit/.footprint.i686 @@ -83,9 +83,8 @@ drwxr-xr-x root/root usr/lib/polkit-1/ drwxr-xr-x root/root usr/lib/polkit-1/extensions/ -rwxr-xr-x root/root usr/lib/polkit-1/extensions/libnullbackend.la -rwxr-xr-x root/root usr/lib/polkit-1/extensions/libnullbackend.so -drwxr-xr-x root/root usr/lib/polkit/ --rwsr-xr-x root/root usr/lib/polkit/polkit-agent-helper-1 --rwxr-xr-x root/root usr/lib/polkit/polkitd +-rwsr-xr-x root/root usr/lib/polkit-1/polkit-agent-helper-1 +-rwxr-xr-x root/root usr/lib/polkit-1/polkitd drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/dbus-1/ drwxr-xr-x root/root usr/share/dbus-1/system-services/ diff --git a/extra/polkit/.footprint.x86_64 b/extra/polkit/.footprint.x86_64 index 6dbb41e6e..6afaa253f 100644 --- a/extra/polkit/.footprint.x86_64 +++ b/extra/polkit/.footprint.x86_64 @@ -83,9 +83,8 @@ drwxr-xr-x root/root usr/lib/polkit-1/ drwxr-xr-x root/root usr/lib/polkit-1/extensions/ -rwxr-xr-x root/root usr/lib/polkit-1/extensions/libnullbackend.la -rwxr-xr-x root/root usr/lib/polkit-1/extensions/libnullbackend.so -drwxr-xr-x root/root usr/lib/polkit/ --rwsr-xr-x root/root usr/lib/polkit/polkit-agent-helper-1 --rwxr-xr-x root/root usr/lib/polkit/polkitd +-rwsr-xr-x root/root usr/lib/polkit-1/polkit-agent-helper-1 +-rwxr-xr-x root/root usr/lib/polkit-1/polkitd drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/dbus-1/ drwxr-xr-x root/root usr/share/dbus-1/system-services/ diff --git a/extra/polkit/Pkgfile b/extra/polkit/Pkgfile index cbc09bf07..7fc5cd551 100755 --- a/extra/polkit/Pkgfile +++ b/extra/polkit/Pkgfile @@ -7,16 +7,15 @@ name=polkit version=0.101 -release=1 +release=2 source=(http://hal.freedesktop.org/releases/$name-$version.tar.gz polkit.pam) build() { - unset MAKEFLAGS cd $name-$version PYTHON=/usr/bin/python2 ./configure --prefix=/usr \ --sysconfdir=/etc \ - --libexecdir=/usr/lib/polkit \ + --libexecdir=/usr/lib/polkit-1 \ --mandir=/usr/share/man \ --localstatedir=/var \ --disable-static -- cgit v1.2.3-70-g09d2 From 054b24157f6c34f4d4f3984b13368f8b5ac53fbf Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:05:31 +0200 Subject: libmysql, petites corrections --- base/libmysql/Pkgfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base/libmysql/Pkgfile b/base/libmysql/Pkgfile index 09bf1f9b5..3da21da1a 100644 --- a/base/libmysql/Pkgfile +++ b/base/libmysql/Pkgfile @@ -5,12 +5,12 @@ name=libmysql version=5.1.55 -release=1 +release=2 source=(http://mirror.switch.ch/mirror/mysql/Downloads/MySQL-5.1/mysql-$version.tar.gz ) build () { - CFLAGS="-fPIC ${CFLAGS} -fno-strict-aliasing" - CXXFLAGS="-fPIC ${CXXFLAGS} -fno-strict-aliasing" + CFLAGS="-fPIC ${CFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 -fomit-frame-pointer" + CXXFLAGS="-fPIC ${CXXFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 -felide-constructors -fno-rtti" cd mysql-$version ./configure --prefix=/usr \ --sysconfdir=/etc \ -- cgit v1.2.3-70-g09d2 From 6e164f74a53b979d543ad39ed925a2e104dd7f01 Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:08:57 +0200 Subject: kdelibs, 4.6.2 corrections port --- kde/kdelibs/Pkgfile | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/kde/kdelibs/Pkgfile b/kde/kdelibs/Pkgfile index 805e64466..b86c76592 100755 --- a/kde/kdelibs/Pkgfile +++ b/kde/kdelibs/Pkgfile @@ -2,24 +2,18 @@ # URL: http://www.kde.org # Maintainer: NuTyX packager Team # Packager: lesibel at free dot fr -# Depends on: automoc4, cmake, qt, xorg-libxscrnsaver, polkit-qt, libdbusmenu-qt, xz-utils, strigi, attica, soprano, qca, gmm, jasper, openexr, giflib, avahi, enchant, shared-mime-info, kerberos, shared-desktop-ontologies, phonon, docbook-xsl, grantlee, udisks, upower, acl +# Depends on: automoc4, cmake, qt, attica, soprano, strigi, qca, libdbusmenu-qt, shared-desktop-ontologies, gamin, avahi, openexr, jasper, libart_lgpl, openssl, acl, nss-mdns, enchant, aspell, docbook-xsl, phonon, grantlee, xorg-libxscrnsaver, polkit-qt, gmm, giflib, shared-mime-info, kerberos, udisks, upower, pcre, libxml2, libxslt, oxygen-icons # Run on: acl,polkit-qt,libdbusmenu-qt,xz-utils,qt,strigi,soprano,qca,gmm,dbus,jasper,openexr,giflib,avahi,enchant,shared-mime-info,kerberos,attica,shared-desktop-ontologies,phonon,grantlee,udisks,upower name=kdelibs version=4.6.2 -release=1 +release=2 source=(ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.bz2 ) -# http://nutyx.meticul.eu/files/patchs/$name/kde-applications-menu.patch -# kdelibs-4.6.0-fix-crash-in-plasma.patch) - build() { cd $name-* -# patch -p1 -i $SRC/kde-applications-menu.patch -# patch -p1 -i $SRC/kdelibs-4.6.0-fix-crash-in-plasma.patch - sed -i "s/Horos/Pakxe/" plasma/theme.cpp mkdir build cd build @@ -29,9 +23,7 @@ build() { -DCMAKE_INSTALL_PREFIX=/usr \ -DSYSCONF_INSTALL_DIR=/etc \ -DKDE_DEFAULT_HOME='.kde' \ - -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \ - -DWITH_FAM=OFF \ - -DKAUTH_BACKEND=PolkitQt-1 + -DHTML_INSTALL_DIR=/usr/share/doc/kde/html make make DESTDIR=$PKG install rm -f $PKG/usr/share/apps/kssl/ca-bundle.crt -- cgit v1.2.3-70-g09d2 From 164f8111e629cb265be585c89c5b047c0f3eb724 Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:09:00 +0200 Subject: kdebase-runtime, 4.6.2 corrections port --- kde/kdebase-runtime/Pkgfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kde/kdebase-runtime/Pkgfile b/kde/kdebase-runtime/Pkgfile index a5cd4fe83..3951a047f 100755 --- a/kde/kdebase-runtime/Pkgfile +++ b/kde/kdebase-runtime/Pkgfile @@ -2,13 +2,13 @@ # URL: http://www.kde.org # Maintainer: NuTyX packager team # Packager: lesibel at free dot fr -# Depends on: cmake, automoc4, kdelibs, kdepimlibs, ntrack, openslp, samba3, libssh, libcanberra, oxygen-icons, xorg-xauth, xorg-libxtst, hicolor-icon-theme, xine-lib, rarian, docbook-xsl +# Depends on: cmake, automoc4, kdelibs, kdepimlibs, attica, soprano, strigi, libjpeg, exiv2, openexr, shared-mime-info, shared-desktop-ontologies, samba3, gpgme, phonon, alsa-lib, xine-lib, libcanberra, ntrack, docbook-xsl, openslp, libssh -# Run on: kdepimlibs,openslp,samba3,libssh,libcanberra,oxygen-icons,xorg-xauth,hicolor-icon-theme,xine-lib +# Run on: kdelibs,kdepimlibs,openslp,samba3,libssh,libcanberra,xine-lib,ntrack name=kdebase-runtime version=4.6.2 -release=1 +release=2 source=( ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.bz2) build() { -- cgit v1.2.3-70-g09d2 From 1e7c27838fa4e86e655ee352cfaad8ce121880e8 Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:09:02 +0200 Subject: kdebase-workspace, 4.6.2 corrections port --- kde/kdebase-workspace/.footprint.i686 | 4 ++++ kde/kdebase-workspace/.footprint.x86_64 | 4 ++++ kde/kdebase-workspace/.md5sum.x86_64 | 2 +- kde/kdebase-workspace/Pkgfile | 11 ++++++++--- kde/kdebase-workspace/Xsession.kde4 | 2 +- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/kde/kdebase-workspace/.footprint.i686 b/kde/kdebase-workspace/.footprint.i686 index 19a31092b..0c33664e6 100644 --- a/kde/kdebase-workspace/.footprint.i686 +++ b/kde/kdebase-workspace/.footprint.i686 @@ -249,6 +249,7 @@ drwxr-xr-x root/root usr/lib/kde4/ -rwxr-xr-x root/root usr/lib/kde4/kcm_standard_actions.so -rwxr-xr-x root/root usr/lib/kde4/kcm_style.so -rwxr-xr-x root/root usr/lib/kde4/kcm_usb.so +-rwxr-xr-x root/root usr/lib/kde4/kcm_view1394.so -rwxr-xr-x root/root usr/lib/kde4/kcm_workspaceoptions.so -rwxr-xr-x root/root usr/lib/kde4/kcm_xinerama.so -rwxr-xr-x root/root usr/lib/kde4/kded_freespacenotifier.so @@ -582,6 +583,8 @@ drwxr-xr-x root/root usr/share/apps/kcmsolidactions/ -rw-r--r-- root/root usr/share/apps/kcmsolidactions/solid-action-template.desktop drwxr-xr-x root/root usr/share/apps/kcmusb/ -rw-r--r-- root/root usr/share/apps/kcmusb/usb.ids +drwxr-xr-x root/root usr/share/apps/kcmview1394/ +-rw-r--r-- root/root usr/share/apps/kcmview1394/oui.db drwxr-xr-x root/root usr/share/apps/kconf_update/ -rwxr-xr-x root/root usr/share/apps/kconf_update/convertShortcuts.pl -rw-r--r-- root/root usr/share/apps/kconf_update/kaccel.upd @@ -2221,6 +2224,7 @@ drwxr-xr-x root/root usr/share/kde4/services/ServiceMenus/ -rw-r--r-- root/root usr/share/kde4/services/kcmlaunch.desktop -rw-r--r-- root/root usr/share/kde4/services/kcmsmserver.desktop -rw-r--r-- root/root usr/share/kde4/services/kcmusb.desktop +-rw-r--r-- root/root usr/share/kde4/services/kcmview1394.desktop drwxr-xr-x root/root usr/share/kde4/services/kded/ -rw-r--r-- root/root usr/share/kde4/services/kded/freespacenotifier.desktop -rw-r--r-- root/root usr/share/kde4/services/kded/kephal.desktop diff --git a/kde/kdebase-workspace/.footprint.x86_64 b/kde/kdebase-workspace/.footprint.x86_64 index 19a31092b..0c33664e6 100644 --- a/kde/kdebase-workspace/.footprint.x86_64 +++ b/kde/kdebase-workspace/.footprint.x86_64 @@ -249,6 +249,7 @@ drwxr-xr-x root/root usr/lib/kde4/ -rwxr-xr-x root/root usr/lib/kde4/kcm_standard_actions.so -rwxr-xr-x root/root usr/lib/kde4/kcm_style.so -rwxr-xr-x root/root usr/lib/kde4/kcm_usb.so +-rwxr-xr-x root/root usr/lib/kde4/kcm_view1394.so -rwxr-xr-x root/root usr/lib/kde4/kcm_workspaceoptions.so -rwxr-xr-x root/root usr/lib/kde4/kcm_xinerama.so -rwxr-xr-x root/root usr/lib/kde4/kded_freespacenotifier.so @@ -582,6 +583,8 @@ drwxr-xr-x root/root usr/share/apps/kcmsolidactions/ -rw-r--r-- root/root usr/share/apps/kcmsolidactions/solid-action-template.desktop drwxr-xr-x root/root usr/share/apps/kcmusb/ -rw-r--r-- root/root usr/share/apps/kcmusb/usb.ids +drwxr-xr-x root/root usr/share/apps/kcmview1394/ +-rw-r--r-- root/root usr/share/apps/kcmview1394/oui.db drwxr-xr-x root/root usr/share/apps/kconf_update/ -rwxr-xr-x root/root usr/share/apps/kconf_update/convertShortcuts.pl -rw-r--r-- root/root usr/share/apps/kconf_update/kaccel.upd @@ -2221,6 +2224,7 @@ drwxr-xr-x root/root usr/share/kde4/services/ServiceMenus/ -rw-r--r-- root/root usr/share/kde4/services/kcmlaunch.desktop -rw-r--r-- root/root usr/share/kde4/services/kcmsmserver.desktop -rw-r--r-- root/root usr/share/kde4/services/kcmusb.desktop +-rw-r--r-- root/root usr/share/kde4/services/kcmview1394.desktop drwxr-xr-x root/root usr/share/kde4/services/kded/ -rw-r--r-- root/root usr/share/kde4/services/kded/freespacenotifier.desktop -rw-r--r-- root/root usr/share/kde4/services/kded/kephal.desktop diff --git a/kde/kdebase-workspace/.md5sum.x86_64 b/kde/kdebase-workspace/.md5sum.x86_64 index c4a893eaa..4e46d00e1 100644 --- a/kde/kdebase-workspace/.md5sum.x86_64 +++ b/kde/kdebase-workspace/.md5sum.x86_64 @@ -1,5 +1,5 @@ 5a8c274168dcacd657c1f0c6fe4f72a0 Pakxe.tar.bz2 -2b0d7acd26d472a7295d489973672094 Xsession.kde4 +2e3f3525323055c74da28cd431e35b0e Xsession.kde4 304ef605ca6fc78f538ef38f7ae93b26 ede.desktop 98068b12ed7ea671ae631ff5893249a2 kde-np.pam d388941b3e86b14ce25a72be945ed3d9 kde.pam diff --git a/kde/kdebase-workspace/Pkgfile b/kde/kdebase-workspace/Pkgfile index 2f295b171..88eceaa78 100755 --- a/kde/kdebase-workspace/Pkgfile +++ b/kde/kdebase-workspace/Pkgfile @@ -2,9 +2,9 @@ # URL: http://www.kde.org # Maintainer: NuTyX packager team # Packager: lesibel at free dot fr -# Depends on: cmake, automoc4, boost, polkit-kde, qimageblitz, lm_sensors, xorg-libxkbfile, xorg-libxdamage, xorg-libxtst, kdepimlibs, gpsd, consolekit -# Run on: lm_sensors,libraw1394,qimageblitz,polkit-kde,consolekit,xorg-xprop,xorg-libxdamage,xorg-libxkbfile +# Depends on: cmake, automoc4, kdelibs, kdepimlibs, kdebase-runtime, kdebase, libdbusmenu-qt, polkit-qt, lm_sensors, libraw1394, gpsd, qimageblitz, pciutils, usbutils, consolekit, xorg-libxtst, xorg-libxkbfile, xorg-libxdamage +# Run on: lm_sensors,libraw1394,qimageblitz,polkit-kde,consolekit,xorg-xprop,xorg-libxdamage,xorg-libxkbfile name=kdebase-workspace version=4.6.2 @@ -19,13 +19,18 @@ build() { cd $name-* + sed -e "s#@REPLACE_LDFLAGS@##" \ + -i startkde.cmake + sed -e "s#@REPLACE_LIBDIR@#$(get_libdir)#" \ + -i startkde.cmake + mkdir build cd build cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SKIP_RPATH=ON \ -DWITH_Xmms=OFF \ - -DWITH_Googlegadgets=ON \ + -DWITH_Googlegadgets=OFF \ -DWITH_PolkitQt=OFF make make DESTDIR=$PKG install diff --git a/kde/kdebase-workspace/Xsession.kde4 b/kde/kdebase-workspace/Xsession.kde4 index c01c73ad0..d50f24565 100755 --- a/kde/kdebase-workspace/Xsession.kde4 +++ b/kde/kdebase-workspace/Xsession.kde4 @@ -55,7 +55,7 @@ case $session in exec $HOME/.xsession ;; default) - exec /usr/bin/startkde + exec dbus-launch startkde ;; *) eval exec "$session" -- cgit v1.2.3-70-g09d2 From 64a08674048b3f57b6c7d95328331ea3fe6d5f03 Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:09:04 +0200 Subject: kdebase, 4.6.2 corrections port --- kde/kdebase/Pkgfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kde/kdebase/Pkgfile b/kde/kdebase/Pkgfile index 8d0485645..a8b9cedc1 100755 --- a/kde/kdebase/Pkgfile +++ b/kde/kdebase/Pkgfile @@ -2,12 +2,13 @@ # URL: http://www.kde.org # Maintainer: NuTyX packager team # Packager: lesibel at free dot fr -# Depends on: kdebase-workspace, docbook-xsl, ruby, cmake, automoc4 +# Depends on: cmake, automoc4, kdelibs, kdepimlibs, kdebase-runtime, docbook-xsl, shared-desktop-ontologies, qimageblitz, strigi, polkit-kde, oxygen-icons, libvorbis, libogg, audiofile, alsa-utils, udisks, upower + # Run on: shared-mime-info,kdelibs,kdebase-runtime,kdebase-workspace,libvorbis,libogg,audiofile,alsa-utils,oxygen-icons name=kdebase version=4.6.2 -release=1 +release=2 source=( ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.bz2) build() { -- cgit v1.2.3-70-g09d2 From 30d4a1a70f2439e394ce0bc93c897d5d61d33bb9 Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:09:06 +0200 Subject: kdegraphics, 4.6.2 corrections port --- kde/kdegraphics/Pkgfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kde/kdegraphics/Pkgfile b/kde/kdegraphics/Pkgfile index 0b0c8900d..af85486f7 100755 --- a/kde/kdegraphics/Pkgfile +++ b/kde/kdegraphics/Pkgfile @@ -4,12 +4,11 @@ # Packager: lesibel at free dot fr # Depends on: automoc4, kdebase-runtime, qca, qimageblitz, libdbusmenu-qt, exiv2, poppler-qt, strigi, shared-mime-info, sane, libgphoto2, chmlib, djvulibre, docbook-xsl, ebook-tools, libspectre -#automoc4, qimageblitz, sane, lcms, poppler-qt, chmlib, libspectre, ebook-tools, kdebase-runtime, docbook-xsl, djvulibre, libgphoto2, xorg-libxscrnsaver - # Run on: qimageblitz,sane,lcms,libxxf86vm,poppler-qt,libspectre,chmlib,djvulibre,ebook-tools,kdebase-runtime,libgphoto2 + name=kdegraphics version=4.6.2 -release=1 +release=2 source=(ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.bz2) build() { -- cgit v1.2.3-70-g09d2 From 4ebd59b94280c72a6d7afb7cd658baefa9afcae4 Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:09:09 +0200 Subject: kdepimlibs, 4.6.2 corrections port --- kde/kdepimlibs/Pkgfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kde/kdepimlibs/Pkgfile b/kde/kdepimlibs/Pkgfile index 5b55164ee..1922a667c 100755 --- a/kde/kdepimlibs/Pkgfile +++ b/kde/kdepimlibs/Pkgfile @@ -2,12 +2,13 @@ # URL: http://www.kde.org # Maintainer: NuTyX packager team # Packager: lesibel at free dot fr -# Depends on: cmake, automoc4, kdelibs, boost, libical, gpgme, akonadi, cyrus-sasl, libldap, docbook-xsl +# Depends on: cmake, automoc4, kdelibs, libxslt, gpgme, libical, akonadi, boost, cyrus-sasl, shared-mime-info, shared-desktop-ontologies, libldap, soprano, docbook-xsl + # Run on: kdelibs,libical,gpgme,akonadi,cyrus-sasl,libldap name=kdepimlibs version=4.6.2 -release=1 +release=2 source=( ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.bz2) -- cgit v1.2.3-70-g09d2 From c03f43cad02a794da6b42cec52a924d6706210ce Mon Sep 17 00:00:00 2001 From: sibel Date: Fri, 8 Apr 2011 11:09:53 +0200 Subject: kde, 4.6.2 corrections port --- kde/kde/Pkgfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde/kde/Pkgfile b/kde/kde/Pkgfile index c50a7852d..966ccd651 100755 --- a/kde/kde/Pkgfile +++ b/kde/kde/Pkgfile @@ -2,7 +2,7 @@ # URL: http://www.kde.org/ # Maintainer: NuTyX packager team # Packager: lesibel at free dot fr -# Depends on: xorg, kdelibs, kdepimlibs, kdeadmin, kdegraphics, kdemultimedia, kdeutils, kde-l10n-fr, kdebase, kdebase-runtime, kdebase-workspace, kdeplasma-addons, kdeartwork, kdeutils, kdegames, kdenetwork, kipi-plugins, desktop-file-utils, gstreamer, phonon, phonon-backend-gstreamer, gtk-kde4, gst-plugins-base +# Depends on: xorg, kdelibs, kdepimlibs, kdeadmin, kdegraphics, kdemultimedia, kdeutils, kde-l10n-fr, kdebase, kdebase-runtime, kdebase-workspace, kdeplasma-addons, kdeartwork, kdeutils, kdegames, kdenetwork, kipi-plugins, desktop-file-utils, gstreamer, phonon, phonon-backend-gstreamer, gtk-kde4, gst-plugins-base, lame # Run on: curl,ntfs-3g,qt,neon,kdelibs,kdepimlibs,kdebase,kdemultimedia,kdegraphics,kdenetwork,kde-l10n-fr,desktop-file-utils,nas,pilot-link,wicd -- cgit v1.2.3-70-g09d2