diff options
author | pat <pat@FreeBSD.org> | 2001-12-08 03:43:03 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2001-12-08 03:43:03 +0000 |
commit | 64a204b7c35d2d1e96ab23a864f0335bde73b45a (patch) | |
tree | 1320b4382ac3564b5be6eab91b04b4b2e6c87a21 /lang | |
parent | a17466500a495cec21983deec3b8ff07cca0ca10 (diff) | |
download | FreeBSD-ports-64a204b7c35d2d1e96ab23a864f0335bde73b45a.zip FreeBSD-ports-64a204b7c35d2d1e96ab23a864f0335bde73b45a.tar.gz |
Use GNU_CONFIGURE and some style changes
PR: 32521
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/yap/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lang/yap/Makefile b/lang/yap/Makefile index 00059ee..39877e2 100644 --- a/lang/yap/Makefile +++ b/lang/yap/Makefile @@ -15,14 +15,12 @@ DISTNAME= Yap-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -do-configure: - @(${MKDIR} ${WRKSRC}/arch ; cd ${WRKSRC}/arch ; \ - ../configure) +WRKSRC= ${WRKDIR}/Yap-${PORTVERSION}/arch -do-build: - @(cd ${WRKSRC}/arch ; make) +GNU_CONFIGURE= yes +CONFIGURE_SCRIPT= ../configure -do-install: - @(cd ${WRKSRC}/arch ; make install) +post-extract: + @${MKDIR} ${WRKSRC} .include <bsd.port.mk> |