* Fixes an issue where a theme's page templates were sometimes not detected. * Addresses problems with some category permalink structures. * Better handling for plugins or themes loading JavaScript incorrectly. * Adds early support for uploading images on iOS 6 devices. * Allows for a technique commonly used by plugins to detect a network-wide activation. * Better compatibility with servers running certain versions of PHP (5.2.4, 5.4) or with uncommon setups (safe mode, open_basedir), which had caused warnings or in some cases prevented emails from being sent. * Privilege Escalation/XSS. Critical. Administrators and editors in multisite were accidentally allowed to use unfiltered_html for 3.4.0. And others, tested on i386 and amd64. Ok merdely@ (maintainer) aja@
38 lines
713 B
Makefile
38 lines
713 B
Makefile
# $OpenBSD: Makefile,v 1.40 2012/07/02 13:26:38 gonzalo Exp $
|
|
|
|
COMMENT = standard compliant weblog
|
|
|
|
DISTNAME = wordpress-3.4.1
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = http://wordpress.org/
|
|
MAINTAINER = Michael Erdely <merdely@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${HOMEPAGE}
|
|
|
|
MODULES = lang/php
|
|
|
|
RUN_DEPENDS = lang/php/${MODPHP_VERSION},-mysql
|
|
|
|
NO_BUILD = Yes
|
|
NO_REGRESS = Yes
|
|
PKG_ARCH = *
|
|
|
|
PREFIX = /var/www
|
|
INSTDIR = ${PREFIX}/wordpress
|
|
WRKDIST = ${WRKDIR}/wordpress
|
|
|
|
SUBST_VARS = INSTDIR
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/wordpress
|
|
cd ${WRKSRC} && pax -rw * ${PREFIX}/wordpress
|
|
|
|
.include <bsd.port.mk>
|