mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
a8c3ce566e
- A configuration for DITA can be downloaded and installed using Options|Install Add-ons. - XXE has a more powerful table editor allowing to insert, copy, cut, paste, delete columns and rows, and allowing to increment or decrement the number of columns and the number of rows spanned by a cell. - It is now possible to bind a command to the drag action as well as to the drop action. - Many enhancements are related to the CSS support in XXE.
43 lines
989 B
Makefile
43 lines
989 B
Makefile
# New ports collection makefile for: xxe
|
|
# Date created: 19 February 2005
|
|
# Whom: Bill Fenner
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xxe
|
|
PORTVERSION= 3.2.0
|
|
CATEGORIES= editors java
|
|
MASTER_SITES= http://www.xmlmind.net/xmleditor/_download/
|
|
PKGNAMESUFFIX= -std
|
|
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION:S/./_/g}
|
|
|
|
MAINTAINER= fenner@FreeBSD.Org
|
|
COMMENT= A validating XML editor featuring a word processor-like view
|
|
|
|
USE_JAVA= YES
|
|
JAVA_VERSION= 1.5
|
|
NO_BUILD= YES
|
|
|
|
RESTRICTED= "Licensee may not distribute the Software"
|
|
|
|
BINS= convertdoc csscheck deploywebstart dtdtoxsd dtdvalid \
|
|
xsdvalid xxe
|
|
|
|
PLIST_SUB= XXE=${DISTNAME}
|
|
|
|
post-extract:
|
|
@${SED} -e 's,%%JAVA_HOME%%,${JAVA_HOME},' \
|
|
-e 's,%%PREFIX%%,${PREFIX},' \
|
|
-e 's,%%DISTNAME%%,${DISTNAME},' \
|
|
${FILESDIR}/launcher > ${WRKDIR}/xxe
|
|
|
|
do-install:
|
|
@cd ${WRKDIR} && tar cf - ${DISTNAME} | \
|
|
tar -C ${PREFIX}/lib -xf -
|
|
.for f in ${BINS}
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/xxe ${PREFIX}/bin/${f}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|