Bartosz Golek napisał(a):
> Jakub Bogusz napisał(a):
>   
>> On Wed, Nov 22, 2006 at 10:23:14PM +0100, Bartosz Golek wrote:
>>   
>>     
>>> Fryderyk Dziarmagowski napisał(a):
>>>     
>>>       
>>>> --- Bartosz Golek <[EMAIL PROTECTED]> wrote:
>>>>
>>>>   
>>>>       
>>>>         
>>>>> [code]
>>>>> ostrzeżenie: Znaleziono zainstalowane (ale niespakietowane) pliki:
>>>>>    /usr/lib/gimp-gap-2.2/audioconvert_to_wav.sh
>>>>>    /usr/lib/gimp-gap-2.2/libavcodec.a
>>>>>    /usr/lib/gimp-gap-2.2/libavformat.a
>>>>>    /usr/lib/gimp-gap-2.2/libmpeg3.a
>>>>>         
>>>>>           
>> Te *.a to biblioteki statyczne, do wywalenia z pakietu. A tak w ogóle to
>> są biblioteki ffmpega i libmpeg3 - docelowo do zastąpienia wersją
>> systemową, ale to już niekoniecznie dla początkującego.
>>
>>   
>>     
> - w takim razie przesyłam speca do poprawienia przez lepszych jeśli ktoś
> znajdzie chwilę czasu.
>   
Sprawdziłem w configure.in i znalazłem opcje:

Optional Features:
  --disable-FEATURE       do not include FEATURE (same as
--enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  --enable-maintainer-mode  enable make rules and dependencies not useful
              (and sometimes confusing) to the casual installer
  --disable-dependency-tracking  speeds up one-time build
  --enable-dependency-tracking   do not reject slow dependency extractors
  --disable-unix-frontends     don't build with UNIX specific frontends
for mplayer, xanim and mpeg encoders
  --disable-videoapi-support   don't build with videoapi support
  --disable-libavformat        don't build with libavformat/libavcodec
  --disable-libmpeg3           don't build with libmpeg3
  --disable-libxvidcore        don't build with libxvidcore
  --disable-audio-support      don't build with audio support
  --enable-gdkpixbuf-pview     use GdkPixbuf thumbnail rendering
(default=no)

Optional Packages:
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  --with-ffmpegsrcdir=DIR      specify where to find ffmpeg src
directory DIR (this is a developers option to bypass the included ffmpeg
sourcetree)
  --with-libmpeg3srcdir=DIR    specify where to find libmpeg3 src
directory DIR  (this is a developers option to bypass the included
libmpeg3 sourcetree)
  --with-preinstalled-libmpeg3incdir=DIR    force link with an already
installed libmpeg3 library and specify where to find libmpeg3 headerfiles
  --with-preinstalled-libmpeg3=FILE         full pathname of the
preinstalled libmpeg3.a libraryfile

I zmodyfikowałem speca (w załączniku) niestety nadal mam błąd z
usuwaniem bibliotek statycznych (gdzie popełniłem błąd)?


# $Revision: $, $Date:$
######          /root/rpm/SOURCES/rpm.groups: no such file

%bcond_with     maintainer-mode        # enable make rules and dependencies not 
useful (and sometimes confusing) to the casual installer
%bcond_without dependency-tracking # speeds up one-time build
%bcond_without unix-frontends      # don't build with UNIX specific frontends 
for mplayer, xanim and mpeg encoders
%bcond_without videoapi-support    # don't build with videoapi support
%bcond_without libavformat         # don't build with libavformat/libavcodec  
%bcond_without libmpeg3            # don't build with libmpeg3
%bcond_without libxvidcore         # don't build with libxvidcore
%bcond_without audio-support       # don't build with audio support
%bcond_with gdkpixbuf-pview        # use GdkPixbuf thumbnail rendering 
(default=no)

%bcond_without preinstalled-libmpeg3incdir # force link with an already 
installed libmpeg3 library and specify where to find libmpeg3 headerfiles
%bcond_without preinstalled-libmpeg3 # full pathname of the preinstalled 
libmpeg3.a libraryfile

Summary:        The GIMP Animation Package
Summary(pl):    Pakiet animacyjny dla GIMP'a
Name:           gimp-plugin-gap
Version:        2.2.1
Release:        1
License:        GPL
Group:          X11/Applications/Graphics
Source0:        
ftp://ftp.gimp.org/pub/gimp/plug-ins/v2.2/gap/gimp-gap-%{version}.tar.bz2
# Source0-md5:  c2aa33b5240c57aa6bf9ffc686f3e3ac
URL:            http://www.gimp.org/
BuildRequires:  autoconf
BuildRequires:  automake
BuildRequires:  gettext-devel
BuildRequires:  gimp-devel >= 2.2.0
BuildRequires:  intltool
BuildRequires:  libjpeg-devel
BuildRequires:  nasm
BuildRequires:  pkgconfig
BuildRequires:  xvid-devel >= 1:1.0.0.
BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)

%define gapplugindir %(gimptool --gimpplugindir)/plug-ins
%define _scriptdir %(gimptool --gimpdatadir)/scripts

%description
The GIMP-GAP (GIMP Animation Package) is a collection of Plug-Ins to
extend GIMP 2.2 with capabilities to edit and create animations as
sequences of single frames.

%description -l pl
GIMP-GAP (GIMP Animation Package) jest kolekcj± wtyczek
rozszerzaj±cych GIMPa o mo¿liwo¶æ edycji i tworzenia animacji i
sekwencji pojedynczych ramek.

%prep
%setup -q -n gimp-gap-%{version}

%build
%{__glib_gettextize}
%__aclocal
%__automake
%__autoconf
%configure \
  %{?with_maintainer-mode --enable-maintainer-mode} \
  %{?without_dependency-tracking --disable-dependency-tracking} \
  %{?without_unix-frontends --disable-unix-frontends} \
  %{?without_videoapi-support --disable-videoapi-support} \
  %{?without_libavformat --disable-libavformat} \
  %{?without_libmpeg3 --disable-libmpeg3} \
  %{?without_libxvidcore --disable-libxvidcore} \
  %{?without_audio-support --disable-audio-support} \
  %{?with_gdkpixbuf-pview --enable-gdkpixbuf-pview} \
  %{!?without_preinstalled-libmpeg3incdir 
--with-preinstalled-libmpeg3incdir=%{_libdir}} \
  %{!?without_preinstalled-libmpeg3incdir 
--with-preinstalled-libmpeg3incdir=%{_libdir}/libmpeg3.a}

%{__make}

%install
rm -rf $RPM_BUILD_ROOT

%{__make} install \
        DESTDIR=$RPM_BUILD_ROOT

%find_lang %{name} --all-name

%clean
rm -rf $RPM_BUILD_ROOT

%files -f %{name}.lang
%defattr(644,root,root,755)
%dir %{_libdir}/gimp-gap-2.2
%attr(755,root,root) %{gapplugindir}/*
%attr(755,root,root) %{_libdir}/gimp-gap-2.2/*
%{__scriptdir}/*
%doc AUTHORS ChangeLog NEWS README

%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
%changelog
* %{date} PLD Team <[EMAIL PROTECTED]>
All persons listed below can be reached at <cvs_login>@pld-linux.org
$Log:$
_______________________________________________
pld-devel-pl mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-devel-pl

Odpowiedź listem elektroniczym