71e273895f
- Use NO_WRKSUBDIR [1] - Switch to PLIST_FILES - General Makefile improvements PR: ports/176194 [1] Submitted by: Christoph Mallon <christoph.mallon@gmx.de>
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# Created by: G. Adam Stanislav <adam@whizkidtech.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tifmerge
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.whizkidtech.redprince.net/fports/
|
|
DISTNAME= tiff
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library to merge TIFF files into multi-page TIFF files
|
|
|
|
USE_DOS2UNIX= *.[ch]
|
|
USE_LDCONFIG= yes
|
|
USE_ZIP= yes
|
|
NO_WRKSUBDIR= yes
|
|
DIST_SUBDIR= tifmerge
|
|
|
|
PLIST_FILES= lib/libtifmerge.a \
|
|
include/tifmerge.h \
|
|
lib/libtifmerge.so \
|
|
lib/libtifmerge.so.1
|
|
|
|
MAN3= tifmerge.3
|
|
|
|
post-extract:
|
|
@${MV} ${WRKSRC}/TIFMERGE.H ${WRKSRC}/tifmerge.h
|
|
@${MV} ${WRKSRC}/TIFMERGE.C ${WRKSRC}/tifmerge.c
|
|
@${CP} ${FILESDIR}/Makefile ${WRKSRC}
|
|
@${SED} -e 's|@PREFIX@|${PREFIX}|g' ${FILESDIR}/tifmerge.3 > \
|
|
${WRKSRC}/tifmerge.3
|
|
|
|
do-install:
|
|
${INSTALL_LIB} ${WRKSRC}/libtifmerge.so.1 ${PREFIX}/lib
|
|
${LN} -fs ${PREFIX}/lib/libtifmerge.so.1 ${PREFIX}/lib/libtifmerge.so
|
|
${INSTALL_DATA} ${WRKSRC}/libtifmerge.a ${PREFIX}/lib
|
|
${INSTALL_DATA} ${WRKSRC}/tifmerge.h ${PREFIX}/include
|
|
${INSTALL_MAN} ${WRKSRC}/tifmerge.3 ${MAN3PREFIX}/man/man3
|
|
|
|
.include <bsd.port.mk>
|