Compare commits

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

6 commits

Author SHA1 Message Date
Fedora Release Engineering
a6b0ce500d dist-git conversion 2010-07-29 15:33:05 +00:00
Bill Nottingham
6aff6d4764 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:29:16 +00:00
604aeb3087 license fix 2007-08-27 18:57:13 +00:00
f86705ddfb Initialize branch EL-4 for xbase 2007-07-02 15:15:25 +00:00
f21763bfbb Bump for FC-5 2006-03-01 01:14:30 +00:00
552ae8306a Resolve bugzilla 162845 2005-07-10 13:49:13 +00:00
4 changed files with 21 additions and 23 deletions

View file

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: xbase
# $Id$
NAME := xbase
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,11 @@
--- xbase-2.0.0/xbase-config.in.BAD 2005-07-10 08:38:03.000000000 -0500
+++ xbase-2.0.0/xbase-config.in 2005-07-10 08:37:25.000000000 -0500
@@ -5,7 +5,7 @@
exec_prefix_set=no
CC="@CC@"
CXX="@CXX@"
-LD="@SHARED_LD@"
+LD="@LD@"
usage="\
Usage: xbase-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags] [--cc] [--cxx] [--ld]"

View file

@ -1,11 +1,12 @@
Name: xbase
Summary: XBase compatible database library and tools
Version: 2.0.0
Release: 2%{?dist}
License: LGPL (binaries GPL)
Release: 4%{?dist}
License: LGPLv2+ and GPLv2+
Group: Development/Libraries
URL: http://linux.techass.com/projects/xdb/
Source0: http://dl.sourceforge.net/xdb/%{name}-%{version}.tar.gz
Patch0: xbase-2.0.0-fixconfig.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: doxygen
@ -29,6 +30,7 @@ Headers and libraries for compiling programs that use the XBase library.
%prep
%setup -q
%patch0 -p1
%build
%configure --enable-static
@ -72,6 +74,12 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/libxbase.so
%changelog
* Tue Feb 28 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.0-4
- bump for FC-5
* Sun Jul 10 2005 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.0-3
- fix xbase-config --ld (bugzilla 162845)
* Fri Jul 1 2005 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.0-2
- add BuildRequires: doxygen
- remove latex docs (html is fine)