168f57451a
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category M. CR: D306 Approved by: portmgr (bapt)
27 lines
685 B
Makefile
27 lines
685 B
Makefile
# Created by: Jose Rodriguez <king@v2project.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jbidwatcher
|
|
PORTVERSION= 2.5.6
|
|
CATEGORIES= misc java
|
|
MASTER_SITES= http://www.jbidwatcher.com/download/
|
|
|
|
MAINTAINER= shurd@FreeBSD.org
|
|
COMMENT= Java-based application allowing you to monitor eBay auctions
|
|
|
|
USE_BZIP2= yes
|
|
USE_JAVA= yes
|
|
USE_ANT= yes
|
|
ALL_TARGET= jar
|
|
JAVA_VERSION= 1.6+
|
|
|
|
SUB_FILES= jbidwatcher
|
|
SUB_LIST+= PORTVERSION=${PORTVERSION}
|
|
PLIST_FILES= %%JAVAJARDIR%%/JBidwatcher-${PORTVERSION}.jar \
|
|
bin/${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/JBidwatcher-${PORTVERSION}.jar ${STAGEDIR}${JAVAJARDIR}
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|