Compare commits

...

4 Commits
rawhide ... f11

Author SHA1 Message Date
Fedora Release Engineering b69770904b dist-git conversion 2010-07-29 05:39:26 +00:00
Bill Nottingham 11a825c51a Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:48:47 +00:00
Ben Boeckel 315d916d07 Initial commit 2009-10-06 21:23:48 +00:00
Kevin Fenzi dc807a763b Initialize branch F-11 for pdf2svg 2009-10-06 17:27:21 +00:00
5 changed files with 50 additions and 21 deletions

View File

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
pdf2svg-0.2.1.tar.gz

View File

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

48
pdf2svg.spec Normal file
View File

@ -0,0 +1,48 @@
Name: pdf2svg
Version: 0.2.1
Release: 2%{?dist}
Summary: Small tool to convert PDF files into SVG
Group: Applications/File
License: GPLv2+
URL: http://www.cityinthesky.co.uk/pdf2svg.html
Source0: http://www.cityinthesky.co.uk/files/pdf2svg-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: poppler-glib-devel
BuildRequires: cairo-devel
%description
A small tool to convert PDF files into SVG using poppler and cairo.
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install INSTALL="install -p" DESTDIR=%{buildroot}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc COPYING AUTHORS ChangeLog
%{_bindir}/pdf2svg
%changelog
* Sun Oct 4 2009 Ben Boeckel <MathStuf@gmail.com> 0.2.1-2
- Fix things for review
* Wed Sep 30 2009 Ben Boeckel <MathStuf@gmail.com> 0.2.1-1
- Initial package

View File

@ -0,0 +1 @@
59b3b9768166f73b77215e95d91f0a9d pdf2svg-0.2.1.tar.gz