diff options
author | jmz <jmz@FreeBSD.org> | 1995-02-23 16:00:04 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1995-02-23 16:00:04 +0000 |
commit | 8b018d7ca4d0f6fb50e7686ed02039afb6207744 (patch) | |
tree | 22ccebb273d9f3a139b7e28d8093f1f4207a7b75 /editors/uemacs/Makefile | |
parent | 7569d2d6e1fdcfecd48cc9ec750fda20db7f7324 (diff) | |
download | FreeBSD-ports-8b018d7ca4d0f6fb50e7686ed02039afb6207744.zip FreeBSD-ports-8b018d7ca4d0f6fb50e7686ed02039afb6207744.tar.gz |
MicroEmacs-3.12
Submitted by: Thomas Gellekum <thomas@ghpc8.ihf.rwth-aachen.de>
Diffstat (limited to 'editors/uemacs/Makefile')
-rw-r--r-- | editors/uemacs/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/uemacs/Makefile b/editors/uemacs/Makefile new file mode 100644 index 0000000..a2386c1 --- /dev/null +++ b/editors/uemacs/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: MicroEmacs +# Version required: 3.12 +# Date created: 16 Jan 1995 +# Whom: thomas@ghpc8.ihf.rwth-aachen.de +# + +DISTNAME= uemacs +MASTER_SITES= ftp://midas.mgmt.purdue.edu/pub/ue312/ +PATCH_STRIP= -p1 +DISTFILES= ue312dev.zip +EXEC_DEPENDS= unzip:${PORTSDIR}/archivers/unzip + +# one weakness of the ports scheme: it doesn't allow arguments +# to ${EXTRACT_CMD} after the filename, which is required for unzip. + +NO_WRKSUBDIR= yes + +pre-extract: exec_depends + @echo "===> Extracting for ${DISTNAME}" + @rm -rf ${WRKDIR} + @mkdir -p ${WRKDIR} + @unzip -Laq ${DISTDIR}/${DISTFILES} -d ${WRKDIR} + +extract: fetch pre-extract ${EXTRACT_COOKIE} + @${TOUCH} ${TOUCH_FLAGS} ${EXTRACT_COOKIE} + +.include <bsd.port.mk> |