diff options
author | dinoex <dinoex@FreeBSD.org> | 2009-01-17 18:54:57 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2009-01-17 18:54:57 +0800 |
commit | 3cf915eecee3df3ab106aa202ec5dc0536e47966 (patch) | |
tree | c88ad4d5bebcbafbd6337b99b5a86302cd53e570 /german | |
parent | 21fde25f24f926dbc2d7bf007796e461246fd471 (diff) | |
download | freebsd-ports-gnome-3cf915eecee3df3ab106aa202ec5dc0536e47966.tar.gz freebsd-ports-gnome-3cf915eecee3df3ab106aa202ec5dc0536e47966.tar.zst freebsd-ports-gnome-3cf915eecee3df3ab106aa202ec5dc0536e47966.zip |
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/
Diffstat (limited to 'german')
-rw-r--r-- | german/Makefile | 1 | ||||
-rw-r--r-- | german/dtaus/Makefile | 47 | ||||
-rw-r--r-- | german/dtaus/distinfo | 3 | ||||
-rw-r--r-- | german/dtaus/pkg-descr | 14 |
4 files changed, 65 insertions, 0 deletions
diff --git a/german/Makefile b/german/Makefile index 1a54482d5e80..c4dc3896a319 100644 --- a/german/Makefile +++ b/german/Makefile @@ -14,6 +14,7 @@ SUBDIR += dict SUBDIR += digibux SUBDIR += ding + SUBDIR += dtaus SUBDIR += eric4 SUBDIR += geonext SUBDIR += ispell diff --git a/german/dtaus/Makefile b/german/dtaus/Makefile new file mode 100644 index 000000000000..6fb375c994b6 --- /dev/null +++ b/german/dtaus/Makefile @@ -0,0 +1,47 @@ +# 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> diff --git a/german/dtaus/distinfo b/german/dtaus/distinfo new file mode 100644 index 000000000000..2f8045174a06 --- /dev/null +++ b/german/dtaus/distinfo @@ -0,0 +1,3 @@ +MD5 (dtaus-0.7.tar.gz) = d1b8e17d7999739595afa412e885dd80 +SHA256 (dtaus-0.7.tar.gz) = 9caf09fb643e6a8c79740024942fa017d9b2aaa13f46969cd5219b04ff969d60 +SIZE (dtaus-0.7.tar.gz) = 30500 diff --git a/german/dtaus/pkg-descr b/german/dtaus/pkg-descr new file mode 100644 index 000000000000..2e3835a22f40 --- /dev/null +++ b/german/dtaus/pkg-descr @@ -0,0 +1,14 @@ +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/ |