mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
36 lines
874 B
Makefile
36 lines
874 B
Makefile
# Created by: David O'Brien <obrien@NUXI.com>
|
|
# $FreeBSD$
|
|
PORTNAME= 44bsd-csh
|
|
PORTVERSION= 20001106
|
|
PORTREVISION= 4
|
|
CATEGORIES= shells
|
|
MASTER_SITES= LOCAL/cy
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= The traditional 4.4BSD /bin/csh C-shell
|
|
|
|
BUILD_DEPENDS= rcs:${PORTSDIR}/devel/rcs57
|
|
|
|
USES= tar:bzip2
|
|
NO_WRKSUBDIR= yes
|
|
PORTDOCS= paper.ascii.gz
|
|
|
|
post-extract:
|
|
cd ${WRKSRC} ; co RCS/*,v; chmod u+w *
|
|
cd ${WRKSRC}/USD.doc ; co RCS/*,v
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/USD.doc ; ${MAKE}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/csh ${STAGEDIR}${PREFIX}/bin/44bsd-csh
|
|
${INSTALL_MAN} ${WRKSRC}/csh.1 ${STAGEDIR}${PREFIX}/man/man1/44bsd-csh.1
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/USD.doc/paper.ascii.gz ${STAGEDIR}${DOCSDIR}
|
|
|
|
tarup:
|
|
cd ${WRKSRC} ; rm * USD.doc/*
|
|
cd ${WRKSRC} ; ${TAR} cvyf /tmp/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
|
|
|
.include <bsd.port.mk>
|