7b4badb3fd
* Fixes some issues in the admin area where some older browsers (IE7, in particular) may slow down, lag, or freeze. * Fixes the use of multiple trackback URLs in a post. Prevents improperly sized images from being uploaded as headers from the customizer. * Ensures proper error messages can be shown to PHP4 installs. (WordPress requires PHP 5.2.4 or later.) * Fixes handling of oEmbed providers that only return XML responses. * Addresses pagination problems with some category permalink structures. * Adds more fields to be returned from the XML-RPC wp.getPost method. * Avoids errors when updating automatically from very old versions of WordPress (pre-3.0). * Fixes problems with the visual editor when working with captions. Tested on i386. Ok merdely@
38 lines
713 B
Makefile
38 lines
713 B
Makefile
# $OpenBSD: Makefile,v 1.42 2012/10/01 12:03:42 gonzalo Exp $
|
|
|
|
COMMENT = standard compliant weblog
|
|
|
|
DISTNAME = wordpress-3.4.2
|
|
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>
|