You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
3.1 KiB
123 lines
3.1 KiB
# Default version for this component
|
|
%define kdecomp kdesudo
|
|
%define version 2.5.1
|
|
%define release 2
|
|
|
|
# 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: sudo frontend for 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.trinitydesktop.org/
|
|
|
|
Prefix: %{_prefix}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
|
|
|
BuildRequires: tqtinterface-devel
|
|
BuildRequires: trinity-arts-devel
|
|
BuildRequires: trinity-kdelibs-devel
|
|
BuildRequires: trinity-kdebase-devel
|
|
BuildRequires: desktop-file-utils
|
|
|
|
|
|
%description
|
|
KdeSudo is a graphical frontend for the sudo utility.
|
|
It allows you to run programs as another user by entering your password.
|
|
|
|
|
|
%prep
|
|
%setup -q -n applications/%{kdecomp}
|
|
|
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
|
%__sed -i admin/acinclude.m4.in \
|
|
-e "s|/usr/include/tqt|%{_includedir}/tqt|g" \
|
|
-e "s|kde_htmldir='.*'|kde_htmldir='%{tde_docdir}/HTML'|g"
|
|
|
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh" || %__cp -f "/usr/share/libtool/ltmain.sh" "admin/ltmain.sh"
|
|
%__make -f "admin/Makefile.common"
|
|
|
|
|
|
%build
|
|
unset QTDIR || : ; source /etc/profile.d/qt.sh
|
|
export PATH="%{_bindir}:${PATH}"
|
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
|
|
|
%configure \
|
|
--disable-rpath \
|
|
--with-extra-includes=%{_includedir}/tqt
|
|
|
|
%__make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
export PATH="%{_bindir}:${PATH}"
|
|
%__rm -rf %{buildroot}
|
|
%__make install DESTDIR=%{buildroot}
|
|
|
|
|
|
|
|
## File lists
|
|
# HTML (1.0)
|
|
HTML_DIR=$(kde-config --expandvars --install html)
|
|
if [ -d %{buildroot}$HTML_DIR ]; then
|
|
for lang_dir in %{buildroot}$HTML_DIR/* ; do
|
|
if [ -d $lang_dir ]; then
|
|
lang=$(basename $lang_dir)
|
|
echo "%lang($lang) $HTML_DIR/$lang/*" >> %{name}.lang
|
|
# replace absolute symlinks with relative ones
|
|
pushd $lang_dir
|
|
for i in *; do
|
|
[ -d $i -a -L $i/common ] && rm -f $i/common && ln -sf ../common $i/common
|
|
done
|
|
popd
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|
|
%clean
|
|
%__rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/kdesudo
|
|
%{tde_docdir}/HTML/en/kdesudo/common
|
|
%{tde_docdir}/HTML/en/kdesudo/index.cache.bz2
|
|
%{tde_docdir}/HTML/en/kdesudo/index.docbook
|
|
%{_datadir}/locale/fr/LC_MESSAGES/kdesudo.mo
|
|
|
|
|
|
%Changelog
|
|
* Tue May 01 2012 Francois Andriot <francois.andriot@free.fr> - 2.5.1-2
|
|
- Rebuilt for Fedora 17
|
|
- Fix HTML directory location
|
|
- Removes post and postun
|
|
|
|
* Wed Nov 02 2011 Francois Andriot <francois.andriot@free.fr> - 2.5.1-1
|
|
- Initial release for TDE 3.5.13 on RHEL 6, RHEL 5 and Fedora 15
|