81848009fd
- Update WWW
38 lines
917 B
Makefile
38 lines
917 B
Makefile
# New ports collection makefile for: mar
|
|
# Date created: 20 Jun 2005
|
|
# Whom: Emanuel Haupt <ehaupt@critical.ch>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mar
|
|
DISTVERSION= 0.5
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://critical.ch/distfiles/ \
|
|
http://energy.critical.ch/distfiles/
|
|
DISTNAME= ${PORTNAME}-${DISTVERSION}-src
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= A simple binary file format for storing arbitrary meta and user data
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
|
|
|
|
MAN1= mar.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^\(CFLAGS\ \)|\1?|' \
|
|
${WRKSRC}/src/Makefile
|
|
@${REINPLACE_CMD} -e 's|^\(CXXFLAGS\ \)|\1?|' \
|
|
${WRKSRC}/src/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${TARGETDIR}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/man/man1/mar.1 ${MAN1PREFIX}/man/man1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/html/*.html ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|