mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
36de9ba19d
- support staging while here: - move manpages to packing-list - remove MAKE_JOBS_UNSAFE - builds fine here - install docs and examples to stage area unconditionally - remove redundant inclusion of bsd.port.options.mk PR: 186667 Submitted by: Jose Garcia Juanino <jjuanino@gmail.com> (maintainer)
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# Created by: Oliver Braun <obraun@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mairix
|
|
PORTVERSION= 0.23
|
|
CATEGORIES= mail
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= jjuanino@gmail.com
|
|
COMMENT= Indexing and searching in Maildir, MH, or mbox folders
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= bison gmake
|
|
HAS_CONFIGURE= yes
|
|
|
|
PORTDOCS= NEWS README
|
|
PORTEXAMPLES= dotmairixrc.eg
|
|
PLIST_FILES= bin/mairix \
|
|
man/man1/mairix.1.gz \
|
|
man/man5/mairixrc.5.gz
|
|
|
|
OPTIONS_DEFINE= GZIP BZIP2 EXAMPLES DOCS
|
|
GZIP_DESC= gzip compressed mbox support
|
|
BZIP2_DESC= bzip2 compressed mbox support
|
|
|
|
GZIP_CONFIGURE_ENABLE= gzip-mbox
|
|
BZIP2_CONFIGURE_ENABLE= bzip-mbox
|
|
|
|
# Do not hardcode make(1) binary name
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E 's|cd (.+) ; make|$$(MAKE) -C \1|' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mairix ${STAGEDIR}/${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/mairix.1 ${STAGEDIR}/${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/mairixrc.5 ${STAGEDIR}/${MANPREFIX}/man/man5
|
|
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/NEWS ${WRKSRC}/README ${STAGEDIR}/${DOCSDIR}
|
|
@${MKDIR} ${STAGEDIR}/${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/dotmairixrc.eg ${STAGEDIR}/${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|