powerman/powerman.spec
OBS User autobuild 7911cdc144 Accepting request 40326 from hardware
Copy from hardware/powerman based on submit request 40326 from user coolo

OBS-URL: https://build.opensuse.org/request/show/40326
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/powerman?expand=0&rev=6
2010-05-19 14:17:40 +00:00

143 lines
3.6 KiB
RPMSpec

#
# spec file for package powerman (Version 2.3.5)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: powerman
Version: 2.3.5
Release: 4
License: GPL
Group: Productivity/Clustering/HA
Url: http://powerman.sourceforge.net/
Source: %{name}-%{version}.tar.bz2
Patch0: powerman-piddir.patch
Summary: Centralized Power Control for Clusters
BuildRequires: curl-devel ncurses-devel pkg-config tcpd-devel
# For directory ownership:
BuildRequires: heartbeat
#BuildRequires: genders
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %insserv_prereq
%description
PowerMan is a tool for manipulating remote power control (RPC) devices from a
central location. Several RPC varieties are supported natively by PowerMan and
Expect-like configurability simplifies the addition of new devices.
Authors:
--------
Andrew Uselton
Jim Garlick <garlick.jim@gmail.com>
Al Chu <chu11@llnl.gov>
%package -n libpowerman0
Summary: Libraries for applications using PowerMan
Group: System/Libraries
License: GPL
%description -n libpowerman0
A shared library for applications using PowerMan.
Authors:
--------
Andrew Uselton
Jim Garlick <garlick.jim@gmail.com>
Al Chu <chu11@llnl.gov>
%package devel
Requires: libpowerman0 = %{version}
Summary: Headers and libraries for developing applications using PowerMan
Group: Development/Libraries/C and C++
License: GPL
%description devel
A header file and static library for developing applications using PowerMan.
Authors:
--------
Andrew Uselton
Jim Garlick <garlick.jim@gmail.com>
Al Chu <chu11@llnl.gov>
%prep
%setup -q
%patch0
%build
# --with-genders
%configure\
--disable-static\
--with-httppower
make %{?jobs:-j%jobs}
%install
make install DESTDIR=$RPM_BUILD_ROOT
rm $RPM_BUILD_ROOT%{_libdir}/*.la
ln -s ../..%{_sysconfdir}/init.d/powerman $RPM_BUILD_ROOT%{_sbindir}/rcpowerman
mv $RPM_BUILD_ROOT%{_sysconfdir}/powerman/powerman.conf.example $RPM_BUILD_ROOT%{_sysconfdir}/powerman/powerman.conf
%clean
rm -rf $RPM_BUILD_ROOT
%preun
%{stop_on_removal}
%post
%{fillup_and_insserv -f}
%postun
%{restart_on_update}
%{insserv_cleanup}
%post -n libpowerman0 -p /sbin/ldconfig
%postun -n libpowerman0 -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc AUTHORS ChangeLog ChangeLog-1.0 DISCLAIMER COPYING NEWS README TODO
%{_bindir}/*
%{_libdir}/stonith/plugins/external/powerman
%dir %attr(0755,daemon,root) %ghost %{_localstatedir}/run/powerman
%doc %{_mandir}/man?/*.*
%exclude %doc %{_mandir}/man3/*.*
%{_sbindir}/*
%dir %config %{_sysconfdir}/powerman
%{_sysconfdir}/init.d/powerman
%config %{_sysconfdir}/powerman/powerman.conf
%{_sysconfdir}/powerman/*.dev
%files devel
%defattr(-,root,root)
%{_includedir}/*
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%doc %{_mandir}/man3/*.*
%files -n libpowerman0
%defattr(-,root,root)
%{_libdir}/*.so.*
%changelog