freebsd-ports/java/jasmin/Makefile
Volker Stolz 2e7c78f174 - Update to 1.1 (which means we need to bump PORTEPOCH because we must have
been sleeping when we imported 1.06). Since 'jasmin' now uses 'ant',
   Java 1.2+ is required, although you still might get away with 1.1 if you
   build it by hand.
- Add secondary category 'lang'

PR:		ports/78068
Approved by:	maintainer, hq
2005-03-01 21:29:29 +00:00

41 lines
956 B
Makefile

# New ports collection makefile for: jasmin
# Date created: May 26, 2004
# Whom: Volker Stolz <vs@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= jasmin
PORTVERSION= 1.1
PORTEPOCH= 1
CATEGORIES= java lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= plexus@snafu.de
COMMENT= Java Assembler Interface
USE_ZIP= yes
USE_ANT= yes
ALL_TARGET= jasmin
USE_JAVA= 1.2+
do-install:
${INSTALL_DATA} ${WRKSRC}/jasmin.jar ${JAVAJARDIR}
${MKDIR} ${EXAMPLESDIR}
cd ${WRKSRC}/examples ; \
${FIND} . -type d -exec ${MKDIR} ${EXAMPLESDIR}/\{} \; ;\
${FIND} . -type f -exec ${INSTALL_DATA} \{} ${EXAMPLESDIR}/\{} \;
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCDIR}
cd ${WRKSRC}/docs ; \
${FIND} . -type d -exec ${MKDIR} ${DOCSDIR}/\{} \; ;\
${FIND} . -type f -exec ${INSTALL_DATA} \{} ${DOCSDIR}/\{} \;
.endif
post-install:
${ENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.include <bsd.port.mk>