diff options
author | barner <barner@FreeBSD.org> | 2007-06-26 01:14:41 +0800 |
---|---|---|
committer | barner <barner@FreeBSD.org> | 2007-06-26 01:14:41 +0800 |
commit | 48de33a21a70bd6c0868c2e5e04b9797636f6385 (patch) | |
tree | e40eecb874df161d272fdc787b5d52badae72308 /sysutils | |
parent | 1659fc8fd5a5183bcd5b49347a8ee650382a3f4c (diff) | |
download | freebsd-ports-gnome-48de33a21a70bd6c0868c2e5e04b9797636f6385.tar.gz freebsd-ports-gnome-48de33a21a70bd6c0868c2e5e04b9797636f6385.tar.zst freebsd-ports-gnome-48de33a21a70bd6c0868c2e5e04b9797636f6385.zip |
- Use USE_OCAML
- Avoid unnessary usage of bsd.port.{pre, post}.mk
Pointed out by: sat
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/ledit/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sysutils/ledit/Makefile b/sysutils/ledit/Makefile index da541d0f475c..ad8c6421d26e 100644 --- a/sysutils/ledit/Makefile +++ b/sysutils/ledit/Makefile @@ -16,7 +16,7 @@ MASTER_SITES= ftp://ftp.inria.fr/INRIA/cristal/Daniel.de_Rauglaudre/Tools/ \ MAINTAINER= barner@FreeBSD.org COMMENT= Line editor to be used with interactive commands -BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml +USE_OCAML= yes ALL_TARGET= all ledit.opt @@ -24,10 +24,8 @@ PLIST_FILES= bin/ledit MAN1= ledit.1 -.include <bsd.port.pre.mk> - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ledit.out ${PREFIX}/bin/ledit ${INSTALL_MAN} ${WRKSRC}/ledit.l ${MANPREFIX}/man/man1/ledit.1 -.include <bsd.port.post.mk> +.include <bsd.port.mk> |