]> git.pld-linux.org Git - packages/arts.git/commitdiff
This commit was manufactured by cvs2git to create branch 'KDE3_BRANCH'. KDE3_BRANCH
authorcvs2git <feedback@pld-linux.org>
Sat, 9 Sep 2006 10:49:23 +0000 (10:49 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Sprout from master 2006-09-09 10:49:22 UTC Arkadiusz Miśkiewicz <arekm@maven.pl> '- fix problems with autoconf 2.60 which creates configure that runs in POSIX mode'
Delete:
    arts-ac260.patch
    arts-branch.diff
    arts.spec
    kde-ac260.patch
    kde-common-PLD.patch

arts-ac260.patch [deleted file]
arts-branch.diff [deleted file]
arts.spec [deleted file]
kde-ac260.patch [deleted file]
kde-common-PLD.patch [deleted file]

diff --git a/arts-ac260.patch b/arts-ac260.patch
deleted file mode 100644 (file)
index 712f747..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/admin/cvs.sh     2006-05-23 14:51:55.000000000 +0200
-+++ b/admin/cvs.sh     2006-07-09 20:05:01.000000000 +0200
-@@ -32,7 +32,7 @@
- required_autoconf_version="2.53 or newer"
- AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1`
- case $AUTOCONF_VERSION in
--  Autoconf*2.5* | autoconf*2.5* ) : ;;
-+  Autoconf*2.[56]* | autoconf*2.[56]* ) : ;;
-   "" )
-     echo "*** AUTOCONF NOT FOUND!."
-     echo "*** KDE requires autoconf $required_autoconf_version"
-@@ -47,7 +47,7 @@
- AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1`
- case $AUTOHEADER_VERSION in
--  Autoconf*2.5* | autoheader*2.5* ) : ;;
-+  Autoconf*2.[56]* | autoheader*2.[56]* ) : ;;
-   "" )
-     echo "*** AUTOHEADER NOT FOUND!."
-     echo "*** KDE requires autoheader $required_autoconf_version"
diff --git a/arts-branch.diff b/arts-branch.diff
deleted file mode 100644 (file)
index 7b11907..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-Index: arts/soundserver/artswrapper.c
-===================================================================
---- arts/soundserver/artswrapper.c     (.../tags/arts/1.5.3)   (revision 549703)
-+++ arts/soundserver/artswrapper.c     (.../branches/arts/1.5) (revision 549703)
-@@ -95,6 +95,10 @@
- #else
-               setreuid(-1, getuid());
- #endif
-+              if (geteuid() != getuid()) {
-+                      perror("setuid()");
-+                      return 2;
-+              }
-       }
-       if(argc == 0)
-Index: arts/soundserver/crashhandler.cc
-===================================================================
---- arts/soundserver/crashhandler.cc   (.../tags/arts/1.5.3)   (revision 549703)
-+++ arts/soundserver/crashhandler.cc   (.../branches/arts/1.5) (revision 549703)
-@@ -196,7 +196,12 @@
-           argv[i++] = NULL;
-           setgid(getgid());
--          setuid(getuid());
-+          if (getuid() != geteuid())
-+            setuid(getuid());
-+          if (getuid() != geteuid()) {
-+          perror("setuid()");
-+            exit(255);
-+          }
-           execvp(crashApp, argv);
-Index: arts/flow/gsl/gslmagic.c
-===================================================================
---- arts/flow/gsl/gslmagic.c   (.../tags/arts/1.5.3)   (revision 549703)
-+++ arts/flow/gsl/gslmagic.c   (.../branches/arts/1.5) (revision 549703)
-@@ -616,7 +616,7 @@
-     return FALSE;
-   do
--    ret = fstat (bfile->fd, &buf) < 0;
-+    ret = fstat (bfile->fd, &buf);
-   while (ret < 0 && errno == EINTR);
-   if (ret < 0)
-     {
-
-Property changes on: arts
-___________________________________________________________________
-Name: svn:externals
-   + libltdl https://svn.kde.org/home/kde/branches/KDE/3.5/kdelibs/libltdl
-admin https://svn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin
-
-
diff --git a/arts.spec b/arts.spec
deleted file mode 100644 (file)
index 9970519..0000000
--- a/arts.spec
+++ /dev/null
@@ -1,297 +0,0 @@
-#
-# Conditional build:
-%bcond_without alsa    # disable ALSA support
-%bcond_with    nas     # enable NAS support
-%bcond_without esd     # disable esound support
-%bcond_without hidden_visibility       # pass '--fvisibility=hidden' & '--fvisibility-inlines-hidden' to g++
-#
-%define                _state          stable
-%define                _kdever         3.5.4
-#
-Summary:       aRts sound server
-Summary(pl):   Serwer d¼wiêku
-Summary(pt_BR):        Servidor de sons usado pelo KDE
-Name:          arts
-Version:       1.5.4
-Release:       1
-Epoch:         13
-License:       LGPL
-Group:         Libraries
-Source0:       ftp://ftp.kde.org/pub/kde/%{_state}/%{_kdever}/src/%{name}-%{version}.tar.bz2
-# Source0-md5: 886ba4a13dc0da312d94c09f50c3ffe6
-Patch100:      %{name}-branch.diff
-URL:           http://www.arts-project.org/
-%{?with_alsa:BuildRequires:    alsa-lib-devel}
-BuildRequires: audiofile-devel
-BuildRequires: autoconf
-BuildRequires: automake
-BuildRequires: docbook-dtd41-sgml
-BuildRequires: docbook-utils >= 0.6.14
-%{?with_esd:BuildRequires:     esound-devel}
-%{?with_hidden_visibility:BuildRequires:       gcc-c++ >= 5:4.1.0-0.20051206r108118.1}
-BuildRequires: glib2-devel >= 2.0.0
-BuildRequires: jack-audio-connection-kit-devel
-BuildRequires: libmad-devel
-BuildRequires: libtool >= 2:1.5-2
-BuildRequires: libvorbis-devel
-%{?with_nas:BuildRequires:     nas-devel}
-BuildRequires: pkgconfig
-%{!?with_hidden_visibility:BuildRequires:      qt-devel >= 6:3.2.1-4}
-%{?with_hidden_visibility:BuildRequires:       qt-devel >= 6:3.3.5.051113-1}
-Obsoletes:     arts-glib
-BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-
-%description
-The Analog Real-Time Synthesizer, or aRts, is a modular system for
-synthesizing sound and music on a digital computer. Using small
-building blocks called modules, the user can easily build complex
-audio processing tools. Modules typically provide functions such as
-sound waveform generators, filters, audio effects, mixing, and
-playback of digital audio in different file formats. The artsd sound
-server mixes audio from several sources in real time, allowing
-multiple sound applications to transparently share access to sound
-hardware.
-
-%description -l pl
-Analog Real-Time Synthesizer (w skrócie aRts) to modularny system do
-obs³ugi d¼wiêku i muzyki na komputerze. Za pomoc± modu³ów u¿ytkownik
-mo¿e z powodzeniem budowaæ kompleksowe narzêdzia przetwarzania
-d¼wiêku. Modu³y umo¿liwiaj± generacjê kszta³tu fali, filtrowanie,
-efekty audio, miksowanie oraz odtwarzanie d¼wiêku cyfrowego w ró¿nych
-formatach. Serwer d¼wiêku artsd umo¿liwia równie¿ jednoczesne
-odtwarzanie d¼wiêku z wielu ¼róde³.
-
-%description -l pt_BR
-O aRts é um sintetizador analógico em tempo real que é completamente
-modular. Você pode criar sons e músicas (síntese em tempo real de
-midi) usando pequenos módulos como oscilador para criar waveforms,
-vários filtros, mixers, faders, etc. Você pode configurar tudo através
-de uma interface no KDE. O Servidor aRts é controlado via CORBA. Este
-design foi escolhido para permitir que outras aplicações usem o aRts
-como um sintetizador (ou fornecedor de filtros). Usado pelo KDE, entre
-outros.
-
-%package devel
-Summary:       Sound server - header files
-Summary(pl):   Serwer d¼wiêku - pliki nag³ówkowe
-Summary(pt_BR):        Arquivos para desenvolvimento com o o aRts
-Group:         Development/Libraries
-Requires:      %{name} = %{epoch}:%{version}-%{release}
-# not necessary for all libs (e.g. mcop), but propagated by artsflow
-%{?with_alsa:Requires: alsa-lib-devel}
-Requires:      audiofile-devel
-Requires:      esound-devel
-Requires:      glib2-devel >= 2.0.0
-Requires:      jack-audio-connection-kit-devel
-Requires:      libmad-devel
-Requires:      libvorbis-devel
-%{?with_nas:Requires:  nas-devel}
-
-%description devel
-Header files required to compile programs using arts.
-
-%description devel -l pl
-Pliki nag³ówkowe niezbêdne do budowania aplikacji korzystaj±cych z
-arts.
-
-%description devel -l pt_BR
-Arquivos para desenvolvimento com o o aRts.
-
-# separate from arts-devel because they are mostly independent and have very
-# different deps
-# there is no artsc base - it would be small and would require arts - so
-# there is no reason to separate
-%package -n artsc-devel
-Summary:       Development files for artsc libraries
-Summary(pl):   Pliki programistyczne bibliotek artsc
-Group:         Development/Libraries
-Requires:      %{name} = %{epoch}:%{version}-%{release}
-Requires:      glib2-devel >= 2.0.0
-Conflicts:     arts-devel < 12:1.2.0.031126-2
-
-%description -n artsc-devel
-Development files for artsc libraries (C interface to aRts sound
-system).
-
-%description -n artsc-devel -l pl
-Pliki programistyczne bibliotek artsc (interfejsu w C do systemu
-d¼wiêku aRts).
-
-%package X11
-Summary:       X11 dependent part of aRts
-Summary(pl):   Czê¶æ aRts wymagaj±ca X11
-Group:         X11/Libraries
-Requires:      %{name} = %{epoch}:%{version}-%{release}
-
-%description X11
-X11 dependent part of aRts (x11globalcomm module).
-
-%description X11 -l pl
-Czê¶æ aRts wymagaj±ca X11 (modu³ x11globalcomm).
-
-%package qt
-Summary:       Qt dependend part of aRts
-Summary(pl):   Czê¶æ aRts wymagaj±ca Qt
-Group:         X11/Libraries
-Requires:      %{name} = %{epoch}:%{version}-%{release}
-Requires:      qt >= 6:3.2.1-4
-
-%description qt
-Qt dependend part of aRts (qtmcop library).
-
-%description qt -l pl
-Czê¶æ aRts wymagaj±ca Qt (biblioteka qtmcop).
-
-%package qt-devel
-Summary:       Development files for qtmcop library
-Summary(pl):   Pliki programistyczne dla biblioteki qtmcop
-Group:         X11/Development/Libraries
-Requires:      %{name}-devel = %{epoch}:%{version}-%{release}
-Requires:      %{name}-qt = %{epoch}:%{version}-%{release}
-Requires:      qt-devel >= 6:3.2.1-4
-
-%description qt-devel
-Development files for qtmcop library.
-
-%description qt-devel -l pl
-Pliki programistyczne dla biblioteki qtmcop.
-
-%prep
-%setup -q
-#%patch100 -p1
-
-%build
-cp -f /usr/share/automake/config.sub admin
-
-%{__make} -f admin/Makefile.common cvs
-
-%configure \
-       %{!?with_nas:ac_cv_header_audio_audiolib_h=no} \
-%if "%{_lib}" == "lib64"
-       --enable-libsuffix=64 \
-%endif
-       --%{?debug:en}%{!?debug:dis}able-debug%{?debug:=full} \
-       %{!?debug:--disable-rpath} \
-       --disable-final \
-       %{?with_hidden_visibility:--enable-gcc-hidden-visibility} \
-       --with-qt-libraries=%{_libdir} \
-       --with%{!?with_alsa:out}-alsa
-
-%{__make} \
-       CXXLD=%{_host_cpu}-%{_vendor}-%{_os}-g++ \
-       CCLD=%{_host_cpu}-%{_vendor}-%{_os}-gcc
-
-%install
-rm -rf $RPM_BUILD_ROOT
-
-%{__make} install \
-       DESTDIR=$RPM_BUILD_ROOT
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%post  -p /sbin/ldconfig
-%postun        -p /sbin/ldconfig
-
-%post  X11 -p /sbin/ldconfig
-%postun        X11 -p /sbin/ldconfig
-
-%post  qt -p /sbin/ldconfig
-%postun        qt -p /sbin/ldconfig
-
-%files
-%defattr(644,root,root,755)
-%attr(755,root,root) %{_bindir}/artscat
-%attr(755,root,root) %{_bindir}/artsd
-%attr(755,root,root) %{_bindir}/artsdsp
-%attr(755,root,root) %{_bindir}/artsplay
-%attr(755,root,root) %{_bindir}/artsrec
-%attr(755,root,root) %{_bindir}/artsshell
-%attr(755,root,root) %{_bindir}/artswrapper
-# shared libraries
-%attr(755,root,root) %{_libdir}/libartsc.so.*.*.*
-%attr(755,root,root) %{_libdir}/libartsflow.so.*.*.*
-%attr(755,root,root) %{_libdir}/libartsflow_idl.so.*.*.*
-%attr(755,root,root) %{_libdir}/libgmcop.so.*.*.*
-%attr(755,root,root) %{_libdir}/libkmedia2.so.*.*.*
-%attr(755,root,root) %{_libdir}/libkmedia2_idl.so.*.*.*
-%attr(755,root,root) %{_libdir}/libmcop.so.*.*.*
-%attr(755,root,root) %{_libdir}/libmcop_mt.so.*.*.*
-%attr(755,root,root) %{_libdir}/libsoundserver_idl.so.*.*.*
-# lt_dlopened modules (*.la needed)
-%attr(755,root,root) %{_libdir}/libartscbackend.so.*.*.*
-%{_libdir}/libartscbackend.la
-%attr(755,root,root) %{_libdir}/libartsdsp.so.*.*.*
-%{_libdir}/libartsdsp.la
-%attr(755,root,root) %{_libdir}/libartsdsp_st.so.*.*.*
-%{_libdir}/libartsdsp_st.la
-%attr(755,root,root) %{_libdir}/libartsgslplayobject.so.*.*.*
-%{_libdir}/libartsgslplayobject.la
-%attr(755,root,root) %{_libdir}/libartswavplayobject.so.*.*.*
-%{_libdir}/libartswavplayobject.la
-#
-%{_libdir}/mcop
-#%{_mandir}/man1/artscat.1*
-#%{_mandir}/man1/artsd.1*
-#%{_mandir}/man1/artsdsp.1*
-#%{_mandir}/man1/artsplay.1*
-#%{_mandir}/man1/artsrec.1*
-#%{_mandir}/man1/artsshell.1*
-#%{_mandir}/man1/artswrapper.1*
-
-%files devel
-%defattr(644,root,root,755)
-%attr(755,root,root) %{_bindir}/mcopidl
-%attr(755,root,root) %{_libdir}/libartsflow.so
-%attr(755,root,root) %{_libdir}/libartsflow_idl.so
-%attr(755,root,root) %{_libdir}/libartsgslplayobject.so
-%attr(755,root,root) %{_libdir}/libartswavplayobject.so
-%attr(755,root,root) %{_libdir}/libgmcop.so
-%attr(755,root,root) %{_libdir}/libkmedia2.so
-%attr(755,root,root) %{_libdir}/libkmedia2_idl.so
-%attr(755,root,root) %{_libdir}/libmcop.so
-%attr(755,root,root) %{_libdir}/libmcop_mt.so
-%attr(755,root,root) %{_libdir}/libsoundserver_idl.so
-# it seems to be only (lt_)dlopened, nothing links with it - so not needed
-# %attr(755,root,root) %{_libdir}/libx11globalcomm.so
-# shared libraries
-%{_libdir}/libartsflow.la
-%{_libdir}/libartsflow_idl.la
-%{_libdir}/libgmcop.la
-%{_libdir}/libkmedia2.la
-%{_libdir}/libkmedia2_idl.la
-%{_libdir}/libmcop.la
-%{_libdir}/libmcop_mt.la
-%{_libdir}/libsoundserver_idl.la
-#
-%{_includedir}/arts
-%exclude %{_includedir}/arts/qiomanager.h
-#%{_mandir}/man1/mcopidl.1*
-
-%files -n artsc-devel
-%defattr(644,root,root,755)
-%attr(755,root,root) %{_bindir}/artsc-config
-%attr(755,root,root) %{_libdir}/libartsc.so
-%attr(755,root,root) %{_libdir}/libartscbackend.so
-%attr(755,root,root) %{_libdir}/libartsdsp.so
-%attr(755,root,root) %{_libdir}/libartsdsp_st.so
-%{_libdir}/libartsc.la
-%{_includedir}/artsc
-#%{_mandir}/man1/artsc-config.1*
-
-%files X11
-%defattr(644,root,root,755)
-# lt_dlopened module (.la needed)
-%attr(755,root,root) %{_libdir}/libx11globalcomm.so.*.*.*
-%{_libdir}/libx11globalcomm.la
-
-%files qt
-%defattr(644,root,root,755)
-# shared library
-%attr(755,root,root) %{_libdir}/libqtmcop.so.*.*.*
-
-%files qt-devel
-%defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/libqtmcop.so
-%{_libdir}/libqtmcop.la
-%{_includedir}/arts/qiomanager.h
diff --git a/kde-ac260.patch b/kde-ac260.patch
deleted file mode 100644 (file)
index 17567e3..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
---- dbus-1-qt3-0.2/admin/cvs.sh.wigeta 2006-08-17 20:33:33.000000000 +0200
-+++ dbus-1-qt3-0.2/admin/cvs.sh        2006-08-17 20:34:23.000000000 +0200
-@@ -32,7 +32,7 @@
- required_autoconf_version="2.53 or newer"
- AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1`
- case $AUTOCONF_VERSION in
--  Autoconf*2.5* | autoconf*2.5* ) : ;;
-+  Autoconf*2.[56]* | autoconf*2.[56]* ) : ;;
-   "" )
-     echo "*** AUTOCONF NOT FOUND!."
-     echo "*** KDE requires autoconf $required_autoconf_version"
-@@ -47,7 +47,7 @@
- AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1`
- case $AUTOHEADER_VERSION in
--  Autoconf*2.5* | autoheader*2.5* ) : ;;
-+  Autoconf*2.[56]* | autoheader*2.[56]* ) : ;;
-   "" )
-     echo "*** AUTOHEADER NOT FOUND!."
-     echo "*** KDE requires autoheader $required_autoconf_version"
diff --git a/kde-common-PLD.patch b/kde-common-PLD.patch
deleted file mode 100644 (file)
index 0828582..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-diff -urN kdelibs-3.5.3.or/admin/acinclude.m4.in kdelibs-3.5.3/admin/acinclude.m4.in
---- kdelibs-3.5.3.or/admin/acinclude.m4.in     2006-05-23 13:02:06.000000000 +0000
-+++ kdelibs-3.5.3/admin/acinclude.m4.in        2006-07-01 14:55:49.345359250 +0000
-@@ -428,7 +428,7 @@
- if test "$1" = "default"; then
-   if test -z "$kde_htmldir"; then
--    kde_htmldir='\${datadir}/doc/HTML'
-+    kde_htmldir='/usr/share/doc/kde/HTML'
-   fi
-   if test -z "$kde_appsdir"; then
-     kde_appsdir='\${datadir}/applnk'
-@@ -2977,41 +2977,6 @@
- AC_DEFUN([KDE_CHECK_FOR_BAD_COMPILER],
- [
--  AC_MSG_CHECKING([whether $CC is blacklisted])
--
--  dnl In theory we have tu run this test against $CC and $CXX
--  dnl in C and in C++ mode, because its perfectly legal for
--  dnl the user to mix compiler versions, since C has a defined
--  dnl ABI. 
--  dnl 
--  dnl For now, we assume the user is not on crack.
--
--  AC_TRY_COMPILE([
--#ifdef __GNUC__
--#if __GNUC__ == 4 && __GNUC_MINOR__ == 0 && __GNUC_PATCHLEVEL__ == 0
--choke me
--#endif
--#endif
--], ,
--  kde_bad_compiler=no, 
--  kde_bad_compiler=yes
--)
--
--  AC_MSG_RESULT($kde_bad_compiler)
--
--if test "$kde_bad_compiler" = "yes"; then
--  AC_MSG_ERROR([
--
--This particular compiler version is blacklisted because it
--is known to miscompile KDE. Please use a newer version, or
--if that is not yet available, choose an older version. 
--
--Please do not report a bug or bother us reporting this
--configure error. We know about it, and we introduced
--it by intention to avoid untraceable bugs or crashes in KDE.
--
--])
--fi
- ])
-@@ -3153,8 +3118,6 @@
-   AC_PROG_CXX
--  KDE_CHECK_FOR_BAD_COMPILER
--
-   if test "$GXX" = "yes" || test "$CXX" = "KCC"; then
-     if test "$kde_use_debug_code" != "no"; then
-       if test "$CXX" = "KCC"; then
-@@ -4579,9 +4542,9 @@
-   LIBPYTHON=-lpython$version
- fi
--AC_FIND_FILE(python$version/copy.py, $python_libdirs, python_moddir)
-+AC_FIND_FILE(python$version/copy.pyc, "/usr/share" , python_moddir)
- python_moddir=$python_moddir/python$version
--if test ! -r $python_moddir/copy.py; then
-+if test ! -r $python_moddir/copy.pyc; then
-   python_moddir=no
- fi
-@@ -4728,32 +4691,11 @@
- [
-     AC_MSG_CHECKING([for utmp file])
--    AC_CACHE_VAL(kde_cv_utmp_file,
--    [
--    kde_cv_utmp_file=no
-+    AC_CACHE_VAL(kde_cv_utmp_file, [kde_cv_utmp_file=/var/run/utmpx])
--    for ac_file in    \
--                      \
--      /var/run/utmp \
--      /var/adm/utmp \
--      /etc/utmp     \
--     ; \
--    do
--     if test -r "$ac_file"; then
--       kde_cv_utmp_file=$ac_file
--       break
--     fi
--    done
--    ])
--
--    if test "$kde_cv_utmp_file" != "no"; then
--      AC_DEFINE_UNQUOTED(UTMP, "$kde_cv_utmp_file", [Define the file for utmp entries])
--      $1
--      AC_MSG_RESULT($kde_cv_utmp_file)
--    else
--      $2
--      AC_MSG_RESULT([non found])
--    fi
-+    AC_DEFINE_UNQUOTED(UTMP, "$kde_cv_utmp_file", [Define the file for utmp entries])
-+    $1
-+    AC_MSG_RESULT(We are using $kde_cv_utmp_file in PLD instead.)
- ])
-@@ -5536,7 +5478,7 @@
-   kde_qtdir="$with_qt_dir"
- fi
--AC_FIND_FILE(qsql.html, [ $kde_qtdir/doc/html $QTDIR/doc/html /usr/share/doc/packages/qt3/html /usr/lib/qt/doc /usr/lib/qt3/doc /usr/lib/qt3/doc/html /usr/doc/qt3/html /usr/doc/qt3 /usr/share/doc/qt3-doc /usr/share/qt3/doc/html /usr/X11R6/share/doc/qt/html ], QTDOCDIR)
-+AC_FIND_FILE(qsql.html, [ /usr/share/doc/qt-doc/html ], QTDOCDIR)
- AC_MSG_RESULT($QTDOCDIR)
- AC_SUBST(QTDOCDIR)
-
This page took 0.145447 seconds and 4 git commands to generate.