mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
a6ab1b4043
- while here trim header and tighten comment PR: 174121 Submitted by: maintainer, joehorn@gmail.com Feature safe: yes
24 lines
534 B
Makefile
24 lines
534 B
Makefile
# Created by: Joe Horn <joehorn@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= CKEditor
|
|
PORTVERSION= 4.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://download.cksource.com/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION}/
|
|
DISTNAME= ckeditor_${PORTVERSION}_full
|
|
|
|
MAINTAINER= joehorn@gmail.com
|
|
COMMENT= WYSIWYG editor to be used inside web page
|
|
|
|
LICENSE= MPL
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/ckeditor
|
|
|
|
do-install:
|
|
@${INSTALL} -d -m 0755 ${WWWDIR}
|
|
@(cd ${WRKSRC} && ${FIND} . | ${CPIO} -pdmu -R${WWWOWN}:${WWWGRP} ${WWWDIR})
|
|
|
|
.include <bsd.port.mk>
|