35 lines
828 B
Makefile
35 lines
828 B
Makefile
# New ports collection makefile for: dict
|
|
# Version required: 1.0
|
|
# Date created: 6 August 1997
|
|
# Whom: wosch
|
|
#
|
|
# $Id: Makefile,v 1.3 1997/08/16 10:14:36 wosch Exp $
|
|
#
|
|
|
|
DISTNAME= de-manpages-1.0
|
|
CATEGORIES= german
|
|
LANG= de_DE.ISO_8859-1
|
|
MASTER_SITES= ftp://ftp.Infodrom.North.DE/pub/Linux/Devel/manpages-de/
|
|
DISTFILES= ${manpages}.tgz
|
|
MAINTAINER= wosch@FreeBSD.org
|
|
EXTRACT_ONLY= ${DISTFILES}
|
|
NO_WRKSUBDIR= YES
|
|
NO_PACKAGE= YES
|
|
|
|
mandir= ${PREFIX}/man/${LANG}
|
|
manpages= manpages-de
|
|
|
|
|
|
do-build:
|
|
ln -s ${WRKSRC}/${manpages} ${WRKSRC}/de-man
|
|
makewhatis ${WRKSRC}/de-man
|
|
.if !defined(NOMANCOMPRESS)
|
|
${GZIP_CMD} -r ${WRKSRC}/${manpages}/man* || exit 0
|
|
.endif
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/${manpages}; \
|
|
${EXTRACT_CMD} cf - . | \
|
|
(cd ${mandir}; ${EXTRACT_CMD} xf - )
|
|
|
|
.include <bsd.port.mk>
|