7120709ab9
- server-side request forgery vulnerability and remote port scanning using pingbacks (http://lab.onsec.ru/2013/01/wordpress-xmlrpc-pingback-additional.html) - cross-site scripting via shortcodes and post content - cross-site scripting vulnerability in the external library Plupload ok merdely@
38 lines
711 B
Makefile
38 lines
711 B
Makefile
# $OpenBSD: Makefile,v 1.44 2013/01/28 21:14:09 sthen Exp $
|
|
|
|
COMMENT = standard compliant weblog
|
|
|
|
DISTNAME = wordpress-3.5.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>
|