Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tries to use system Fortran if installed, this prevents that #214

Open
wants to merge 2 commits into
base: wip-testing
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion packages/ImageMagick/SPECS/ImageMagick.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Epoch: 2
Epoch: 0
%endif
Version: %{VER}.%{Patchlevel}
Release: 2%{?dist}
Release: 3%{?dist}
Summary: An X application for displaying and manipulating images

License: ImageMagick
Expand Down Expand Up @@ -186,6 +186,10 @@ cp -a www/source %{buildroot}%{_datadir}/doc/%{name}-%{VER}
# Delete *ONLY* _libdir/*.la files! .la files used internally to handle plugins - BUG#185237!!!
rm %{buildroot}%{_libdir}/*.la

# Don't skip the actual binaries
cp -r utilities/.libs %{buildroot}%{_bindir}/
# utilities/.libs/

# perlmagick: fix perl path of demo files
%{__perl} -MExtUtils::MakeMaker -e 'MY->fixin(@ARGV)' PerlMagick/demo/*.pl

Expand Down Expand Up @@ -247,6 +251,8 @@ rm PerlMagick/demo/Generic.ttf
%files
%doc README.txt LICENSE NOTICE AUTHORS.txt NEWS.txt ChangeLog Platforms.txt
%{_bindir}/[a-z]*
%{_bindir}/.libs
%{_bindir}/.libs/*
%{_mandir}/man[145]/[a-z]*
%{_mandir}/man1/%{name}.*

Expand Down
2 changes: 1 addition & 1 deletion packages/fftw/SPECS/fftw.spec
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ autoreconf -vfi
# Configure uses g77 by default, if present on system
#export F77=gfortran

BASEFLAGS="--enable-shared --disable-dependency-tracking --enable-threads"
BASEFLAGS="--enable-shared --disable-dependency-tracking --enable-threads --disable-fortran"
#BASEFLAGS+=" --enable-openmp"

# Precisions to build
Expand Down