96c55a89a9
WordPress is a state-of-the-art, semantic personal publishing platform with a focus on aesthetics, Web standards, and usability.
37 lines
698 B
Makefile
37 lines
698 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/08/03 01:54:05 kevlo Exp $
|
|
|
|
COMMENT= "standard compliant weblog"
|
|
|
|
V= 1.2
|
|
DISTNAME= wordpress-${V}-mingus
|
|
PKGNAME= wordpress-${V}
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://wordpress.org/
|
|
|
|
MAINTAINER= Kevin Lo <kevlo@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cafelog/}
|
|
|
|
RUN_DEPENDS= :php4-mysql->=4.3.1:www/php4/extensions,-mysql
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
|
|
PREFIX= /var/www
|
|
INSTDIR= ${PREFIX}/wordpress
|
|
|
|
SUBST_VARS= INSTDIR
|
|
|
|
do-install:
|
|
@cd ${PREFIX} && tar zxf ${FULLDISTDIR}/${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
.include <bsd.port.mk>
|