You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
4.8 KiB
141 lines
4.8 KiB
## |
|
## uucp.spec -- OpenPKG RPM Package Specification |
|
## Copyright (c) 2000-2022 OpenPKG Project <http://openpkg.org/> |
|
## |
|
## Permission to use, copy, modify, and distribute this software for |
|
## any purpose with or without fee is hereby granted, provided that |
|
## the above copyright notice and this permission notice appear in all |
|
## copies. |
|
## |
|
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
|
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
|
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR |
|
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
|
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
|
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
|
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
|
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
|
## SUCH DAMAGE. |
|
## |
|
|
|
# package information |
|
Name: uucp |
|
Summary: Unix to Unix CoPy |
|
URL: http://www.gnu.org/software/uucp/ |
|
Vendor: Ian Lance Taylor |
|
Packager: OpenPKG Project |
|
Distribution: OpenPKG Community |
|
Class: BASE |
|
Group: Communication |
|
License: GPL |
|
Version: 1.07 |
|
Release: 20080101 |
|
|
|
# list of sources |
|
Source0: http://ftp.gnu.org/gnu/uucp/uucp-%{version}.tar.gz |
|
Source1: uucpd.tar.gz |
|
Source2: uucp.txt |
|
Source3: rc.uucp |
|
Patch0: uucp.patch |
|
|
|
# build information |
|
BuildPreReq: OpenPKG, openpkg >= 20160101 |
|
PreReq: OpenPKG, openpkg >= 20160101 |
|
|
|
%description |
|
Unix to Unix CoPy (UUCP) is an old-fashioned but still very |
|
useful way of spooling files (usually Email and News files) and |
|
transferring them to a remote site in batch. |
|
|
|
%track |
|
prog uucp = { |
|
version = %{version} |
|
url = http://ftp.gnu.org/gnu/uucp/ |
|
regex = uucp-(__VER__)\.tar\.gz |
|
} |
|
|
|
%prep |
|
%setup -q -c |
|
%setup -q -T -D -a 1 |
|
%patch -p0 -d uucp-%{version} |
|
%{l_shtool} subst \ |
|
-e 's;chown;true;g' \ |
|
-e 's;chgrp;true;g' \ |
|
`find uucp-%{version} -name Makefile.in -print` |
|
|
|
%build |
|
( cd uucp-%{version} |
|
CC="%{l_cc}" \ |
|
CFLAGS="%{l_cflags -O}" \ |
|
LDFLAGS="%{l_ldflags}" \ |
|
./configure \ |
|
--prefix=%{l_prefix} \ |
|
--with-newconfigdir=%{l_prefix}/etc/uucp \ |
|
--with-oldconfigdir=%{l_prefix}/etc/uucp \ |
|
--with-user=%{l_musr} |
|
%{l_make} %{l_mflags} |
|
) || exit $? |
|
( cd uucpd |
|
CC="%{l_cc}" \ |
|
CFLAGS="%{l_cflags -O}" \ |
|
./configure |
|
%{l_make} %{l_mflags} |
|
) || exit $? |
|
|
|
%install |
|
%{l_shtool} mkdir -p -f -m 755 \ |
|
$RPM_BUILD_ROOT%{l_prefix} \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/rc.d \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/uucp \ |
|
$RPM_BUILD_ROOT%{l_prefix}/bin \ |
|
$RPM_BUILD_ROOT%{l_prefix}/sbin \ |
|
$RPM_BUILD_ROOT%{l_prefix}/lib \ |
|
$RPM_BUILD_ROOT%{l_prefix}/man \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/uucp/spool \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/uucp/run \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/uucp/log |
|
( cd uucp-%{version} |
|
%{l_make} %{l_mflags} install install-info AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT" |
|
) || exit $? |
|
%{l_shtool} install -c -s -m 755 \ |
|
uucpd/uucpd $RPM_BUILD_ROOT%{l_prefix}/sbin/ |
|
for name in `grep "^<file" %{SOURCE uucp.txt} | sed -e 's;^.*name=";;' -e 's;".*$;;'`; do |
|
(echo ""; cat %{SOURCE uucp.txt}; echo "") |\ |
|
sed -e "1,/^<file name=\"$name\">/d" -e "/<\/file>/,\$d" >$name |
|
%{l_shtool} install -c -m 644 %{l_value -s -a} \ |
|
$name $RPM_BUILD_ROOT%{l_prefix}/etc/uucp/ |
|
done |
|
%{l_shtool} install -c -m 755 %{l_value -s -a} \ |
|
%{SOURCE rc.uucp} \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/ |
|
rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir |
|
chmod u+w $RPM_BUILD_ROOT%{l_prefix}/bin/* |
|
chmod u+w $RPM_BUILD_ROOT%{l_prefix}/sbin/* |
|
strip $RPM_BUILD_ROOT%{l_prefix}/bin/* 2>/dev/null || true |
|
strip $RPM_BUILD_ROOT%{l_prefix}/sbin/* 2>/dev/null || true |
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \ |
|
%{l_files_std} \ |
|
'%config %{l_prefix}/etc/uucp/*' |
|
|
|
%files -f files |
|
|
|
%clean |
|
|
|
%post |
|
# after upgrade, restart service |
|
[ $1 -eq 2 ] || exit 0 |
|
eval `%{l_rc} uucp status 2>/dev/null` |
|
[ ".$uucp_active" = .yes ] && %{l_rc} uucp restart |
|
exit 0 |
|
|
|
%preun |
|
# before erase, stop service and remove log files |
|
[ $1 -eq 0 ] || exit 0 |
|
%{l_rc} uucp stop 2>/dev/null |
|
rm -f $RPM_INSTALL_PREFIX/var/uucp/log/* >/dev/null 2>&1 || true |
|
rm -f $RPM_INSTALL_PREFIX/var/uucp/run/* >/dev/null 2>&1 || true |
|
exit 0 |
|
|
|
|