mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
4d734bc1e5
- Drop ABI version number from LIB_DEPENDS - Convert to new options framework - Trim Makefile header - Tab -> space in pkg-descr WWW line PR: ports/173043 Submitted by: Armin Gruner <ag-freebsd@muc.de> (maintainer) Approved by: makc, avilla (mentors, implicit) Feature safe: yes
34 lines
695 B
Makefile
34 lines
695 B
Makefile
# Created by: Lewis Thompson <lewiz@compsoc.man.ac.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= esniper
|
|
DISTVERSION= 2-28-0
|
|
CATEGORIES= misc net
|
|
MASTER_SITES= SF
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ag-freebsd@muc.de
|
|
COMMENT= Lightweight console application for sniping ebay auctions
|
|
|
|
LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-curl-config=${LOCALBASE}/bin/curl-config
|
|
USE_OPENSSL= yes
|
|
|
|
MAN1= esniper.1
|
|
|
|
PLIST_FILES= bin/esniper
|
|
|
|
PORTEXAMPLES= sample_auction.txt sample_config.txt
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/|} ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|