Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b5cd1e8d70 | ||
|
|
4d9b0246b2 | ||
|
|
8a0eb2171d | ||
|
|
593b978ab9 |
6 changed files with 3 additions and 99 deletions
|
|
@ -1 +0,0 @@
|
|||
xdrfile-1.1.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: xdrfile
|
||||
# $Id$
|
||||
NAME := xdrfile
|
||||
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)
|
||||
3
dead.package
Normal file
3
dead.package
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
2016-05-19: Retired orphaned package, because it was orphaned for
|
||||
more than six weeks.
|
||||
|
||||
|
|
@ -1 +0,0 @@
|
|||
xdrfile-1_1-2_fc11:HEAD:xdrfile-1.1-2.fc11.src.rpm:1245049664
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
529605c4348d4a7352f9bdb54267923c xdrfile-1.1.tar.gz
|
||||
75
xdrfile.spec
75
xdrfile.spec
|
|
@ -1,75 +0,0 @@
|
|||
Name: xdrfile
|
||||
Version: 1.1
|
||||
Release: 3%{?dist}
|
||||
Summary: A small C-library for reading and writing GROMACS trr and xtc files
|
||||
Group: Applications/Engineering
|
||||
License: LGPLv3+
|
||||
URL: http://oldwiki.gromacs.org/index.php/XTC_Library
|
||||
Source0: ftp://ftp.gromacs.org/pub/contrib/%{name}-%{version}.tar.gz
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
|
||||
|
||||
%description
|
||||
A small C-library for reading and writing trr and xtc files. The library is
|
||||
lightweight (no dependencies, portable) and can be incorporated in other
|
||||
software, because it is being distributed under the BSD license. The library
|
||||
also contains one program trr2xtc which does what you would expect, and the
|
||||
other way around.
|
||||
|
||||
%package devel
|
||||
Summary: Development library and headers for xdrfile
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package contains development headers and libraries for xdrfile.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}b
|
||||
[ -s ChangeLog ] && exit 1 # exit if file has non-zero size
|
||||
|
||||
%build
|
||||
%configure --enable-shared --disable-static
|
||||
# Get rid of rpath
|
||||
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
||||
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
make install DESTDIR=%{buildroot} INSTALL="install -p"
|
||||
|
||||
# Remove .la files
|
||||
rm %{buildroot}/%{_libdir}/*.la
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING NEWS README
|
||||
%{_libdir}/*.so.*
|
||||
%{_bindir}/*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/*.so
|
||||
%{_includedir}/%{name}/
|
||||
|
||||
%changelog
|
||||
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Sat Jun 13 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 1.1-2
|
||||
- Conserve timestamps during install, fix URL & Source0.
|
||||
|
||||
* Mon May 18 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 1.1-1
|
||||
- Update to 1.1 that fixes licensing and other issues.
|
||||
|
||||
* Wed Apr 08 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 1.0-1
|
||||
- First release.
|
||||
Loading…
Add table
Add a link
Reference in a new issue