From 15b6268b647ad0aa4e74f0ecd352347cbd7fdaee Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 23 Sep 2003 16:44:38 +0000 Subject: [PATCH] Install runtime libs to a versioned directory git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@23856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/distrib/wxPythonFull.spec.in | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/wxPython/distrib/wxPythonFull.spec.in b/wxPython/distrib/wxPythonFull.spec.in index 15bb0ea82b..c7d7b8a64f 100644 --- a/wxPython/distrib/wxPythonFull.spec.in +++ b/wxPython/distrib/wxPythonFull.spec.in @@ -8,7 +8,8 @@ %define version @VERSION@ %define ver2 @VER2@ %define release 1 -%define wxpref %{pref}/lib/wxPython +%define wxprefbase %{pref}/lib/wxPython +%define wxpref %{wxprefbase}-%{version} %define name wxPython%{port}-py%{pyver} @@ -272,6 +273,18 @@ $GFL $RPM_BUILD_ROOT %{wxpref}/bin/wx-config >> DEVELLIST ##%postun ##%{clean_menus} + +%post +if [ -e %{wxprefbase} ]; then + rm %{wxprefbase} +fi +ln -s %{wxpref} %{wxprefbase} + +%postun +if [ -e %{wxprefbase} ]; then + rm %{wxprefbase} +fi + #---------------------------------------------------------------- %clean [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT