2022-05-05 12:34:50 -05:00
|
|
|
# RPM Metadata
|
|
|
|
%define _component_name awips2-cave-wrapper
|
|
|
|
%define _component_project_dir awips2.cave/Installer.cave-wrapper
|
|
|
|
%define _component_zip_file_name CAVE-linux.gtk.x86_64.zip
|
|
|
|
#
|
|
|
|
# awips2-cave-wrapper Spec File
|
|
|
|
#
|
|
|
|
%define __prelink_undo_cmd %{nil}
|
|
|
|
# Disable the brp-python-bytecompile script
|
|
|
|
%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
|
|
|
|
# Disable the rpm jar repack script
|
|
|
|
%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-java-repack-jars[[:space:]].*$!!g')
|
|
|
|
|
|
|
|
Name: %{_component_name}
|
|
|
|
Summary: awips2-cave-wrapper Installation
|
|
|
|
Version: %{_component_version}
|
|
|
|
Release: %{_component_release}
|
|
|
|
Group: AWIPSII
|
|
|
|
BuildRoot: /tmp
|
|
|
|
URL: N/A
|
|
|
|
License: N/A
|
|
|
|
Distribution: N/A
|
2023-01-23 20:38:50 +00:00
|
|
|
Vendor: %{_build_vendor}
|
2022-05-05 12:34:50 -05:00
|
|
|
Packager: %{_build_site}
|
|
|
|
|
|
|
|
AutoReq: no
|
|
|
|
Provides: %{_component_name}
|
|
|
|
Requires: awips2
|
|
|
|
Requires: awips2-cave
|
|
|
|
|
|
|
|
BuildRequires: awips2-java
|
|
|
|
|
|
|
|
%description
|
|
|
|
Provides scripts and other Viz configuration that make starting CAVE easier.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
# Verify That The User Has Specified A BuildRoot.
|
|
|
|
if [ "${RPM_BUILD_ROOT}" = "/tmp" ]
|
|
|
|
then
|
|
|
|
echo "An Actual BuildRoot Must Be Specified. Use The --buildroot Parameter."
|
|
|
|
echo "Unable To Continue ... Terminating"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ -d ${RPM_BUILD_ROOT} ]; then
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
fi
|
|
|
|
CAVE_DIST_DIR="%{_baseline_workspace}/rpms/awips2.cave/setup/dist"
|
|
|
|
|
|
|
|
if [ ! -f ${CAVE_DIST_DIR}/%{_component_zip_file_name} ]; then
|
|
|
|
echo "ERROR: Unable to find - ${CAVE_DIST_DIR}/%{_component_zip_file_name}."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
%build
|
|
|
|
pushd . > /dev/null 2>&1
|
|
|
|
cd %{_baseline_workspace}/rpms/awips2.cave/Installer.cave-wrapper/scripts/memory/iniFileGenerator/src
|
|
|
|
CPATH="."
|
|
|
|
for JAR in `ls %{_baseline_workspace}/javax.xml.bind/*.jar %{_baseline_workspace}/javax.activation/*.jar`; do
|
|
|
|
CPATH=$CPATH:$JAR
|
|
|
|
done
|
|
|
|
/awips2/java/bin/javac -classpath $CPATH main/*
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
popd > /dev/null 2>&1
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
|
|
|
for dir in \
|
|
|
|
"${RPM_BUILD_ROOT}/awips2/cave" \
|
|
|
|
"${RPM_BUILD_ROOT}/etc/profile.d" \
|
|
|
|
"${RPM_BUILD_ROOT}/usr/share/applications" \
|
|
|
|
; do
|
|
|
|
mkdir -p "$dir" || exit 1
|
|
|
|
done
|
|
|
|
|
|
|
|
# The profile.d scripts
|
|
|
|
PROFILE_D_DIR="%{_baseline_workspace}/rpms/common/environment/awips2-cave/profile.d"
|
|
|
|
cp ${PROFILE_D_DIR}/* ${RPM_BUILD_ROOT}/etc/profile.d
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The AWIPS II version script.
|
|
|
|
VERSIONS_SCRIPT="%{_baseline_workspace}/rpms/utility/scripts/versions.sh"
|
|
|
|
cp ${VERSIONS_SCRIPT} ${RPM_BUILD_ROOT}/awips2/cave
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# testWS script
|
|
|
|
TEXTWS_SCRIPT="%{_baseline_workspace}/rpms/utility/scripts/textWS.sh"
|
|
|
|
cp ${TEXTWS_SCRIPT} ${RPM_BUILD_ROOT}/awips2/cave
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# checkCfg script
|
|
|
|
CHKCFG_SCRIPT="%{_baseline_workspace}/rpms/utility/scripts/checkCfg.sh"
|
|
|
|
cp ${CHKCFG_SCRIPT} ${RPM_BUILD_ROOT}/awips2/cave
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-01-23 20:38:50 +00:00
|
|
|
# cave autostart script.
|
2022-05-05 12:34:50 -05:00
|
|
|
CAVE_SCRIPTS_DIR="%{_baseline_workspace}/rpms/%{_component_project_dir}/scripts"
|
2023-01-23 20:38:50 +00:00
|
|
|
CAVE_AUTO_SCRIPT="${CAVE_SCRIPTS_DIR}/autostart/cave.desktop"
|
|
|
|
cp ${CAVE_AUTO_SCRIPT} ${RPM_BUILD_ROOT}/usr/share/applications
|
2022-05-05 12:34:50 -05:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# CAVE scripts and other required distributables.
|
|
|
|
_build_cave_static="%{_baseline_workspace}/build/static"
|
|
|
|
# we want the common directory, the common linux directory, and the architecture-specific Linux directory.
|
|
|
|
_common_dir="${_build_cave_static}/common/cave"
|
|
|
|
_linux_dir="${_build_cave_static}/linux/cave"
|
|
|
|
_linux_arch_dir="${_build_cave_static}/linux.x86_64/cave"
|
|
|
|
|
|
|
|
cp -rv ${_common_dir}/* ${RPM_BUILD_ROOT}/awips2/cave
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
cp -rv ${_linux_dir}/* ${RPM_BUILD_ROOT}/awips2/cave
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
cp -rv ${_linux_arch_dir}/* ${RPM_BUILD_ROOT}/awips2/cave
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
CAVE_DIST_DIR="%{_baseline_workspace}/rpms/awips2.cave/setup/dist"
|
|
|
|
_cave_zip=${CAVE_DIST_DIR}/%{_component_zip_file_name}
|
|
|
|
_mem_settings_xml=%{_baseline_workspace}/rpms/awips2.cave/Installer.cave-wrapper/scripts/memory/memorySettings.xml
|
|
|
|
_ini_destination=${RPM_BUILD_ROOT}/awips2/cave
|
|
|
|
|
|
|
|
pushd . > /dev/null 2>&1
|
|
|
|
cd %{_baseline_workspace}/rpms/awips2.cave/Installer.cave-wrapper/scripts/memory/iniFileGenerator/src
|
|
|
|
CPATH="."
|
|
|
|
for JAR in `ls %{_baseline_workspace}/javax.xml.bind/*.jar %{_baseline_workspace}/javax.activation/*.jar`; do
|
|
|
|
CPATH=$CPATH:$JAR
|
|
|
|
done
|
|
|
|
/awips2/java/bin/java -cp $CPATH main/IniFileGenerator "${_cave_zip}" "${_mem_settings_xml}" "${_ini_destination}"
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
rm -fv main/*.class
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
popd > /dev/null 2>&1
|
|
|
|
|
|
|
|
pushd . > /dev/null 2>&1
|
|
|
|
cd %{_baseline_workspace}/viz.updater
|
|
|
|
if [ ! -d bin ]; then
|
|
|
|
mkdir -p bin
|
|
|
|
fi
|
|
|
|
/awips2/ant/bin/ant -Ddest.dir=${RPM_BUILD_ROOT}/awips2/cave \
|
|
|
|
-Declipse.dir=%{_uframe_eclipse} -Dbaseline.dir=%{_baseline_workspace} -f build.xml
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
popd > /dev/null 2>&1
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(644,root,root,-)
|
|
|
|
/etc/profile.d/awips2Cave.csh
|
|
|
|
/etc/profile.d/awips2Cave.sh
|
2023-01-23 20:38:50 +00:00
|
|
|
/usr/share/applications/cave.desktop
|
2022-05-05 12:34:50 -05:00
|
|
|
|
|
|
|
%defattr(644,awips,fxalpha,755)
|
|
|
|
/awips2/cave/*.ini
|
|
|
|
%exclude /awips2/cave/etc/
|
|
|
|
|
|
|
|
%defattr(755,awips,fxalpha,755)
|
|
|
|
%dir /awips2/cave/caveEnvironment
|
|
|
|
/awips2/cave/caveEnvironment/*
|
|
|
|
/awips2/cave/*.sh
|
2023-01-23 20:38:50 +00:00
|
|
|
/awips2/cave/cave.png
|
2022-05-05 12:34:50 -05:00
|
|
|
/awips2/cave/VizUpdater.jar
|
|
|
|
# not a noarch RPM due to the presence of the architecture-specific libraries.
|
|
|
|
%dir /awips2/cave/lib64
|
|
|
|
/awips2/cave/lib64/*
|