Compare commits

..

2 Commits

Author SHA1 Message Date
Adrian Reber
ec860c74d4 - updated to 2.07
- fixes "The fbi command aborts with a stack trace" (#448126)
2008-06-09 17:05:49 +00:00
Jesse Keating
79c56bc943 Initialize branch F-9 for fbida 2008-04-20 17:33:45 +00:00
3 changed files with 8 additions and 29 deletions

View File

@@ -1,10 +1,10 @@
# Makefile for source rpm: fbida
# $Id: Makefile,v 1.1 2004/12/17 18:53:36 scop Exp $
# $Id$
NAME := fbida
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
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))

1
branch Normal file
View File

@@ -0,0 +1 @@
F-9

View File

@@ -1,7 +1,7 @@
Summary: FrameBuffer Imageviewer
Name: fbida
Version: 2.07
Release: 7%{?dist}
Release: 1%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://linux.bytesex.org/fbida/
@@ -9,9 +9,9 @@ Source: http://dl.bytesex.org/releases/fbida/fbida-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libexif-devel fontconfig-devel libjpeg-devel
BuildRequires: libpng-devel libtiff-devel pkgconfig
BuildRequires: giflib-devel curl-devel
BuildRequires: libungif-devel curl-devel
BuildRequires: libXpm-devel
Requires: ImageMagick dejavu-sans-mono-fonts
Requires: ImageMagick bitstream-vera-fonts
Obsoletes: fbida-ida < 2.06-1
%description
@@ -30,6 +30,7 @@ A wrapper script for viewing ps/pdf files on the framebuffer console using fbi
%prep
%setup -q
%{__sed} -i -e "s,(INSTALL) -s,(INSTALL) ," mk/Variables.mk
%{__sed} -i -e "s,/X11R6,,g" GNUmakefile
%{__sed} -i -e "s,/usr/X11R6/lib/X11,%{_datadir}/X11,g" mk/Autoconf.mk
@@ -44,7 +45,7 @@ iconv -t UTF-8 -f ISO-8859-1 fbgs.man > fbgs.man.new
%{__mv} fbi.man.new fbi.man
%{__mv} exiftran.man.new exiftran.man
%{__mv} fbgs.man.new fbgs.man
lib=%{_lib} prefix=%{_prefix} %{__make} DESTDIR=%{buildroot} STRIP= install
lib=%{_lib} prefix=%{_prefix} %{__make} DESTDIR=%{buildroot} install
%clean
%{__rm} -rf %{buildroot}
@@ -63,29 +64,6 @@ lib=%{_lib} prefix=%{_prefix} %{__make} DESTDIR=%{buildroot} STRIP= install
%{_bindir}/fbgs
%changelog
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.07-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Thu Feb 26 2009 Matěj Cepl <mcepl@redhat.com> - 2.07-6
- actually ida* stuff doesn't get build without Motif
* Thu Feb 26 2009 Matěj Cepl <mcepl@redhat.com> - 2.07-5
- Fix dependencies on fonts (bug# 480450) -- I made a typo in
BuildRequires.
- Fix %%files (missing *ida* stuff).
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.07-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Thu Dec 18 2008 Adrian Reber <adrian@lisas.de> - 2.07-3
- removed bitstream-vera dependency to fix (#473559)
"Replace bitstream-vera dependencies with dejavu dependencies"
- changed BR libungif-devel to giflib-devel
* Fri Jul 04 2008 Adrian Reber <adrian@lisas.de> - 2.07-2
- applied patch from Ville Skyttä to fix
"fbida: empty debuginfo package" (#453998)
* Mon Jun 09 2008 Adrian Reber <adrian@lisas.de> - 2.07-1
- updated to 2.07
- fixes "The fbi command aborts with a stack trace" (#448126)