Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Fedora Release Engineering
f9a92e8ab3 dist-git conversion 2010-07-29 14:36:10 +00:00
Bill Nottingham
cd6fd05a47 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:13:14 +00:00
stevetraylen
cd5f886ff0 Add to el4,5 and f10,11 2009-07-30 07:24:10 +00:00
Jason ティビツ
c54529f83c Initialize branch F-11 for uberftp 2009-07-29 21:02:57 +00:00
4 changed files with 70 additions and 21 deletions

View file

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: uberftp
# $Id$
NAME := uberftp
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)

View file

@ -0,0 +1 @@
14ec224f9661a0f565835e29137405f7 uberftp-client-2.4.tar.gz

69
uberftp.spec Normal file
View file

@ -0,0 +1,69 @@
%ifarch alpha ia64 ppc64 s390x sparc64 x86_64
%global flavor gcc64pthr
%else
%global flavor gcc32pthr
%endif
Name: uberftp
Version: 2.4
Release: 4%{?dist}
Summary: GridFTP-enabled ftp client
Group: Applications/Internet
License: NCSA
URL: http://dims.ncsa.illinois.edu/set/uberftp/
Source0: http://dims.ncsa.illinois.edu/set/uberftp/download/uberftp-client-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: grid-packaging-tools, globus-gssapi-gsi-devel
%description
UberFTP is the first interactive, GridFTP-enabled ftp client.
It supports GSI authentication, parallel data channels and
third party transfers.
%prep
%setup -q -n uberftp-client-%{version}
iconv -f iso8859-1 -t utf-8 copyright > copyright.conv && mv -f copyright.conv copyright
%build
mkdir pkgdata
sed -e 's!-I$globus_location/include/$globus_flavor! -I%{_includedir}/globus -I%{_libdir}/globus/include!' -i configure.ac
%{_datadir}/globus/globus-bootstrap.sh
%configure --with-globus-flavor=%{flavor} --with-globus=%{_usr} --with-gpt=%{_usr}
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_bindir}/uberftp
%{_mandir}/man1/uberftp.1.gz
%doc Changelog.mssftp Changelog copyright
%changelog
* Wed Jul 22 2009 Steve Traylen <steve.traylen@cern.ch> 2.4-4
- Update source to version 2.4
- Include copyright file in package.
* Tue Jun 23 2009 Steve Traylen <steve.traylen@cern.ch> 2.3-3
- Better inclusion of globus header files.
* Fri Jun 19 2009 Steve Traylen <steve@traylen.net> - 2.3-2
- Remove my debugging.
* Fri Jun 19 2009 Steve Traylen <steve@traylen.net> - 2.3-1
- Initial version.