1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/german/dtaus/Makefile
Dirk Meyer 6e919539c9 This package contains a library that is able to read and write German DTAUS
files, DTAUS is an abbreviation for DatenTraegerAUStausch and refers to a
special file format used by German credit institutes in order to manage money
exchanges between accounts and institutes.

Dieses Paket enthaelt ein Programm zur Verwaltung und Erstellung von DTA- bzw.
DTAUS-Dateien. Damit wird belegloser Datentraegeraustausch fuer Ueberweisungen,
Lastschriften, Lohnzahlungen in Euro mit Deutschen Banken automatisiert
realisiert. Als Grundlage dient eine leicht verstaendliche ASCII-Datei,
die in das DTA-Format uebersetzt wird.

LICENSE: GPL2 or later

WWW: http://www.infodrom.org/projects/dtaus/
2009-01-17 10:54:57 +00:00

48 lines
1.1 KiB
Makefile

# New ports collection makefile for: dtaus
# Date created: 12 Jan 2009
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= dtaus
PORTVERSION= 0.7
CATEGORIES= german finance
MASTER_SITES= http://www.infodrom.org/projects/dtaus/download/
MAINTAINER= dinoex@FreeBSD.org
COMMENT= Belegloser DatenTraegerAUStausch
ALL_TARGET= dtaus
PLIST_FILES= bin/dtaus
PORTDOCS= ChangeLog README TODO dtaus.txt
PORTEXAMPLES= dtaus.cls sample.ctl
MAN1= dtaus.1
MAN5= dtaus.5
do-configure:
${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|g' \
${WRKSRC}/bigint.c ${WRKSRC}/dtaus.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/dtaus ${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/dtaus.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKSRC}/dtaus.5 ${PREFIX}/man/man5/
.ifndef(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} \
${DOCSDIR}/
.endfor
.endif
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
.for doc in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${doc} \
${EXAMPLESDIR}/
.endfor
.endif
.include <bsd.port.mk>