Compare commits
24 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
164230322a | ||
|
|
4290b7f4b7 | ||
|
|
05d3635390 | ||
|
|
04d53f02e5 | ||
|
|
48edd75bf7 | ||
|
|
c4b64738d0 | ||
|
|
27ab0273d4 | ||
|
|
efc9497c97 | ||
|
|
612c7a23be | ||
|
|
eb09da2803 | ||
| d52ebc90d3 | |||
|
|
c95ac1977d | ||
|
|
8e8e09e011 | ||
|
|
4025d106f8 | ||
|
|
c70da710b3 | ||
|
|
e4487effe5 | ||
|
|
b2b5adb274 | ||
|
|
48075c48ce | ||
|
|
c178cd6347 | ||
|
|
50a4aab705 | ||
|
|
a46f254af1 | ||
|
|
7d4b73a07e | ||
|
|
e730298f19 | ||
|
|
b8f87cdaa2 |
6 changed files with 1 additions and 82 deletions
|
|
@ -1 +0,0 @@
|
|||
xcftools-1.0.7.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: xcftools
|
||||
# $Id$
|
||||
NAME := xcftools
|
||||
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 $$d/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 +0,0 @@
|
|||
xcftools-1_0_7-1_fc12:HEAD:xcftools-1.0.7-1.fc12.src.rpm:1265306772
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
fd960b6470fb23520fc4b1ade6cf6e25 xcftools-1.0.7.tar.gz
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
Name: xcftools
|
||||
Version: 1.0.7
|
||||
Release: 1%{?dist}
|
||||
Summary: Command-line tools for extracting information from XCF files
|
||||
|
||||
Group: Applications/Multimedia
|
||||
License: Public Domain
|
||||
URL: http://henning.makholm.net/software
|
||||
Source0: http://henning.makholm.net/%{name}/%{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: gettext libpng-devel
|
||||
|
||||
%description
|
||||
Xcftools is a set of fast command-line tools for extracting information from
|
||||
the Gimp's native file format XCF. The tools are designed to allow efficient
|
||||
use of layered XCF files as sources in a build system that use 'make' and
|
||||
similar tools to manage automatic processing of the graphics.
|
||||
These tools work independently of the Gimp engine and do not require
|
||||
the Gimp to even be installed.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
# To avoid strip before install (that will generate an empty debuginfo)
|
||||
sed -i -e '/strip=/d' Makefile.in
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
cd manpo
|
||||
# Convert to utf-8
|
||||
for file in xcf2png.da.1 xcf2pnm.da.1 xcfinfo.da.1 xcfview.da.1 ; do
|
||||
iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
|
||||
touch -r $file $file.new && \
|
||||
mv $file.new $file
|
||||
done
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT%{_bindir} $RPM_BUILD_ROOT%{_mandir}/man1/
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
||||
%find_lang %{name}
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%defattr(-,root,root,-)
|
||||
%doc README
|
||||
%{_bindir}/xcf*
|
||||
%{_mandir}/man?/xcf*.1.gz
|
||||
%{_mandir}/da/man?/xcf*.1.gz
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Dec 22 2009 Nicoleau Fabien <nicoleau.fabien@gmail.com> 1.0.7-1
|
||||
- Initital build
|
||||
Loading…
Add table
Add a link
Reference in a new issue