blob: 41d4b820610457e1b46e3d808d3775983f1be215 (
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
39
40
41
42
43
44
45
46
|
# New ports collection makefile for: unadf
# Date created: 1 October 2000
# Whom: Per Wigren
#
# $FreeBSD$
#
PORTNAME= unadf
PORTVERSION= 0.7.9b
PORTREVISION= 2
CATEGORIES= archivers
MASTER_SITES= http://perso.club-internet.fr/lclevy/adflib/
DISTNAME= adflib
MAINTAINER= ports@FreeBSD.org
COMMENT= Extracts files from .adf-files used by Amiga emulators
DEPRECATED= Looks like an abandonware, no more public distfile
EXPIRATION_DATE= 2011-08-01
NO_WRKSUBDIR= yes
PLIST_FILES= bin/unadf
PORTDOCS= API.txt api_device.html api_dir.html api_env.html api_file.html \
api_index.html api_native.html api_salv.html api_volume.html
USE_ZIP= yes
MAKE_JOBS_UNSAFE= yes
post-patch:
@${REINPLACE_CMD} -e "s@tests lib demo@lib demo@g" ${WRKSRC}/Makefile
@${REINPLACE_CMD} 's|CFLAGS=-I$$(LIBDIR) -O2 -Wall -Wno-uninitialized -pedantic|CFLAGS+= -I$$(LIBDIR)|' \
${WRKSRC}/Demo/Makefile
@${REINPLACE_CMD} -e 's|CFLAGS=|CFLAGS+=|' \
-e 's|-Wall -O2 -pedantic||' \
-e 's|CC=|CC?=|' \
${WRKSRC}/Lib/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/Demo/unadf ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/Docs/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|