From cc24a3a4118bb0d01bb9419e368a5af4712d0190 Mon Sep 17 00:00:00 2001 From: danfe Date: Fri, 21 Dec 2012 05:32:17 +0000 Subject: - Trim Makefile header per new bylaws - Drop indefinite article from COMMENT - Define LICENSE (and remove COPYING from portdocs) - Unmute installation commands - Convert NOPORTDOCS -> PORT_OPTIONS:MDOCS Approved by: maintainer (gabor) --- archivers/cabextract/Makefile | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'archivers') diff --git a/archivers/cabextract/Makefile b/archivers/cabextract/Makefile index 9b2534ec321f..775b76122108 100644 --- a/archivers/cabextract/Makefile +++ b/archivers/cabextract/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: cabextract -# Date Created: 30 November 2000 -# Whom: Maxim Sobolev -# +# Created by: Maxim Sobolev # $FreeBSD$ -# PORTNAME= cabextract PORTVERSION= 1.4 @@ -11,7 +7,9 @@ CATEGORIES= archivers MASTER_SITES= http://www.cabextract.org.uk/ MAINTAINER= gabor@FreeBSD.org -COMMENT= A program to extract Microsoft cabinet (.CAB) files +COMMENT= Program to extract Microsoft cabinet (.CAB) files + +LICENSE= GPLv3 GNU_CONFIGURE= yes @@ -19,24 +17,28 @@ MANLANG= "" ja MAN1= cabextract.1 PLIST_FILES= bin/cabextract -DOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO +DOCS= AUTHORS ChangeLog NEWS README TODO DOC_DOCS= magic wince_cab_format.html SRC_DOCS= wince_info wince_rename PORTDOCS= ${DOCS} ${DOC_DOCS} ${SRC_DOCS} +OPTIONS_DEFINE= DOCS + +.include + post-install: ${INSTALL_MAN} ${WRKSRC}/doc/cabextract.1 ${MAN1PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/doc/ja/cabextract.1 ${MAN1PREFIX}/man/ja/man1 -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for i in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} .endfor .for i in ${DOC_DOCS} - @${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR} .endfor .for i in ${SRC_DOCS} - @${INSTALL_DATA} ${WRKSRC}/src/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/src/${i} ${DOCSDIR} .endfor .endif -- cgit