Compare commits
36 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a99300617d | ||
|
|
93a5d74e55 | ||
|
|
36550ae24b | ||
|
|
f2c2f347f9 | ||
|
|
880dd963dc | ||
| 9a550d275a | |||
|
fd499700cf |
|||
|
|
8bb63fb04d | ||
|
|
dda3615a55 | ||
|
9ee0b7b351 |
|||
| 61a04a409f | |||
|
|
f7056bc77a | ||
|
|
94e0e28884 | ||
|
|
ff134e4ab9 | ||
|
|
80669c0b0b | ||
|
|
f7320e4b0b | ||
|
|
bc450f2dc6 | ||
|
|
d6f2dfe579 | ||
|
|
53322f60bd | ||
| b4e42c35c1 | |||
|
|
3e807344f5 | ||
|
|
25de717eae | ||
|
|
fd4a813ba6 | ||
|
|
69da949a6b | ||
|
|
46794f1adf | ||
|
|
b5c9df4be5 | ||
|
|
55b9f3bb7a | ||
|
|
84601a46cb | ||
|
|
1a056d56c8 | ||
|
|
3e7544d2ac | ||
|
|
b6cb1f778e | ||
|
|
e4b2df8ad5 | ||
|
|
858765a733 | ||
|
|
8e839a51a1 | ||
|
|
2b135dbb0f | ||
|
|
2e94d1b32d |
6 changed files with 1 additions and 134 deletions
|
|
@ -1 +0,0 @@
|
|||
varconf-0.6.5.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: varconf
|
||||
# $Id$
|
||||
NAME := varconf
|
||||
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)
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
3fd80433af2fd96f4eaab23f4ebbe343 varconf-0.6.5.tar.gz
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
--- varconf-0.6.5/varconf/variable.cpp.orig 2008-02-09 15:57:41.000000000 -0800
|
||||
+++ varconf-0.6.5/varconf/variable.cpp 2008-02-09 15:57:50.000000000 -0800
|
||||
@@ -28,6 +28,7 @@
|
||||
|
||||
#include <string>
|
||||
#include <cstdio>
|
||||
+#include <cstdlib>
|
||||
|
||||
#ifdef __WIN32__
|
||||
#include <tchar.h>
|
||||
101
varconf.spec
101
varconf.spec
|
|
@ -1,101 +0,0 @@
|
|||
Name: varconf
|
||||
Version: 0.6.5
|
||||
Release: 4%{?dist}
|
||||
Summary: Configuration library used by WorldForge clients
|
||||
|
||||
Group: Development/Libraries
|
||||
License: LGPLv2+
|
||||
URL: http://worldforge.org/dev/eng/libraries/varconf
|
||||
Source0: http://dl.sourceforge.net/worldforge/%{name}-%{version}.tar.gz
|
||||
Patch0: varconf-0.6.5-gcc43.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: libsigc++20-devel
|
||||
|
||||
%description
|
||||
Varconf is a configuration library intended for all applications. It manages
|
||||
configuration data in files, command line arguments, and is used by most
|
||||
WorldForge components.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development files for varconf library
|
||||
Group: Development/Libraries
|
||||
Requires: pkgconfig %{name} = %{version}-%{release}
|
||||
|
||||
|
||||
%description devel
|
||||
Development libraries and headers for linking against the varconf library.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||
|
||||
## cleaning up redundant docs
|
||||
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version}
|
||||
|
||||
%check
|
||||
make %{?_smp_mflags} check
|
||||
cd tests ; ./conftest < conf.cfg
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING ChangeLog README THANKS TODO
|
||||
%{_libdir}/lib%{name}-1.0.so.*
|
||||
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_includedir}/%{name}-1.0
|
||||
%{_libdir}/lib%{name}-1.0.so
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Sat Feb 9 2008 Wart <wart at kobold.org> 0.6.5-3
|
||||
- Rebuild for gcc 4.3
|
||||
|
||||
* Tue Aug 21 2007 Wart <wart at kobold.org> 0.6.5-2
|
||||
- License tag clarification
|
||||
|
||||
* Tue Jan 16 2007 Wart <wart at kobold.org> 0.6.5-1
|
||||
- Update to 0.6.5
|
||||
|
||||
* Mon Aug 28 2006 Wart <wart at kobold.org> 0.6.4-4
|
||||
- Rebuild for Fedora Extras
|
||||
|
||||
* Wed Jul 19 2006 Wart <wart at kobold.org> 0.6.4-3
|
||||
- Add command to %%check to execute tests
|
||||
|
||||
* Fri Jul 14 2006 Wart <wart at kobold.org> 0.6.4-2
|
||||
- Added Requires: pkgconfig to -devel subpackage
|
||||
- Change license from GPL -> LGPL
|
||||
- Added missing header to test file
|
||||
- Use smp_mflags with test suie
|
||||
|
||||
* Wed Jun 14 2006 Wart <wart at kobold.org> 0.6.4-1
|
||||
- Initial spec file for Fedora Extras
|
||||
Loading…
Add table
Add a link
Reference in a new issue