ACE-TAO の「devel」パッケージをインストールするための RPM をビルドしようとしています。
ACE-TAO の RPM が既に存在することは知っていますが、私たちのアプリケーションには不十分です。開発者に ACE+TAO のコンパイルを依頼すると、エラーが発生しやすくなります。
とにかく、これを行うためにspecファイルを作成します:
%define _topdir %(echo $PWD)/
%define _builddir %(echo $PWD/BUILD)/
Summary: Shortens the manually installation process of ACE+TAO
Name: ace-tao-amg
Version: 6.1.7
Release: 1
Source: ACE+TAO+CIAO-src-%{version}.tar.gz
License: GLP
Group: Applications/JARSS
Vendor: <<removed>>
Packager: <<removed>>
BuildRoot: %_topdir/BUILDROOT
%define debug_package %{nil}
%description
Shortens the install process for ACE+TAO
%prep
# explicitly remove the last one and setup the new one
rm -Rf %_builddir/ACE_wrappers
%setup -q -n ACE_wrappers
%build
# we want to build ACE first
export ACE_ROOT=%_builddir/ACE_wrappers
touch $ACE_ROOT/ace/config.h
echo "#include \"ace/config-linux.h\"" >> $ACE_ROOT/ace/config.h
touch $ACE_ROOT/include/makeinclude/platform_macros.GNU
echo "include %_builddir/ACE_wrappers/include/makeinclude/platform_linux.GNU" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU
#export $LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ACE_ROOT/lib
$ACE_ROOT/bin/mwc.pl -type gnuace ACE.mwc --exclude tests --exclude examples
make -j 8
# and then we want to build TAO
export TAO_ROOT=$ACE_ROOT/TAO
cd $TAO_ROOT
$ACE_ROOT/bin/mwc.pl -type gnuace TAO.mwc --exclude tests --exclude examples
make -j 8
%install
mkdir -p $RPM_BUILD_ROOT/usr/local
cp -Rf %_builddir/ACE_wrappers $RPM_BUILD_ROOT/usr/local
%files
%defattr(-,root,root,-)
/usr/local/ACE_wrappers
%post
touch /etc/ld.so.conf.d/ace-6.1.7.conf
touch /etc/ld.so.conf.d/tao-6.1.7.conf
echo "/usr/local/ACE_wrappers/lib" > /etc/ld.so.conf.d/ace-6.1.7.conf
echo "/usr/local/ACE_wrappers/TAO/lib" > /etc/ld.so.conf.d/tao-6.1.7.conf
/sbin/ldconfig
# and update the config linux and platform_linux with the correct wildcard paths
echo -e "include \$(ACE_ROOT)/include/makeinclude/platform_linux.GNU" > /usr/local/ACE_wrappers/include/makeinclude/platform_macros.GNU
%postun
rm -Rf /usr/local/ACE_wrappers
rm -Rf /etc/ld.so.conf.d/ace-6.1.7.conf
rm -Rf /etc/ld.so.conf.d/tao-6.1.7.conf
/sbin/ldconfig
これがやろうとしているのは、コンパイル済みの ACE+TAO を /usr/local にコピーすることだけです。ただし、インストールしようとすると、次のエラーが発生します。
error: Failed dependencies:
/pkg/gnu/bin//perl is needed by ace-tao-amg-6.1.7-1.x86_64
/pkg/gnu/bin//perl5 is needed by ace-tao-amg-6.1.7-1.x86_64
perl(CORBA) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(CosNotification::NotificationServiceMonitorControl) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(Net::Telnet) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::ActiveEventChannelNames) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::EventChannelConsumerNames) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::EventChannelCreationTime) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::EventChannelFactoryNames) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::EventChannelOldestEvent) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::EventChannelQueueElementCount) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::EventChannelQueueSize) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::EventChannelSlowestConsumers) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::EventChannelSupplierNames) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(NotifyMonitoringExt::InactiveEventChannelNames) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(PerlACE::Run_Test) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(Process) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(Tk) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(Tk::DialogBox) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(Tk::ROText) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(Tk::Tree) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(VmsProcess) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(Win32::Process) is needed by ace-tao-amg-6.1.7-1.x86_64
perl(XML::DOM) is needed by ace-tao-amg-6.1.7-1.x86_64
私のシステムにはありませんがperl
、これらがなくても RPM をビルドできます。
ここに私の質問があります: これらの依存関係が不要であることを RPM に明示的に伝えることは可能ですか? それらがどこから現れたのかはわかりませんが、インストールされた環境に影響を与えないことはわかっています。
ありがとう!