Skip to content
Snippets Groups Projects
Commit bbb005ab authored by Simon Piette's avatar Simon Piette Committed by Tristan Matthews
Browse files

rpm: fix package naming for dependencies

Refs #51879

Change-Id: I27ef9694f0a4e1abe1d5bbbe6339ab671c0d5082
parent d22fbf61
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,11 @@ This package includes the SFLPhone common
%package gnome
Summary: Gnome interface for SFLphone
Group: Applications/Internet
Requires: %{name}-common
%if %{with video}
Requires: %{name}-common-video = %{version}
%else
Requires: %{name}-common = %{version}
%endif
Obsoletes: sflphone < 1.2.2-2
Conflicts: sflphone-video
%description gnome
......@@ -140,7 +144,11 @@ This package includes the Gnome client
%package kde-video
Summary: KDE interface for SFLphone
Group: Applications/Internet
Requires: %{name}-common
%if %{with video}
Requires: %{name}-common-video = %{version}
%else
Requires: %{name}-common = %{version}
%endif
%description kde-video
SFLphone is a robust standards-compliant enterprise software phone,
for desktop and embedded systems. It is designed to handle
......@@ -152,7 +160,11 @@ This package includes the KDE client
%package plugins
Summary: Plugins (address book) for SFLphone
Group: Applications/Internet
Requires: %{name}-common
%if %{with video}
Requires: %{name}-common-video = %{version}
%else
Requires: %{name}-common = %{version}
%endif
%description plugins
SFLphone is a robust standards-compliant enterprise software phone,
for desktop and embedded systems. It is designed to handle
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment