# remirepo spec file for php-pecl-sdl # # Copyright (c) 2013-2023 Remi Collet # License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %{?scl: %scl_package php-pecl-sdl} %{!?__php: %global __php %{_bindir}/php} %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global with_tests 0%{?_with_tests:1} %global pecl_name sdl %global sources %{pecl_name}-%{version} %global _configure ../%{sources}/configure Summary: Simple DirectMedia Layer for PHP Name: %{?scl_prefix}php-pecl-sdl Version: 2.7.0 Release: 2%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} License: PHP-3.01 Group: Development/Languages URL: https://pecl.php.net/package/sdl Source0: https://pecl.php.net/get/%{sources}.tgz BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel >= 8.0 BuildRequires: %{?scl_prefix}php-pear BuildRequires: SDL2-devel Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} Requires: %{__php} %if %{with_zts} Requires: %{__ztsphp} %endif Provides: %{?scl_prefix}php-%{pecl_name} = %{version} Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{release} Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} %if "%{?packager}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} # Other third party repo stuff Obsoletes: php74-pecl-%{pecl_name} <= %{version} %if "%{php_version}" > "8.0" Obsoletes: php80-pecl-%{pecl_name} <= %{version} %endif %if "%{php_version}" > "8.1" Obsoletes: php81-pecl-%{pecl_name} <= %{version} %endif %endif %description This extension allows you to develop multimedia applications with PHP using the complete SDL library API. Use the "phpsdl" command to launch a SDL application. Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. %prep %setup -q -c cd %{sources} #sed -e 's/2.3.0/%{version}/' -i src/php_sdl.h # Sanity check, really often broken extver=$(sed -n '/#define PHP_SDL_VERSION/{s/.* "//;s/".*$//;p}' src/php_sdl.h) if test "x${extver}" != "x%{version}"; then : Error: Upstream extension version is ${extver}, expecting %{version}. exit 1 fi cd .. # Don't install/register tests sed -e 's/role="test"/role="src"/' \ %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ -i package.xml cat << 'EOF' | tee phpsdl #!/bin/sh mod="" for i in $(cd %{php_extdir}; LANG=C ls sdl*.so); do mod="$mod -d extension=${i/.so/}" done exec %{__php} $mod "$@" EOF mkdir NTS %if %{with_zts} cat << 'EOF' | tee zts-phpsdl #!/bin/sh mod="" for i in $(cd %{php_ztsextdir}; LANG=C ls sdl*.so); do mod="$mod -d extension=${i/.so/}" done exec %{__ztsphp} $mod "$@" EOF mkdir ZTS %endif %build %{?dtsenable} peclconf() { %configure \ --with-sdl \ --with-php-config=$1 } cd %{sources} %{__phpize} cd ../NTS peclconf %{__phpconfig} make %{?_smp_mflags} %if %{with_zts} cd ../ZTS peclconf %{__ztsphpconfig} make %{?_smp_mflags} %endif %install %{?dtsenable} make -C NTS install INSTALL_ROOT=%{buildroot} # Install XML package description install -Dpm 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml # Install the command wrapper install -Dpm 755 phpsdl %{buildroot}%{_bindir}/phpsdl %if %{with_zts} make -C ZTS install INSTALL_ROOT=%{buildroot} install -Dpm 755 zts-phpsdl %{buildroot}%{_bindir}/zts-phpsdl %endif # Documentation cd %{sources} for i in $(grep 'role="doc"' ../package.xml | sed -e 's/^.*name="//;s/".*$//') do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i done %check : Minimal load test for NTS extension %{__php} -n -q \ -d extension=NTS/modules/%{pecl_name}.so \ --modules | grep -i '^%{pecl_name}$' %if %{with_zts} : Minimal load test for ZTS extension %{__ztsphp} -n -q \ -d extension=ZTS/modules/%{pecl_name}.so \ --modules | grep -i '^%{pecl_name}$' %endif %if 0%{?fedora} < 24 && 0%{?rhel} < 8 # when pear installed alone, after us %triggerin -- %{?scl_prefix}php-pear if [ -x %{__pecl} ] ; then %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : fi # posttrans as pear can be installed after us %posttrans if [ -x %{__pecl} ] ; then %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : fi %postun if [ $1 -eq 0 -a -x %{__pecl} ] ; then %{pecl_uninstall} %{pecl_name} >/dev/null || : fi %endif %files %{?_licensedir:%license %{sources}/LICENSE} %doc %{pecl_docdir}/%{pecl_name} %{_bindir}/phpsdl %{php_extdir}/%{pecl_name}.so %{pecl_xmldir}/%{name}.xml %if %{with_zts} %{_bindir}/zts-phpsdl %{php_ztsextdir}/%{pecl_name}.so %endif %changelog * Fri Sep 1 2023 Remi Collet - 2.7.0-2 - build out of sources tree * Sat Jul 23 2022 Remi Collet - 2.7.0-1 - update to 2.7.0 - drop patch merged upstream * Mon Mar 21 2022 Remi Collet - 2.6.0-1 - update to 2.6.0 - fix build with PHP 8.0 using patch from https://github.com/Ponup/php-sdl/pull/60 - open https://github.com/Ponup/php-sdl/issues/61 build failure with 2.0.10 - open https://github.com/Ponup/php-sdl/issues/62 deprecated call * Mon Mar 14 2022 Remi Collet - 2.5.0-3 - handle all SDL extensions in launcher (for sdl_mixer) * Wed Sep 01 2021 Remi Collet - 2.5.0-2 - rebuild for 8.1.0RC1 * Sat Jun 19 2021 Remi Collet - 2.5.0-1 - update to 2.5.0 - raise dependency on PHP 8.0 * Mon Aug 24 2020 Remi Collet - 2.4.0-1 - update to 2.4.0 - drop patch merged upstream - raise dependency on PHP 7.4 * Wed Feb 26 2020 Remi Collet - 2.3.0-2 - add patch for duplicated symbols on GCC 10 from https://github.com/Ponup/php-sdl/pull/39 * Sun Sep 8 2019 Remi Collet - 2.3.0-1 - update to 2.3.0 * Tue Sep 03 2019 Remi Collet - 2.2.2-2 - rebuild for 7.4.0RC1 * Tue Sep 3 2019 Remi Collet - 2.2.2-1 - update to 2.2.2 - raise dependency on PHP 7.3 * Mon Sep 24 2018 Remi Collet - 2.1.0-1 - update to 2.1.0 - raise dependency on PHP 7.2 - open https://github.com/Ponup/phpsdl/issues/22 undefined symbols * Tue Mar 8 2016 Remi Collet - 0.9.3-2 - adapt for F24 - drop runtime dependency on pear, new scriptlets * Wed Oct 08 2014 Remi Collet - 0.9.3-1 - Update to 0.9.3 - don't install/register tests * Tue Dec 03 2013 Remi Collet - 0.9.2-1 - Update to 0.9.2 (beta) - adapt for SCL - add patch to fix NTS build * Tue Nov 26 2013 Remi Collet - 0.9.1-1 - Update to 0.9.1 (beta) - drop build patch merged upstream * Mon Nov 25 2013 Remi Collet - 0.9.0-1 - initial package, 0.9.0 (beta)