diff options
Diffstat (limited to 'archivers/unadf/Makefile')
-rw-r--r-- | archivers/unadf/Makefile | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/archivers/unadf/Makefile b/archivers/unadf/Makefile index 7ca05afb5643..24cf2efd7d4e 100644 --- a/archivers/unadf/Makefile +++ b/archivers/unadf/Makefile @@ -7,7 +7,7 @@ PORTNAME= unadf PORTVERSION= 0.7.9b -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MASTER_SITES= http://perso.club-internet.fr/lclevy/adflib/ DISTNAME= adflib @@ -17,12 +17,26 @@ COMMENT= Extracts files from .adf-files used by Amiga emulators 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 -pre-build: +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> |