blob: be9e7c073a607b1702929f867b71e865fe773a82 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# New ports collection makefile for: ccard
# Date created: 12 Aug 2005
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= ccard
PORTVERSION= 1.1
CATEGORIES= finance
MASTER_SITES= http://www.canb.auug.org.au/~millerp/
DISTNAME= ${PORTNAME}.${PORTVERSION}
MAINTAINER= ehaupt@critical.ch
COMMENT= A command line offline credit card validator/analyzer
GNU_CONFIGURE= yes
USE_REINPLACE= yes
PLIST_FILES= bin/ccard
MAN1= ccard.1
post-configure:
${REINPLACE_CMD} -e 's/^CFLAGS/CFLAGS?/' ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/man1/${PORTNAME}.1 ${MANPREFIX}/man/man1
.include <bsd.port.mk>
|