mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
6380ce531d
"A Java-based application allowing you to monitor ebay auctions, submit bids, snipe (bid at the last moment), and otherwise track your auction-site experience. It includes adult-auction management, MANY currencies (yen, pound, dollar (US, Canada, Australian, and New Taiwanese), Swiss Francs, and euro, presently), drag-and-drop of auction URLs, a unique and powerful 'multisniping' feature." Submission tweaked to fix a few problems. PR: 69534 Submitted by: Jose Rodriguez <king@v2project.com>
36 lines
919 B
Makefile
36 lines
919 B
Makefile
# New ports collection makefile for: jbidwatcher
|
|
# Date Created: 24 July 2004
|
|
# Whom: Jose Rodriguez <king@v2project.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jbidwatcher
|
|
PORTVERSION= 0.9.3.1
|
|
CATEGORIES= misc java
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= JBidWatcher-${PORTVERSION}
|
|
EXTRACT_SUFX= .jar
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= king@v2project.com
|
|
COMMENT= A Java-based application allowing you to monitor eBay auctions
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.3+
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar \
|
|
bin/${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_DATA} ${DISTDIR}/${DISTFILES} ${JAVAJARDIR}/${PORTNAME}.jar
|
|
@${SED} -e "s:%%LOCALBASE%%:${LOCALBASE}:" \
|
|
-e "s:%%JAVAJARDIR%%:${JAVAJARDIR}:" \
|
|
${FILESDIR}/jbidwatcher.sh > ${PREFIX}/bin/${PORTNAME}
|
|
@${CHOWN} ${BINOWN}:${BINGRP} ${PREFIX}/bin/${PORTNAME}
|
|
@${CHMOD} a+rx ${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|