freebsd-ports/devel/sabre/Makefile
Alex Dupre f383fe5116 This project provides the Java-based implementation of the
Simple API for Binary REpresentations (SABRE). The library
defines observer-pattern interfaces for processing hierarchically
structured, binary-oriented documents, comparable to the Simple
API for XML (SAX). Processing can be modularized into a streaming
pipeline composed of separate stages, enabling the parsing,
transformation and serialization of large binary documents.

UDFLib is a Java-based implementation for creating UDF filesystem
images for DVDs according to ISO 13346, also known as ECMA-167.

WWW: http://sabre-library.sourceforge.net/

Feature safe:	yes
2010-06-28 10:58:49 +00:00

37 lines
977 B
Makefile

# Ports collection makefile for: sabre
# Date created: 28 Jun 2010
# Whom: Alex Dupre <ale@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= sabre
PORTVERSION= 20100501
CATEGORIES= devel multimedia java
MASTER_SITES= SF
MASTER_SITE_SUBDIR= sabre-library
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
MAINTAINER= ale@FreeBSD.org
COMMENT= A Simple API for Binary REpresentations and an UDF Library
LICENSE= LGPL21
WRKSRC= ${WRKDIR}/Simple\ API\ for\ Binary\ REpresentations\ \(SABRE\)
USE_ZIP= yes
USE_JAVA= yes
JAVA_VERSION= 1.5+
USE_ANT= yes
ALL_TARGET= dist
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar %%JAVAJARDIR%%/udflib.jar
do-install:
@${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..."
@${INSTALL_DATA} ${WRKSRC}/dist/${PORTNAME}.jar ${JAVAJARDIR}/
@${ECHO_MSG} " [ DONE ]"
@${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/udflib.jar..."
@${INSTALL_DATA} ${WRKSRC}/dist/udflib.jar ${JAVAJARDIR}/
@${ECHO_MSG} " [ DONE ]"
.include <bsd.port.mk>