freebsd-ports/archivers/zip-ada/Makefile
John Marino 47da077536 archivers/zip-ada: Upgrade version 48 => 49
A few more tools and examples came in.  The build instruction was
unmasked, listed were put into alphabetical order.  The static library
in now installed with INSTALL_DATA because INSTALL_LIB will strip the
symbols and this causes issues on Ada libraries.
2015-04-21 21:45:17 +00:00

53 lines
1.7 KiB
Makefile

# Created by: John Marino <marino@FreeBSD.org>
# $FreeBSD$
PORTNAME= zip-ada
PORTVERSION= 49
CATEGORIES= archivers
MASTER_SITES= SF/unzip-ada/
DISTNAME= zipada${PORTVERSION}
MAINTAINER= marino@FreeBSD.org
COMMENT= Zip compressed archive file format library written in Ada
LICENSE= MIT
USES= ada perl5 dos2unix zip
USE_PERL5= build
WRKSRC= ${WRKDIR}/zip-ada
MAKE_ENV+= Build_Mode=Optimize
ZTOOLS= bunzip comp_zip find_zip lz lzma_dec random_data rezip zipada
DEMOS= demo_csv_into_zip demo_unzip demo_zip test_chunk \
test_extract test_extract_tb test_lz_scramble \
test_stream_performance test_unz_streams \
test_zip_info_timing za_gnat zip_with_many_files ziptest
do-build:
(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} gnatmake -P zipada.gpr)
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/bin \
${STAGEDIR}${EXAMPLESDIR} \
${STAGEDIR}${PREFIX}/include/zip-ada \
${STAGEDIR}${PREFIX}/lib/zip-ada \
${STAGEDIR}${PREFIX}/lib/gnat
@${MKDIR} ${WRKSRC}/obj_tools ${WRKSRC}/obj_demos
.for F in ${ZTOOLS}
${INSTALL_PROGRAM} ${WRKSRC}/${F} ${STAGEDIR}${PREFIX}/bin/
${MV} ${WRKSRC}/obj_opt/${F}.* ${WRKSRC}/obj_tools/
.endfor
.for F in ${DEMOS}
${INSTALL_PROGRAM} ${WRKSRC}/${F} ${STAGEDIR}${EXAMPLESDIR}/
${MV} ${WRKSRC}/obj_opt/${F}.* ${WRKSRC}/obj_demos/
.endfor
(cd ${WRKSRC}/obj_opt && ${AR} rcs libzip-ada.a *.o)
${MV} ${STAGEDIR}${PREFIX}/bin/bunzip \
${STAGEDIR}${PREFIX}/bin/debzip2
${INSTALL_DATA} ${WRKSRC}/zip_lib/*.ad[sb] \
${STAGEDIR}${PREFIX}/include/zip-ada/
${INSTALL_DATA} ${WRKSRC}/obj_opt/*.ali \
${STAGEDIR}${PREFIX}/lib/zip-ada/
${INSTALL_DATA} ${WRKSRC}/obj_opt/*.a ${STAGEDIR}${PREFIX}/lib/zip-ada/
${INSTALL_DATA} ${FILESDIR}/zip-ada.gpr ${STAGEDIR}${PREFIX}/lib/gnat/
.include <bsd.port.mk>