diff options
author | François Andriot <albator78@libertysurf.fr> | 2013-07-07 18:26:49 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2013-07-07 18:26:49 +0200 |
commit | 5a59f6fc3a0ab44fec635974127618cc4eeebf20 (patch) | |
tree | a07a44015e5713e01014d7e86848493a9f2c5f11 /redhat/applications/kdbusnotification/kdbusnotification-14.0.0.spec | |
parent | 270e590e7ecdaa02d18d563b625d74604c328c0f (diff) | |
download | tde-packaging-5a59f6fc3a0ab44fec635974127618cc4eeebf20.tar.gz tde-packaging-5a59f6fc3a0ab44fec635974127618cc4eeebf20.zip |
RPM Packaging: add applications for R14
Diffstat (limited to 'redhat/applications/kdbusnotification/kdbusnotification-14.0.0.spec')
-rw-r--r-- | redhat/applications/kdbusnotification/kdbusnotification-14.0.0.spec | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/redhat/applications/kdbusnotification/kdbusnotification-14.0.0.spec b/redhat/applications/kdbusnotification/kdbusnotification-14.0.0.spec new file mode 100644 index 000000000..4c4db932d --- /dev/null +++ b/redhat/applications/kdbusnotification/kdbusnotification-14.0.0.spec @@ -0,0 +1,129 @@ +# Default version for this component +%define tde_pkg kdbusnotification +%define tde_version 14.0.0 + +# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt". +%if "%{?tde_prefix}" != "/usr" +%define _variant .opt +%endif + +# TDE specific building variables +%define tde_bindir %{tde_prefix}/bin +%define tde_datadir %{tde_prefix}/share +%define tde_docdir %{tde_datadir}/doc +%define tde_includedir %{tde_prefix}/include +%define tde_libdir %{tde_prefix}/%{_lib} +%define tde_mandir %{tde_datadir}/man +%define tde_appdir %{tde_datadir}/applications + +%define tde_tdeappdir %{tde_appdir}/tde +%define tde_tdedocdir %{tde_docdir}/tde +%define tde_tdeincludedir %{tde_includedir}/tde +%define tde_tdelibdir %{tde_libdir}/trinity + +%define _docdir %{tde_docdir} + + +Name: trinity-%{tde_pkg} +Summary: a DBUS notification service [Trinity] + +Version: 0.1 +Release: %{?!preversion:5}%{?preversion:4_%{preversion}}%{?dist}%{?_variant} + +License: GPLv2+ +Group: Applications/Utilities + +Vendor: Trinity Project +Packager: Francois Andriot <francois.andriot@free.fr> +URL: http://www.trinitydesktop.org/ + +Prefix: %{tde_prefix} +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +Source0: %{name}-%{tde_version}%{?preversion:~%{preversion}}.tar.gz + +BuildRequires: trinity-tqtinterface-devel >= %{tde_version} +BuildRequires: trinity-arts-devel >= %{tde_version} +BuildRequires: trinity-tdelibs-devel >= %{tde_version} +BuildRequires: trinity-tdebase-devel >= %{tde_version} +BuildRequires: desktop-file-utils +BuildRequires: gtk2-devel + +%if 0%{?suse_version} +BuildRequires: dbus-1-glib-devel +%else +BuildRequires: dbus-glib-devel +%endif + +%description +kdbusnotification is a small program for Trinity that displays +DBUS notifications via unobtrusive, easily dismissed passive popups. + + +%if 0%{?suse_version} || 0%{?pclinuxos} +%debug_package +%endif + + +%prep +%setup -q -n %{name}-%{tde_version}%{?preversion:~%{preversion}} + +%__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 QTINC QTLIB +export PATH="%{tde_bindir}:${PATH}" +export LDFLAGS="-L%{tde_libdir} -I%{tde_includedir}" + +%configure \ + --prefix=%{tde_prefix} \ + --exec-prefix=%{tde_prefix} \ + --bindir=%{tde_bindir} \ + --libdir=%{tde_libdir} \ + --datadir=%{tde_datadir} \ + --includedir=%{tde_tdeincludedir} \ + --disable-rpath \ + --enable-closure + +%__make %{?_smp_mflags} + + +%install +export PATH="%{tde_bindir}:${PATH}" +%__rm -rf %{buildroot} +%__make install DESTDIR=%{buildroot} + + + +%clean +%__rm -rf %{buildroot} + + + +%files +%defattr(-,root,root,-) +%{tde_bindir}/notification-daemon-tde +%{tde_datadir}/autostart/kdbusnotification-autostart.desktop + + + +%changelog +* Fri Jul 05 2013 Francois Andriot <francois.andriot@free.fr> - 0.1-5 +- Initial release for TDE 14.0.0 + +* Mon Jun 03 2013 Francois Andriot <francois.andriot@free.fr> - 0.1-4 +- Initial release for TDE 3.5.13.2 + +* Wed Oct 03 2012 Francois Andriot <francois.andriot@free.fr> - 0.1-3 +- Initial release for TDE 3.5.13.1 + +* Tue May 01 2012 Francois Andriot <francois.andriot@free.fr> - 0.1-2 +- Rebuilt for Fedora 17 +- Fix HTML directory location +- Removes post and postun + +* Sun Oct 30 2011 Francois Andriot <francois.andriot@free.fr> - 0.1-1 +- Initial release for TDE 3.5.13 on RHEL 6, RHEL 5 and Fedora 15 |