%global selinux_types %(awk '/^#[[:space:]]*SELINUXTYPE=/,/^[^#]/ { if ($3 == "-") printf "%s ", $2 }' /etc/selinux/config 2>/dev/null) %global selinux_variants %([ -z "%{selinux_types}" ] && echo mls strict targeted || echo %{selinux_types}) Summary: Web-based LDAP address book Name: contagged Version: 0.8.0 Release: 6%{?dist} License: GPL-2.0-or-later URL: http://www.cosmocode.de/en/open-source/contagged/ Source0: https://github.com/cosmocode/contagged/archive/%{version}.tar.gz Source3: contagged-README.RPM Source4: contagged.fc Source5: contagged.if Source6: contagged.te Source7: contagged-README.SELinux Source24: contagged-2.4.conf Patch0: contagged-0.8.0-bob4os.patch Patch1: contagged-0.8.0-unbundle-smarty.patch Patch2: contagged-0.8.0-smarty3.patch Patch3: contagged-0.8.0-count.patch BuildArch: noarch Requires: php, php-ldap, httpd # php-Smarty 2.6.16-1 and later install in %%{_datadir}/php Requires: php-Smarty >= 2.6.16-1 BuildRequires: httpd symlinks BuildRequires: checkpolicy, selinux-policy-devel, hardlink # hack to avoid problems mixing new modules with older policy, e.g. # http://www.redhat.com/archives/fedora-selinux-list/2006-May/msg00102.html # # _selinux_policy_version introduced in F-20 (#999584), but can be emulated by # pulling the policy version number from the policyhelp file on older distributions %{!?_selinux_policy_version: %global _selinux_policy_version %(sed -e 's,.*selinux-policy-\\([^/]*\\)/.*,\\1,' /usr/share/selinux/devel/policyhelp 2>/dev/null || echo 0.0.0)} %global selinux_policynum %(echo %{_selinux_policy_version} | awk -F. '{ printf "%d%02d%02d", $1, $2, $3 }') Conflicts: selinux-policy < %{_selinux_policy_version} %description ConTagged is a web-based address book for small companies written in PHP. It provides access to a company-wide address book, as well as private address books for each employee. All contact details are stored in the LDAP directory and are available from all common e-mail clients. Contacts can be grouped and looked up in infinite ways by assigning tags to them. ConTagged integrates perfectly into an existing infrastructure by using an existing LDAP directory for authenticating the users. %prep %setup -q # Update to actively-maintained code from https://github.com/bob4os/contagged %patch -P 0 -p1 # Unbundle Smarty %patch -P 1 -p1 # Fix edit template email address form to work with Smarty 3.x %patch -P 2 # Fix error in get_users() %patch -P 3 -p1 # Install httpd config snippet sed -e 's,@@PHPDIR@@,%{_datadir}/php,' %{SOURCE24} > contagged.conf # Prepare docs and SELinux policy module cp -a %{SOURCE3} README.RPM mkdir SELinux/ cp -a %{SOURCE4} %{SOURCE5} %{SOURCE6} SELinux/ cp -a %{SOURCE7} SELinux/README.SELinux # Don't want .htaccess files in package rm contrib/.htaccess # Avoid doc-file dependencies chmod -c -x contrib/ldif2contagged.pl %build cd SELinux for selinuxvariant in %{selinux_variants} do make NAME=${selinuxvariant} -f /usr/share/selinux/devel/Makefile mv contagged.pp contagged.pp.${selinuxvariant} make NAME=${selinuxvariant} -f /usr/share/selinux/devel/Makefile clean done cd - %install # Create directories needed for installation install -d %{buildroot}%{_datadir}/php/contagged install -d %{buildroot}%{_datadir}/php/contagged/inc install -d %{buildroot}%{_datadir}/php/Smarty/plugins install -d %{buildroot}%{_localstatedir}/cache/contagged install -d %{buildroot}%{_sysconfdir}/contagged install -d %{buildroot}%{_sysconfdir}/httpd/conf.d # Install application files cp -a *.php pix scripts styles templates \ %{buildroot}%{_datadir}/php/contagged/ cp -a inc/*.php inc/*.php.dist inc/lang \ %{buildroot}%{_datadir}/php/contagged/inc/ # Install custom Smarty plugins cp -a inc/smarty/plugins/modifier.{csv,h,http,noteparser}.php \ %{buildroot}%{_datadir}/php/Smarty/plugins # Install SELinux policy modules cd SELinux for selinuxvariant in %{selinux_variants} do install -d %{buildroot}%{_datadir}/selinux/${selinuxvariant} install -p -m 644 contagged.pp.${selinuxvariant} \ %{buildroot}%{_datadir}/selinux/${selinuxvariant}/contagged.pp done cd - # Hardlink identical policy module packages together hardlink -cv %{buildroot}%{_datadir}/selinux # Replace config.php with a symlink to %%{_sysconfdir}/contagged/config.php # Replace fields.php with a symlink to %%{_sysconfdir}/contagged/fields.php # Install cache as a symlink to %%{_localstatedir}/cache/contagged mv %{buildroot}%{_datadir}/php/contagged/inc/config.php.dist \ %{buildroot}%{_sysconfdir}/contagged/config.php mv %{buildroot}%{_datadir}/php/contagged/inc/fields.php \ %{buildroot}%{_sysconfdir}/contagged/fields.php ln -s %{buildroot}%{_sysconfdir}/contagged/{config,fields}.php \ %{buildroot}%{_datadir}/php/contagged/inc/ ln -s %{buildroot}%{_localstatedir}/cache/contagged \ %{buildroot}%{_datadir}/php/contagged/cache cd %{buildroot}%{_datadir}/php/contagged symlinks -csr . cd - # Install apache httpd configuration file install -p -m 644 contagged.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/ %post # Install SELinux policy modules if [ -x /usr/sbin/semodule ]; then for selinuxvariant in %{selinux_variants} do /usr/sbin/semodule -s ${selinuxvariant} -i \ %{_datadir}/selinux/${selinuxvariant}/contagged.pp &> /dev/null || : done fi # Fix up non-standard directory context [ -x /sbin/restorecon ] && /sbin/restorecon %{_localstatedir}/cache/contagged || : %postun # Clean up after package removal if [ $1 -eq 0 ]; then # Clean out the cache rm -f %{_localstatedir}/cache/contagged/*.tpl.php rmdir %{_localstatedir}/cache/contagged &> /dev/null || : # Remove SELinux policy modules if [ -x /usr/sbin/semodule ]; then for selinuxvariant in %{selinux_variants} do /usr/sbin/semodule -s ${selinuxvariant} -r contagged &> /dev/null || : done fi # Clean up any remaining file contexts (shouldn't be any really) [ -x /sbin/restorecon -a -d %{_localstatedir}/cache/contagged ] && \ /sbin/restorecon -R %{_localstatedir}/cache/contagged &> /dev/null || : fi %files %license doc/COPYING %doc doc/ldapab.schema doc/README doc/slapd.example doc/TODO VERSION %doc README.RPM SELinux/README.SELinux contrib %config(noreplace) %{_sysconfdir}/contagged/config.php %config(noreplace) %{_sysconfdir}/contagged/fields.php %config(noreplace) %{_sysconfdir}/httpd/conf.d/contagged.conf %attr(0755,apache,apache) %{_localstatedir}/cache/contagged/ %{_datadir}/php/contagged/ %{_datadir}/php/Smarty/plugins/ %{_datadir}/selinux/*/contagged.pp %changelog * Thu Mar 30 2023 Paul Howarth - 0.8.0-6 - Use SPDX-format license tag - Avoid deprecated patch syntax * Tue Jan 18 2022 Paul Howarth - 0.8.0-5 - Rebase code using actively-maintained fork at https://github.com/bob4os/contagged - Drop support for old distributions prior to Fedora 19 - Drop support for Apache httpd 2.2 - Use %%license unconditionally * Tue Apr 25 2017 Paul Howarth - 0.8.0-4 - Another php7 compatibility fix: use preg_replace_callback instead of preg_replace with /e modifier - Drop support for old distributions prior to Fedora 13 - Drop redundant BuildRoot: and Group: tags - Drop buildroot cleaning in %%install section - Drop explicit %%clean section - %%{phpdir} is always %%{_datadir}/php now - Config for httpd 2.0.x is no longer needed * Sun Mar 26 2017 Paul Howarth - 0.8.0-3 - Fix php7 compatibility: set_magic_quotes_runtime not available * Thu Dec 11 2014 Paul Howarth - 0.8.0-2 - Update Smarty3 patch * Fri Sep 26 2014 Paul Howarth - 0.8.0-1 - Update to 0.8.0 - Update upstream URL - Update Smarty3 patch - Drop %%defattr, redundant since rpm 4.4 - Make SELinux support unconditional - Use %%license where possible * Mon Sep 9 2013 Paul Howarth - 0.7.2-6 - Fix up selinux policy conflicts (#999584) - Update upstream URL * Tue Jan 15 2013 Paul Howarth - 0.7.2-5 - Explicitly require php since nothing else pulls it in in F-18 * Fri Apr 20 2012 Paul Howarth - 0.7.2-4 - Use "Require local" rather than "Require ip 127.0.0.1 ::1" * Thu Apr 19 2012 Paul Howarth - 0.7.2-3 - Add support for httpd 2.4.x - Nobody else likes macros for commands * Sun Dec 5 2010 Paul Howarth - 0.7.2-2 - Fix edit template email address form to work with Smarty 3.x * Fri May 21 2010 Paul Howarth - 0.7.2-1 - Update to 0.7.2 - Added country support (note that ldapab.schema is updated) - Directory name doesn't even match tarball name now :-( * Wed Oct 21 2009 Paul Howarth - 0.7.1-1 - Update to 0.7.1 (a few bugfixes and a Slovak translation) http://www.cosmocode.de/en/blog/gohr/2009-10/20-contagged-0.7.1-available - Upstream tarball is now named after a git tag rather than the release number :-( * Tue Jul 14 2009 Paul Howarth - 0.7.0-1 - Update to 0.7.0 (adds QR Code support and Vcard import fixes) http://www.cosmocode.de/en/blog/gohr/2009-07/14-contagged-now-with-qrcodes - No upstream CHANGES file anymore - Define RPM macros in global scope * Tue Jun 16 2009 Paul Howarth - 0.6.5-2 - Add BR: /usr/share/selinux/devel/policyhelp because we need this actual file to grok the policy version number, and it can be found in either the selinux-policy, selinux-policy-devel, or selinux-policy-doc packages (depending on OS release) * Fri Dec 12 2008 Paul Howarth - 0.6.5-1 - Update to 0.6.5 * Thu Dec 4 2008 Paul Howarth - 0.6.4-1 - Update to 0.6.4 - Try to determine supported SELinux policy types by reading /etc/selinux/config - Upstream tarball now contains unversioned directory * Fri Dec 7 2007 Paul Howarth - 0.6.3-1 - Update to 0.6.3 (schema file ldapab.schema has additional attributes) - Tarball now includes a versioned directory name - CHANGES file missing from upstream tarball again - Add contrib directory as %%doc - Clarify license as GPL version 2 or later * Mon Jul 9 2007 Paul Howarth - 0.6.2-1 - Update to 0.6.2 * Sat Jun 30 2007 Paul Howarth - 0.6.1-1 - Update to 0.6.1 - Rename README.Fedora for README.RPM - Upstream tarball no longer includes versioned directory name - Update unbundle-smarty patch - Update %%prep and %%install for new file layout - CHANGES now included in upstream tarball - Config file entries.conf replaced by fields.php - Remove provide for php-Smarty-noteparser, useless anywhere else * Mon Jun 18 2007 Paul Howarth - 0.4-4 - Build selinux policy for RHEL5 builds too - Add version/release to provides for php-Smarty-noteparser * Thu Feb 22 2007 Paul Howarth - 0.4-3 - An FC6 update adds %%{_datadir}/php as a default include path, which is used by php-Smarty 2.6.16-1; tweak the unbundle-smarty patch to pick up Smarty from the include path rather than by directly referencing the files for distributions (FC6 onwards) where this will work * Mon Feb 12 2007 Paul Howarth - 0.4-2 - Install to %%{_datadir}/php on FC7 onwards - Rename README files in SRPM to try to avoid filename conflicts * Tue Sep 12 2006 Paul Howarth - 0.4-1 - Update to 0.4 - Cleanup patches now incorporated upstream * Tue Aug 29 2006 Paul Howarth - 0.3-11 - Buildreqs for FC5 now identical to buildreqs for FC6 onwards * Fri Jul 28 2006 Paul Howarth - 0.3-10 - Build SELinux policy modules for all base policies and install them into the %%{_datadir}/selinux/POLICYNAME directory, hardlinking identical policy files together to avoid duplicate files - Remove SELinux policy module packages silently if package is erased * Mon Jul 24 2006 Paul Howarth - 0.3-9 - Refine buildreqs for SELinux modules (different for FC6 onwards) * Wed Jun 21 2006 Paul Howarth - 0.3-8 - SELinux policy module cleaned up (requires httpd_cache_t) - Conflict with selinux-policy older than the one the module is built with - Removed commented-out sections of spec for different policy modules for different base policies, unlikely ever to be needed - Add buildreq m4 if building SELinux policy * Fri May 26 2006 Paul Howarth - 0.3-7 - More PHP cleanups - BuildRequire selinux-policy >= 2.2.40 rather than selinux-policy-targeted >= 2.2.38 - Application available only from localhost by default - Build separate policy modules for mls, strict, and targeted base policies * Tue May 23 2006 Paul Howarth - 0.3-6 - Still more PHP cleanups (sigh) * Mon May 22 2006 Paul Howarth - 0.3-5 - Provide php-Smarty-noteparser (custom plugin used by contagged) * Thu May 18 2006 Paul Howarth - 0.3-4 - Make SELinux module support conditional, for FC < 5 support * Wed May 17 2006 Paul Howarth - 0.3-3 - Use php-Smarty from Extras rather than bundled Smarty (thanks to Orion Poplawski) - More PHP cleanups * Tue May 16 2006 Paul Howarth - 0.3-2 - Don't put files under %%{_localstatedir}/www, put them under %%{_datadir}/contagged instead, with symlinks to files that need to be elsewhere - Add buildreq symlinks - Add README.SELinux - Split main/policy packages don't work - see: http://www.redhat.com/archives/fedora-selinux-list/2006-May/msg00097.html So the SELinux policy is integrated into the main package and restorecon is used to fix up contexts in %%post * Fri Apr 28 2006 Paul Howarth - 0.3-1 - Update to 0.3 - Patches included upstream, no longer needed - Update contagged.conf to include Apache 2.2 LDAP directives - Include CHANGES.txt from upstream but not in tarball - Include selinux policy module in subpackage, required to be installed before main package to that files get installed with correct contexts * Fri Mar 10 2006 Paul Howarth - 0.2-1 - Initial RPM build