diff options
author | obrien <obrien@FreeBSD.org> | 1996-11-12 10:19:40 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1996-11-12 10:19:40 +0800 |
commit | 99df43bf1336afac77ff9926acf7893da84f2186 (patch) | |
tree | 9999e9819d03eba09ced920e326c13b87718436c /lang/moscow_ml | |
parent | 5c40e6d58c96aabdf311daa6728225174bf63001 (diff) | |
download | freebsd-ports-gnome-99df43bf1336afac77ff9926acf7893da84f2186.tar.gz freebsd-ports-gnome-99df43bf1336afac77ff9926acf7893da84f2186.tar.zst freebsd-ports-gnome-99df43bf1336afac77ff9926acf7893da84f2186.zip |
CATAGORIES+= -> CATAGORIES=
Reordered vars where needed. Added MAINTAINERS where needed, many
mkdir --> ${MKDIR}, install -> ${INSTALL_*}, etc.
Diffstat (limited to 'lang/moscow_ml')
-rw-r--r-- | lang/moscow_ml/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/moscow_ml/Makefile b/lang/moscow_ml/Makefile index 468643fe7210..4b6d5e13ea27 100644 --- a/lang/moscow_ml/Makefile +++ b/lang/moscow_ml/Makefile @@ -3,12 +3,12 @@ # Date created: 26 July 1996 # Whom: chuckr # -# $Id: Makefile,v 1.4 1996/07/30 01:24:55 chuckr Exp $ +# $Id: Makefile,v 1.5 1996/10/11 18:58:01 asami Exp $ # DISTNAME= mos14src PKGNAME= moscow_ml-1.4 -CATEGORIES+= lang +CATEGORIES= lang MASTER_SITES= ftp://ftp.dina.kvl.dk/pub/mosml/ \ ftp://ftp.csd.uu.se/pub/mirror/mosml/ \ ftp://ftp.dcs.ed.ac.uk/pub/ml/Moscow/ @@ -20,14 +20,14 @@ WRKSRC= ${WRKDIR}/mosml/src post-install: .if !defined(NOPORTDOCS) - mkdir -p ${PREFIX}/moscow_ml/doc - mkdir -p ${PREFIX}/moscow_ml/examples + ${MKDIR} ${PREFIX}/moscow_ml/doc + ${MKDIR} ${PREFIX}/moscow_ml/examples for file in ${WRKDIR}/mosml/doc/*;do \ ${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/doc;done (cd ${WRKDIR}/mosml/examples; \ ${INSTALL_DATA} README ${PREFIX}/moscow_ml/examples; \ for sdirs in manual mls helpsigs calc pretty lexyacc;do \ - mkdir -p ${PREFIX}/moscow_ml/examples/$${sdirs}; \ + ${MKDRI} ${PREFIX}/moscow_ml/examples/$${sdirs}; \ for file in $${sdirs}/*;do \ ${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/examples/$${sdirs}; \ done; done;) |