summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2014-10-07 20:15:11 +0200
committerFrançois Andriot <albator78@libertysurf.fr>2014-10-07 20:15:11 +0200
commit8c8c70f82606b92be6bde6660c91b6077c3fd47d (patch)
tree1396922df1fb754e67e96150d10569f8db79857c
parent01a7863524342e1aec31679e55d08830cc571066 (diff)
downloadtde-packaging-8c8c70f82606b92be6bde6660c91b6077c3fd47d.tar.gz
tde-packaging-8c8c70f82606b92be6bde6660c91b6077c3fd47d.zip
RPM Packaging: add brp-check-trinity
-rw-r--r--redhat/extras/brp-check-trinity/brp-check-trinity.spec99
1 files changed, 99 insertions, 0 deletions
diff --git a/redhat/extras/brp-check-trinity/brp-check-trinity.spec b/redhat/extras/brp-check-trinity/brp-check-trinity.spec
new file mode 100644
index 000000000..758075fec
--- /dev/null
+++ b/redhat/extras/brp-check-trinity/brp-check-trinity.spec
@@ -0,0 +1,99 @@
+#
+# spec file for package brp-check-trinity
+#
+# Copyright (c) 2014 François Andriot <francois.andriot@free.fr>
+#
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An "Open Source License" is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
+#
+# Please submit bugfixes or comments via http:/www.trinitydesktop.org/
+#
+
+# TDE variables
+%define tde_version 14.0.0
+%define tde_prefix /opt/trinity
+
+Name: brp-check-trinity
+Version: 1.0
+Release: 1%{?dist}
+Summary: Build root policy check scripts for Trinity
+Group: System Environment/Daemons
+URL: http://www.trinitydesktop.org/
+
+%if 0%{?suse_version}
+License: GPL-2.0+
+%else
+License: GPLv2+
+%endif
+
+#Vendor: Trinity Project
+#Packager: Francois Andriot <francois.andriot@free.fr>
+
+Prefix: %{tde_prefix}
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch: noarch
+
+BuildRequires: brp-check-suse
+BuildRequires: brp-extract-appdata
+Requires: brp-check-suse
+Requires: brp-extract-appdata
+Requires: sed
+
+
+
+%description
+This package dynamically patches the openSUSE brp script to allow
+building of Trinity Desktop Environment (TDE) instead of KDE3.
+It should not be installed on runtime computer.
+
+
+%files
+
+%post
+echo "Patching openSUSE brp scripts ..."
+sed -i.orig \
+ /usr/lib/rpm/brp-desktop.data/applications.menu \
+ /usr/lib/rpm/brp-desktop.data/kde-settings.menu \
+ /usr/lib/rpm/brp-desktop.data/xdg_menu \
+ /usr/lib/rpm/brp-suse.d/brp-25-symlink \
+ /usr/lib/rpm/brp-suse.d/brp-72-extract-appdata \
+ /usr/lib/rpm/suse_update_desktop_file.sh \
+ -e "s|opt/kde3|opt/trinity|g" \
+ -e "s|kde-config|tde-config|g" \
+ -e "s|kdesu|tdesu|g" \
+ -e "s|kde-settings-|tde-settings-|g" \
+ -e "s|doc/kde|doc/tde|g" \
+ -e "s|kde_xdgdata|tde_xdgdata|g" \
+ -e "s|applications/kde|applications/tde|g" \
+ -e "s|KDE|TDE|g"
+
+
+%postun
+find /usr/lib/rpm -name "*.orig" | while read f; do
+ echo "Restoring original file: '${f%.orig}'"
+ mv -f "${f}" "${f%.orig}"
+done
+
+
+
+##########
+
+%prep
+
+%build
+
+%install
+
+%clean
+%__rm -rf %{?buildroot}
+
+
+%changelog
+* Fri Jul 05 2013 Francois Andriot <francois.andriot@free.fr> - 1.0-1
+- Initial release for TDE R14.0.0