Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
commit
ebbcd9aa02
@ -0,0 +1,317 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp guidance
|
||||||
|
%define version 0.8.0svn20080103
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
%define __arch_install_post %{nil}
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: collection of KDE system administration tools for GNU/Linux [Trinity]
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.simonzone.com/software/guidance
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: kde-guidance-3.5.13.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
BuildRequires: trinity-pykdeextensions
|
||||||
|
BuildRequires: chrpath
|
||||||
|
Requires: python-trinity
|
||||||
|
Requires: %{name}-backends
|
||||||
|
Requires: hwdata
|
||||||
|
Requires: python >= 2.5
|
||||||
|
|
||||||
|
%if "%{_prefix}" == "/usr"
|
||||||
|
Conflicts: guidance-power-manager
|
||||||
|
Conflicts: kde-guidance-powermanager
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
Guidance currently consists of four programs designed to help you
|
||||||
|
look after your system:
|
||||||
|
o userconfig - User and Group administration
|
||||||
|
o serviceconfig - Service/daemon administration
|
||||||
|
o mountconfig - Disk and filesystem administration
|
||||||
|
o displayconfig - Screen and display configuration
|
||||||
|
o wineconfig - Wine configuration
|
||||||
|
|
||||||
|
These tools are available in KDE Control Center, System Settings
|
||||||
|
or can be run as standalone applications.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%package backends
|
||||||
|
Group: Applications/Utilities
|
||||||
|
Summary: collection of system administration tools for GNU/Linux [Trinity]
|
||||||
|
Requires: hwdata
|
||||||
|
Requires: python >= 2.5
|
||||||
|
|
||||||
|
%description backends
|
||||||
|
This package contains the platform neutral backends used in the
|
||||||
|
Guidance configuration tools.
|
||||||
|
|
||||||
|
|
||||||
|
%package powermanager
|
||||||
|
Group: Applications/Utilities
|
||||||
|
Summary: HAL based power manager applet [Trinity]
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description powermanager
|
||||||
|
A power management applet to indicate battery levels and perform hibernate or
|
||||||
|
suspend using HAL.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/kde-guidance
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
./setup.py build
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
./setup.py install \
|
||||||
|
--prefix=%{_prefix} \
|
||||||
|
--root=%{buildroot}
|
||||||
|
|
||||||
|
%find_lang %{kdecomp} || touch %{kdecomp}.lang
|
||||||
|
|
||||||
|
# Fix building directories stored inside .py files
|
||||||
|
for f in %{buildroot}%{_datadir}/apps/guidance/*.py; do
|
||||||
|
%__sed -i "${f}" -e "s|%{buildroot}||g"
|
||||||
|
done
|
||||||
|
|
||||||
|
##### MAIN PACKAGE INSTALLATION
|
||||||
|
# install icons to right place
|
||||||
|
%__mkdir_p %{buildroot}%{_datadir}/icons/crystalsvg/32x32/apps
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/pics/hi32-app-daemons.png \
|
||||||
|
%{buildroot}%{_datadir}/icons/crystalsvg/32x32/apps/daemons.png
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/pics/kcmpartitions.png \
|
||||||
|
%{buildroot}%{_datadir}/icons/crystalsvg/32x32/apps/disksfilesystems.png
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/pics/hi32-user.png \
|
||||||
|
%{buildroot}%{_datadir}/icons/crystalsvg/32x32/apps/userconfig.png
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/pics/hi32-display.png \
|
||||||
|
%{buildroot}%{_datadir}/icons/crystalsvg/32x32/apps/displayconfig.png
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/pics/32-wine.png \
|
||||||
|
%{buildroot}%{_datadir}/icons/crystalsvg/32x32/apps/wineconfig.png
|
||||||
|
%__install -D -p -m0644 kde/wineconfig/pics/16x16/wineconfig.png \
|
||||||
|
%{buildroot}%{_datadir}/icons/crystalsvg/16x16/apps/wineconfig.png
|
||||||
|
|
||||||
|
# fix binary-or-shlib-defines-rpath
|
||||||
|
chrpath -d %{buildroot}%{tde_libdir}/kcm_*.so.*
|
||||||
|
|
||||||
|
# fix executable-not-elf-or-script
|
||||||
|
%__chmod 0644 %{buildroot}%{_datadir}/apps/guidance/pics/kdewinewizard.png
|
||||||
|
|
||||||
|
# move python modules in %{python_sitearch}
|
||||||
|
%__mkdir_p %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/SMBShareSelectDialog.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/SimpleCommandRunner.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/displayconfig.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/displayconfigwidgets.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/fuser.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/fuser_ui.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/grubconfig.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/ktimerdialog.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/mountconfig.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/servertestdialog.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/serviceconfig.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/sizeview.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/unixauthdb.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/userconfig.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/wineconfig.py %{buildroot}%{python_sitearch}/%{name}
|
||||||
|
|
||||||
|
# fix the link properly
|
||||||
|
%__rm -f %{buildroot}%{_bindir}/*
|
||||||
|
%__ln_s -f %{python_sitearch}/%{name}/displayconfig.py %{buildroot}%{_bindir}/displayconfig
|
||||||
|
%__ln_s -f %{python_sitearch}/%{name}/mountconfig.py %{buildroot}%{_bindir}/mountconfig
|
||||||
|
%__ln_s -f %{python_sitearch}/%{name}/serviceconfig.py %{buildroot}%{_bindir}/serviceconfig
|
||||||
|
%__ln_s -f %{python_sitearch}/%{name}/userconfig.py %{buildroot}%{_bindir}/userconfig
|
||||||
|
%__ln_s -f %{python_sitearch}/%{name}/wineconfig.py %{buildroot}%{_bindir}/wineconfig
|
||||||
|
%__ln_s -f %{python_sitearch}/%{name}/grubconfig.py %{buildroot}%{_bindir}/grubconfig
|
||||||
|
|
||||||
|
# put this here since gnome people probably don't want it by default
|
||||||
|
%__ln_s -f %{_python_sitearch}/guidance-backends-trinity/displayconfig-restore.py %{buildroot}%{_bindir}/displayconfig-restore
|
||||||
|
|
||||||
|
# fix script-not-executable
|
||||||
|
%__chmod 0755 %{buildroot}%{python_sitearch}/%{name}/fuser.py
|
||||||
|
%__chmod 0755 %{buildroot}%{python_sitearch}/%{name}/grubconfig.py
|
||||||
|
|
||||||
|
# Moves libraries
|
||||||
|
%__mv -f %{buildroot}%{tde_libdir}/*.so.* %{buildroot}%{_libdir}
|
||||||
|
%__mv -f %{buildroot}%{tde_libdir}/*.so %{buildroot}%{_libdir}
|
||||||
|
%__mv -f %{buildroot}%{tde_libdir}/*.la %{buildroot}%{_libdir}
|
||||||
|
%__mv -f %{buildroot}%{tde_libdir}/*.a %{buildroot}%{_libdir}
|
||||||
|
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/applications/kde/displayconfig.desktop %{buildroot}%{_datadir}/applications/kde/guidance-displayconfig.desktop
|
||||||
|
|
||||||
|
##### BACKENDS INSTALLATION
|
||||||
|
# install displayconfig-hwprobe.py script
|
||||||
|
%__install -D -p -m0755 displayconfig/displayconfig-hwprobe.py \
|
||||||
|
%{buildroot}%{python_sitearch}/trinity-guidance-backends/displayconfig-hwprobe.py
|
||||||
|
|
||||||
|
%__mv -f %{buildroot}%{_libdir}/python*/site-packages/ixf86misc.so %{buildroot}%{python_sitearch}
|
||||||
|
%__mv -f %{buildroot}%{_libdir}/python*/site-packages/xf86misc.py* %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/MicroHAL.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/ScanPCI.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/infimport.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/displayconfigabstraction.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/displayconfig-restore.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/drivedetect.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/execwithcapture.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/wineread.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/winewrite.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/xorgconfig.py %{buildroot}%{python_sitearch}/trinity-guidance-backends
|
||||||
|
|
||||||
|
%__rm -f %{buildroot}%{_datadir}/apps/guidance/MonitorsDB
|
||||||
|
%__ln_s -f /usr/share/hwdata/MonitorsDB %{buildroot}%{_datadir}/apps/guidance/MonitorsDB
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
##### POWERMANAGER INSTALLATION
|
||||||
|
# install icon to right place
|
||||||
|
%__install -D -p -m0644 kde/powermanager/pics/battery-charging-100.png \
|
||||||
|
%{buildroot}%{_datadir}/icons/hicolor/22x22/apps/power-manager.png
|
||||||
|
%__install -D -p -m0644 kde/powermanager/pics/*.png \
|
||||||
|
%{buildroot}%{_datadir}/apps/guidance/pics/
|
||||||
|
|
||||||
|
# install desktop file
|
||||||
|
%__install -D -p -m0644 powermanager/guidance-power-manager.desktop \
|
||||||
|
%{buildroot}%{_datadir}/autostart/guidance-power-manager.desktop
|
||||||
|
|
||||||
|
# copy python modules in PYSUPPORT_PATH
|
||||||
|
%__mkdir_p %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%__cp %{buildroot}%{python_sitearch}/trinity-guidance-backends/MicroHAL.py %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/guidance-power-manager.py %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/powermanage.py %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/gpmhelper.py %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%__mv -f %{buildroot}%{_datadir}/apps/guidance/powermanager_ui.py %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%__cp powermanager/guidance_power_manager_ui.py %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%__cp powermanager/notify.py %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%__cp powermanager/tooltip.py %{buildroot}%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
|
||||||
|
# generate guidance-power-manager script
|
||||||
|
cat <<EOF >%{buildroot}%{_bindir}/guidance-power-manager
|
||||||
|
#!/bin/sh
|
||||||
|
export PYTHONPATH=%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%{python_sitearch}/trinity-guidance-powermanager/guidance-power-manager.py &
|
||||||
|
EOF
|
||||||
|
chmod +x %{buildroot}%{_bindir}/guidance-power-manager
|
||||||
|
|
||||||
|
# fix script-not-executable
|
||||||
|
chmod 0755 %{buildroot}%{python_sitearch}/trinity-guidance-powermanager/powermanage.py
|
||||||
|
chmod 0755 %{buildroot}%{python_sitearch}/trinity-guidance-powermanager/gpmhelper.py
|
||||||
|
|
||||||
|
|
||||||
|
# Replace all '#!' calls to python with /usr/bin/python
|
||||||
|
# and make them executable
|
||||||
|
for i in `find %{buildroot} -type f`; do
|
||||||
|
sed '1s,#!.*python[^ ]*\(.*\),#! /usr/bin/python\1,' \
|
||||||
|
$i > $i.temp;
|
||||||
|
if cmp --quiet $i $i.temp; then
|
||||||
|
rm -f $i.temp;
|
||||||
|
else
|
||||||
|
mv -f $i.temp $i;
|
||||||
|
chmod 755 $i;
|
||||||
|
echo "fixed interpreter: $i";
|
||||||
|
fi;
|
||||||
|
done
|
||||||
|
|
||||||
|
find %{buildroot} -name "*.egg-info" -exec rm -f {} \;
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
/sbin/ldconfig || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
/sbin/ldconfig || :
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{kdecomp}.lang
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc ChangeLog COPYING README TODO
|
||||||
|
%{_bindir}/displayconfig
|
||||||
|
%{_bindir}/displayconfig-restore
|
||||||
|
%{_bindir}/grubconfig
|
||||||
|
%{_bindir}/mountconfig
|
||||||
|
%{_bindir}/serviceconfig
|
||||||
|
%{_bindir}/userconfig
|
||||||
|
%{_bindir}/wineconfig
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_libdir}/*.la
|
||||||
|
%{_libdir}/*.a
|
||||||
|
%{_datadir}/apps/guidance
|
||||||
|
%{python_sitearch}/trinity-guidance
|
||||||
|
%{_datadir}/applications/kde/*.desktop
|
||||||
|
%{tde_docdir}/HTML/en/guidance
|
||||||
|
%{_datadir}/icons/crystalsvg/*/*/*.png
|
||||||
|
%exclude %{_datadir}/icons/crystalsvg/*/*/*.svg
|
||||||
|
#%{python_sitearch}/guidance-*.egg-info
|
||||||
|
%exclude /etc/X11/Xsession.d/40guidance-displayconfig_restore
|
||||||
|
|
||||||
|
%files -n trinity-guidance-backends
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{python_sitearch}/trinity-guidance-backends
|
||||||
|
%{python_sitearch}/ixf86misc.so
|
||||||
|
%{_datadir}/apps/guidance/vesamodes
|
||||||
|
%{_datadir}/apps/guidance/extramodes
|
||||||
|
%{_datadir}/apps/guidance/widescreenmodes
|
||||||
|
%{_datadir}/apps/guidance/Cards+
|
||||||
|
%{_datadir}/apps/guidance/pcitable
|
||||||
|
%{_datadir}/apps/guidance/MonitorsDB
|
||||||
|
|
||||||
|
|
||||||
|
%files powermanager
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_bindir}/guidance-power-manager
|
||||||
|
%{python_sitearch}/trinity-guidance-powermanager
|
||||||
|
%{_datadir}/icons/hicolor/22x22/apps/power-manager.png
|
||||||
|
%{_datadir}/apps/guidance/pics/ac-adapter.png
|
||||||
|
%{_datadir}/apps/guidance/pics/battery*.png
|
||||||
|
%{_datadir}/apps/guidance/pics/processor.png
|
||||||
|
%{_datadir}/autostart/guidance-power-manager.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Thu Dec 01 2011 Francois Andriot <francois.andriot@free.fr> - 0.8.0svn20080103-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
@ -0,0 +1,149 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp pykdeextensions
|
||||||
|
%define version 0.4.0
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: Python packages to support KDE applications (scripts) [Trinity]
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.simonzone.com/software/pykdeextensions
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
BuildRequires: PyQt-devel
|
||||||
|
BuildRequires: python-trinity-devel
|
||||||
|
|
||||||
|
%description
|
||||||
|
PyKDE Extensions is a collection of software and Python packages
|
||||||
|
to support the creation and installation of KDE applications.
|
||||||
|
|
||||||
|
|
||||||
|
%package -n trinity-libpythonize0
|
||||||
|
Summary: Python packages to support KDE applications (library) [Trinity]
|
||||||
|
Group: Environment/Libraries
|
||||||
|
|
||||||
|
%description -n trinity-libpythonize0
|
||||||
|
PyKDE Extensions is a collection of software and Python packages
|
||||||
|
to support the creation and installation of KDE applications.
|
||||||
|
|
||||||
|
This package contains the libpythonize library files.
|
||||||
|
|
||||||
|
|
||||||
|
%package -n trinity-libpythonize0-devel
|
||||||
|
Summary: Python packages to support KDE applications (development) [Trinity]
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: trinity-libpythonize0
|
||||||
|
|
||||||
|
%description -n trinity-libpythonize0-devel
|
||||||
|
PyKDE Extensions is a collection of software and Python packages
|
||||||
|
to support the creation and installation of KDE applications.
|
||||||
|
|
||||||
|
This package contains the libpythonize development files.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n libraries/%{kdecomp}
|
||||||
|
|
||||||
|
# Changes library directory to 'lib64'
|
||||||
|
for f in src/*.py; do
|
||||||
|
%__sed -i "${f}" \
|
||||||
|
-e "s,%{_prefix}/lib,%{_libdir},g" \
|
||||||
|
-e "s,/usr/lib/pyshared/python2.6,%{python_sitearch},g" \
|
||||||
|
-e "s|'pykde-dir=',None,|'pykde-dir=','%{python_sitearch}',|g" \
|
||||||
|
-e "s|self.pykde_dir = None|self.pykde_dir = \"%{python_sitearch}\"|g" \
|
||||||
|
-e "s|/usr/include/tqt|%{_includedir}/tqt|g"
|
||||||
|
done
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
./setup.py build_libpythonize
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
./setup.py install \
|
||||||
|
--root=%{buildroot} \
|
||||||
|
--prefix=%{_prefix} \
|
||||||
|
--install-clib=%{_libdir} \
|
||||||
|
--install-cheaders=%{tde_includedir}
|
||||||
|
|
||||||
|
# Removes BUILDROOT directory reference in installed files
|
||||||
|
for f in \
|
||||||
|
%{buildroot}%{_libdir}/libpythonize.la \
|
||||||
|
%{buildroot}%{_datadir}/apps/pykdeextensions/app_templates/kcontrol_module/src/KcontrolModuleWidgetUI.py \
|
||||||
|
%{buildroot}%{_datadir}/apps/pykdeextensions/app_templates/kdeutility/src/KDEUtilityDialogUI.py \
|
||||||
|
; do
|
||||||
|
%__sed -i "${f}" -e "s,%{buildroot},,g"
|
||||||
|
:
|
||||||
|
done
|
||||||
|
|
||||||
|
# Moves PYTHON libraries to distribution directory
|
||||||
|
%__mkdir_p %{buildroot}%{python_sitearch}
|
||||||
|
%__mv -f %{buildroot}%{_prefix}/lib/python*/site-packages/* %{buildroot}%{python_sitearch}
|
||||||
|
%__rm -rf %{buildroot}%{_prefix}/lib/python2.7/site-packages
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post -n trinity-libpythonize0 -p /sbin/ldconfig
|
||||||
|
%postun -n trinity-libpythonize0 -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%post -n trinity-libpythonize0-devel -p /sbin/ldconfig
|
||||||
|
%postun -n trinity-libpythonize0-devel -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc AUTHORS ChangeLog COPYING NEWS README TODO
|
||||||
|
%{_datadir}/apps/pykdeextensions
|
||||||
|
%{tde_docdir}/HTML/en/pykdeextensions
|
||||||
|
%{python_sitearch}/*
|
||||||
|
|
||||||
|
%files -n trinity-libpythonize0
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_libdir}/libpythonize.so.*
|
||||||
|
|
||||||
|
%files -n trinity-libpythonize0-devel
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{tde_includedir}/*.h
|
||||||
|
%{_libdir}/libpythonize.a
|
||||||
|
%{_libdir}/libpythonize.la
|
||||||
|
%{_libdir}/libpythonize.so
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Thu Dec 01 2011 Francois Andriot <francois.andriot@free.fr> - 0.8.0svn20080103-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
@ -0,0 +1,11 @@
|
|||||||
|
--- configure.py.ORI 2011-12-03 17:07:41.589390850 +0100
|
||||||
|
+++ configure.py 2011-12-03 17:14:35.226888035 +0100
|
||||||
|
@@ -786,7 +786,7 @@
|
||||||
|
sipconfig.ParentMakefile(
|
||||||
|
configuration = pyqtcfg,
|
||||||
|
subdirs = subdirs,
|
||||||
|
- installs= [("pykdeconfig.py", opt_pykdemoddir), (srcPath("contrib/kdepyuic"), sipcfg.default_bin_dir)]
|
||||||
|
+ installs= [("pykdeconfig.py", opt_pykdemoddir), (srcPath("contrib/kdepyuic"), opt_kdebasedir + "/bin")]
|
||||||
|
).generate()
|
||||||
|
|
||||||
|
|
@ -0,0 +1,129 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp python-trinity
|
||||||
|
%define version 3.16.3
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: %{kdecomp}
|
||||||
|
Summary: Trinity bindings for Python [Trinity]
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.simonzone.com/software/pykdeextensions
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
|
||||||
|
## RHEL/Fedora patches
|
||||||
|
Patch0: python-trinity-3.5.13-install_directories.patch
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
BuildRequires: python
|
||||||
|
BuildRequires: PyQt-devel
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
Python binding module that provides wide access to the Trinity API,
|
||||||
|
also known as PyKDE. Using this, you'll get (for example) classes
|
||||||
|
from kio, kjs, khtml and kprint.
|
||||||
|
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Trinity bindings for Python - Development files and scripts [Trinity]
|
||||||
|
Group: Development/Libraries
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
Development .sip files with definitions of PyKDE classes. They
|
||||||
|
are needed to build PyKDE, but also as building blocks of other
|
||||||
|
packages based on them.
|
||||||
|
The package also contains kdepyuic, a wrapper script around PyQt's
|
||||||
|
user interface compiler.
|
||||||
|
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation and examples for PyKDE [Trinity]
|
||||||
|
Group: Development/Libraries
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
General documentation and examples for PyKDE providing programming
|
||||||
|
tips and working code you can use to learn from.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n libraries/%{kdecomp}
|
||||||
|
%patch0 -p0
|
||||||
|
|
||||||
|
# Hack to get TQT include files under /opt
|
||||||
|
%__sed -i "configure.py" \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g"
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%__python configure.py \
|
||||||
|
-k %{_prefix} \
|
||||||
|
-L %{_lib} \
|
||||||
|
-v %{_datadir}/sip/trinity
|
||||||
|
%__make %{_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
# Install documentation
|
||||||
|
%__mkdir_p %{buildroot}%{tde_docdir}/HTML/en
|
||||||
|
%__cp -rf doc %{buildroot}%{tde_docdir}/HTML/en/%{name}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||||
|
%{python_sitearch}/*.so
|
||||||
|
%{python_sitearch}/dcop*.py*
|
||||||
|
%{python_sitearch}/pykde*.py*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_bindir}/kdepyuic
|
||||||
|
%{_datadir}/sip/trinity
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{tde_docdir}/HTML/en/%{name}
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Fri Dec 02 2011 Francois Andriot <francois.andriot@free.fr> - 3.16.3-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
Loading…
Reference in new issue