Compare commits
9 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b475514548 | ||
|
|
f8dd132ef0 | ||
|
|
26dca8c2ce | ||
|
|
74d73653cb | ||
|
|
9a2e665f52 | ||
|
|
1ae876fa33 | ||
|
|
5cffc8eb45 | ||
|
|
23ef787762 | ||
|
|
43f846809d |
5 changed files with 83 additions and 35 deletions
|
|
@ -1 +0,0 @@
|
|||
alpine-0.9999.tar.bz2
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
alpine-2.00.tar.bz2
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: alpine
|
||||
# $Id$
|
||||
NAME := alpine
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
93
alpine.spec
93
alpine.spec
|
|
@ -2,17 +2,16 @@
|
|||
|
||||
Summary: UW Alpine mail user agent
|
||||
Name: alpine
|
||||
Version: 0.9999
|
||||
Release: 2%{?dist}
|
||||
Version: 2.00
|
||||
Release: 1%{?dist}
|
||||
|
||||
License: Apache Software License
|
||||
License: ASL 2.0
|
||||
Group: Applications/Internet
|
||||
URL: http://www.washington.edu/alpine
|
||||
#Source0: ftp://ftp.cac.washington.edu/alpine/%{name}-%{version}.tar.bz2
|
||||
# removed cc5.sol problem file, see BZ for details
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
# FTP: ftp://ftp.cac.washington.edu/alpine/
|
||||
# SVN: https://svn.cac.washington.edu/public/alpine/snapshots/
|
||||
Source0: ftp://ftp.cac.washington.edu/alpine/alpine-%{version}.tar.bz2
|
||||
|
||||
Requires: /usr/sbin/sendmail aspell mailcap
|
||||
# Using "Conflicts" instead of Obsoletes because while alpine is substantially
|
||||
# compatible with pine the change to Unicode breaks important user
|
||||
# functionality such as non-ASCII encoded saved passwords. Additionally, there
|
||||
|
|
@ -27,9 +26,21 @@ Requires: /usr/sbin/sendmail aspell mailcap
|
|||
Conflicts: pine
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
|
||||
BuildRequires: /usr/sbin/sendmail
|
||||
BuildRequires: gettext inews krb5-devel ncurses-devel
|
||||
BuildRequires: openldap-devel openssl-devel pam-devel passwd sendmail
|
||||
BuildRequires: aspell
|
||||
BuildRequires: gettext
|
||||
BuildRequires: inews
|
||||
BuildRequires: krb5-devel
|
||||
BuildRequires: ncurses-devel
|
||||
BuildRequires: openldap-devel
|
||||
BuildRequires: openssl-devel
|
||||
BuildRequires: pam-devel
|
||||
BuildRequires: passwd
|
||||
BuildRequires: sendmail /usr/sbin/sendmail
|
||||
|
||||
Requires: aspell
|
||||
Requires: mailcap
|
||||
Requires: /usr/sbin/sendmail
|
||||
|
||||
|
||||
%description
|
||||
Alpine -- an Alternatively Licensed Program for Internet
|
||||
|
|
@ -48,30 +59,45 @@ routine library.
|
|||
* Ground-up reorganization of build and install procedure based on
|
||||
GNU Build System's autotools.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
chmod -x alpine/arg.c pico/main.c
|
||||
|
||||
|
||||
%build
|
||||
touch imap/ip6
|
||||
# --without-tcl disables the TCL-based CGI "Web Alpine"
|
||||
%configure \
|
||||
--enable-debug=no \
|
||||
--without-tcl \
|
||||
--with-c-client-target=lfd \
|
||||
--with-passfile=.alpine.passfile \
|
||||
--with-spellcheck-prog=aspell
|
||||
--with-spellcheck-prog=aspell \
|
||||
--with-system-pinerc=%{_sysconfdir}/pine.conf \
|
||||
--with-system-fixed-pinerc=%{_sysconfdir}/pine.conf.fixed
|
||||
|
||||
make %{?_smp_mflags} EXTRACFLAGS="$RPM_OPT_FLAGS"
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
# create/touch %ghost'd files
|
||||
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
|
||||
touch $RPM_BUILD_ROOT%{_sysconfdir}/pine.conf
|
||||
touch $RPM_BUILD_ROOT%{_sysconfdir}/pine.conf.fixed
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc README LICENSE doc/tech-notes.txt
|
||||
%ghost %config(noreplace) %{_sysconfdir}/pine.conf
|
||||
%ghost %config(noreplace) %{_sysconfdir}/pine.conf.fixed
|
||||
%{_bindir}/alpine
|
||||
%{_bindir}/pico
|
||||
%{_bindir}/pilot
|
||||
|
|
@ -83,7 +109,50 @@ rm -rf $RPM_BUILD_ROOT
|
|||
%{_mandir}/man1/rpload.1*
|
||||
%{_mandir}/man1/rpdump.1*
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Aug 27 2008 Rex Dieter <rdieter@fedoraproject.org> 2.00-1
|
||||
- alpine-2.00 (#460332)
|
||||
|
||||
* Mon Mar 24 2008 Joshua Daniel Franklin <joshuadfranklin@yahoo.com> 1.10-4
|
||||
- No changes; Bump for tag system
|
||||
|
||||
* Mon Mar 24 2008 Joshua Daniel Franklin <joshuadfranklin@yahoo.com> 1.10-3
|
||||
- No changes; Bump for tag system
|
||||
|
||||
* Mon Mar 24 2008 Joshua Daniel Franklin <joshuadfranklin@yahoo.com> 1.10-2
|
||||
- Change License string to "ASL 2.0" instead of "Apache Software License"
|
||||
- Disable debug files with "--enable-debug=no" (BZ #427013)
|
||||
|
||||
* Mon Mar 24 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.10-1
|
||||
- alpine-1.10
|
||||
- cosmetic (Build)Req cleanup
|
||||
|
||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.00-3
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Fri Dec 22 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.00-2
|
||||
- --with-system-pinerc=%%_sysconfdir/pine.conf
|
||||
--with-system-fixed-pinerc=%%_sysconfdir/pine.conf.fixed (#426512)
|
||||
|
||||
* Fri Dec 21 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.00-1
|
||||
- alpine-1.00
|
||||
|
||||
* Tue Dec 04 2007 Patrick "Jima" Laughton <jima@beer.tclug.org> 0.99999-4
|
||||
- Bump-n-build for openldap/openssl soname changes
|
||||
|
||||
* Thu Nov 15 2007 Joshua Daniel Franklin <joshuadfranklin@yahoo.com> 0.99999-3
|
||||
- BuildRequires aspell to make configure happy
|
||||
|
||||
* Thu Nov 09 2007 Joshua Daniel Franklin <joshuadfranklin@yahoo.com> 0.99999-2
|
||||
- update to latest
|
||||
|
||||
* Thu Oct 25 2007 Rex Dieter <rdieter[AT]fedoraproject.org. 0.9999-4
|
||||
- omit sample pine.conf, instead use %%ghost to preserve existing pine.conf's
|
||||
|
||||
* Wed Oct 24 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 0.9999-3
|
||||
- include stock pine.conf, pine.conf.fixed
|
||||
|
||||
* Fri Sep 07 2007 Joshua Daniel Franklin <joshuadfranklin@yahoo.com> 0.9999-2
|
||||
- update to latest
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
61ce134e24185727e6a0736738767630 alpine-0.9999.tar.bz2
|
||||
84e44cbf71ed674800a5d57eed9c1c52 alpine-2.00.tar.bz2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue