Summary: Automated text file generator Name: autogen Version: 5.18.16 Release: 1%{?dist} # Some files are licensed under GPLv2+. # We redistribute them under GPLv3+. License: GPLv3+ Group: Development/Tools URL: http://www.gnu.org/software/autogen/ Source0: https://ftp.gnu.org/gnu/autogen/rel%{version}/%{name}-%{version}.tar.xz # Fix multilib conflicts Patch0: autogen-multilib.patch Patch1: autogen-5.18.16-no-werror.patch Requires: %{name}-libopts%{?_isa} = %{version}-%{release} Requires(post): /sbin/install-info Requires(preun): /sbin/install-info BuildRequires: gcc BuildRequires: git BuildRequires: guile-devel BuildRequires: libtool BuildRequires: libxml2-devel BuildRequires: perl-generators BuildRequires: chrpath %description AutoGen is a tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text. It is especially valuable in programs that have several blocks of text that must be kept synchronised. %package libopts Summary: Automated option processing library based on %{name} # Although sources are dual licensed with BSD, some autogen generated files are only under LGPLv3+. # We drop BSD to avoid multiple licensing scenario. License: LGPLv3+ Group: System Environment/Libraries %description libopts Libopts is very powerful command line option parser consisting of a set of AutoGen templates and a run time library that nearly eliminates the hassle of parsing and documenting command line options. %package libopts-devel Summary: Development files for libopts # Although sources are dual licensed with BSD, some autogen generated files are only under LGPLv3+. # We drop BSD to avoid multiple licensing scenario. License: LGPLv3+ Group: Development/Libraries Requires: automake Requires: %{name} = %{version}-%{release} Requires: %{name}-libopts%{?_isa} = %{version}-%{release} Requires: pkgconfig %description libopts-devel This package contains development files for libopts. %prep %autosetup -S git # Disable failing test #sed -i 's|errors.test||' autoopts/test/Makefile.in %build # Static libraries are needed to run test-suite. export CFLAGS="$RPM_OPT_FLAGS -Wno-format-contains-nul" %configure # Omit unused direct shared library dependencies. sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' ./libtool make %{?_smp_mflags} %check make check %install make install INSTALL="%{__install} -p" DESTDIR=%{buildroot} find %{buildroot} -type f -name "*.la" -delete find %{buildroot} -type f -name "*.a" -delete # Remove time stamps from generated devel man pages to avoid multilib conflicts sed -i 's|\(It has been AutoGen-ed\).*.\(by AutoGen\)|\1 \2|' \ %{buildroot}%{_mandir}/man3/*.3 # Remove rpath. chrpath --delete %{buildroot}%{_bindir}/{columns,getdefs,%{name},xml2ag} chrpath --delete %{buildroot}%{_libdir}/lib*.so.* rm -f %{buildroot}%{_infodir}/dir %post /sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || : %preun if [ $1 = 0 ]; then /sbin/install-info --delete %{_infodir}/%{name}.info \ %{_infodir}/dir >/dev/null 2>&1 || : fi %ldconfig_scriptlets libopts %files %doc AUTHORS %doc ChangeLog %doc COPYING %doc NEWS %doc README %doc THANKS %doc TODO %doc pkg/libopts/COPYING.gplv3 %{_bindir}/columns %{_bindir}/getdefs %{_bindir}/%{name} %{_bindir}/xml2ag %{_infodir}/%{name}.info*.gz %{_mandir}/man1/%{name}.1.gz %{_mandir}/man1/columns.1.gz %{_mandir}/man1/getdefs.1.gz %{_mandir}/man1/xml2ag.1.gz %dir %{_datadir}/%{name} %{_datadir}/%{name}/* %dir %{_libdir}/%{name} %{_libdir}/%{name}/* %files libopts %doc pkg/libopts/COPYING.mbsd %doc pkg/libopts/COPYING.lgplv3 %{_libdir}/libopts.so.25* %files libopts-devel %{_bindir}/autoopts-config %{_datadir}/aclocal/autoopts.m4 %{_libdir}/libopts.so %{_libdir}/pkgconfig/autoopts.pc %{_mandir}/man1/autoopts-config.1.gz %{_mandir}/man3/* %dir %{_includedir}/autoopts %{_includedir}/autoopts/options.h %{_includedir}/autoopts/usage-txt.h