aboutsummaryrefslogtreecommitdiffstats
path: root/archivers/xdms/Makefile
blob: 369ad8090403e7b7e252157cc5a2bcf7551804c9 (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
31
32
33
34
35
36
37
38
# Created by: Mark Pulford <mark@kyne.com.au>
# $FreeBSD$

PORTNAME=   xdms
PORTVERSION=    1.3.2
CATEGORIES= archivers
MASTER_SITES=   http://zakalwe.fi/~shd/foss/xdms/

MAINTAINER= sylvio@FreeBSD.org
COMMENT=    Tool for decompressing Amiga DMS files

OPTIONS_DEFINE= DOCS

USE_BZIP2=  yes
HAS_CONFIGURE=  yes
CONFIGURE_ARGS= --prefix=${PREFIX}
ALL_TARGET= xdms

USE_CSTD=   gnu89

PORTDOCS=   xdms.txt
PLIST_FILES=    bin/xdms

.include <bsd.port.options.mk>

post-patch:
    ${REINPLACE_CMD} "s@-O2 -Wall@$${CFLAGS} -Wall@g" ${WRKSRC}/src/Makefile.in

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/src/xdms ${PREFIX}/bin
.if ${PORT_OPTIONS:MDOCS}
    ${MKDIR} ${DOCSDIR}
.for docs in ${PORTDOCS}
    ${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.mk>