remove orphans from devel tree + add a file 'dead.package' as a marker
This commit is contained in:
parent
5095faa27d
commit
ca7a2cc9f7
6 changed files with 0 additions and 151 deletions
|
|
@ -1 +0,0 @@
|
|||
wbxml2-0.9.0-src.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: wbxml2
|
||||
# $Id$
|
||||
NAME := wbxml2
|
||||
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)
|
||||
0
dead.package
Normal file
0
dead.package
Normal file
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
3f9b5bf104ec523b8eebe69f93919ded wbxml2-0.9.0-src.tar.gz
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
--- wbxml2-0.9.0/tools/Makefile.am.cflags 2004-06-30 13:21:50.439523944 +0300
|
||||
+++ wbxml2-0.9.0/tools/Makefile.am 2004-06-30 13:22:14.487868040 +0300
|
||||
@@ -3,7 +3,7 @@
|
||||
INCLUDES =\
|
||||
-I. -I../src -I/usr/include
|
||||
|
||||
-CFLAGS =\
|
||||
+AM_CFLAGS =\
|
||||
-DHAVE_CONFIG_H\
|
||||
-DHAVE_EXPAT\
|
||||
-D_REENTRANT\
|
||||
--- wbxml2-0.9.0/src/Makefile.am.cflags 2004-06-30 13:21:45.451282272 +0300
|
||||
+++ wbxml2-0.9.0/src/Makefile.am 2004-06-30 13:22:23.539491984 +0300
|
||||
@@ -3,7 +3,7 @@
|
||||
INCLUDES =\
|
||||
-I. -I/usr/include
|
||||
|
||||
-CFLAGS =\
|
||||
+AM_CFLAGS =\
|
||||
-DHAVE_CONFIG_H\
|
||||
-DHAVE_EXPAT\
|
||||
-D_REENTRANT\
|
||||
106
wbxml2.spec
106
wbxml2.spec
|
|
@ -1,106 +0,0 @@
|
|||
Name: wbxml2
|
||||
Version: 0.9.0
|
||||
Release: 4
|
||||
|
||||
Summary: Library and tools to parse, encode and handle WBXML documents
|
||||
|
||||
Group: System Environment/Libraries
|
||||
License: GPL
|
||||
URL: http://libwbxml.aymerick.com/
|
||||
Source0: http://dl.sf.net/sourceforge/wbxmllib/wbxml2-0.9.0-src.tar.gz
|
||||
Patch0: wbxml2-0.9.0-am_cflags.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: popt, expat-devel, zlib-devel
|
||||
BuildRequires: libtool, automake, autoconf
|
||||
|
||||
%description
|
||||
The WBXML Library (aka libwbxml) contains a library and its associated tools
|
||||
to Parse, Encode and Handle WBXML documents.
|
||||
|
||||
The WBXML format is a binary representation of XML, defined by the Wap Forum,
|
||||
and used to reduce bandwidth in mobile communications.
|
||||
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: %{summary}
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package contains the libraries, include files and documentation
|
||||
to develop WBXML applications.
|
||||
|
||||
The WBXML format is a binary representation of XML, defined by the Wap Forum,
|
||||
and used to reduce bandwidth in mobile communications.
|
||||
|
||||
|
||||
%prep
|
||||
cat<<EOT
|
||||
|
||||
Build disabled. Package is without maintainer.
|
||||
|
||||
EOT
|
||||
exit 1
|
||||
|
||||
%setup -q
|
||||
%patch0 -p1 -b .am_cflags
|
||||
|
||||
|
||||
%build
|
||||
libtoolize
|
||||
aclocal
|
||||
autoheader
|
||||
automake --add-missing
|
||||
autoconf
|
||||
%configure --includedir=%{_includedir}/%{name}
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/*
|
||||
%{_libdir}/*.so.*
|
||||
%defattr(0644,root,root,0755)
|
||||
%doc AUTHORS THANKS COPYING ChangeLog NEWS README TODO GNU-GPL References BUGS
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
# the README says this documentation is obsolete since 0.7.2 so not included
|
||||
#%doc doc/*
|
||||
%dir %{_includedir}/%{name}
|
||||
%{_includedir}/%{name}/wbxml*.h
|
||||
%{_libdir}/*.a
|
||||
%{_libdir}/*.so
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 0.9.0-4
|
||||
- rebuild on all arches
|
||||
|
||||
* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
||||
- rebuilt
|
||||
|
||||
* Wed Jun 30 2004 Michael Schwendt <mschwendt[AT]users.sf.net> 0:0.9.0-0.fdr.2
|
||||
- Set group, own include dir, fix devel description,
|
||||
make %%doc files chmod -x.
|
||||
|
||||
* Wed Jun 30 2004 Panu Matilainen <pmatilai@welho.com> 0:0.9.0-0.fdr.1
|
||||
- Initial RPM release.
|
||||
Loading…
Add table
Add a link
Reference in a new issue