diff options
author | jlam <jlam@pkgsrc.org> | 2000-06-21 02:58:23 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-06-21 02:58:23 +0000 |
commit | d1024f14aaecfb7080aff98e8c25922e3e729be5 (patch) | |
tree | d6cb02900c721552a2dee90397f06249747a1961 /editors/pico/Makefile | |
parent | ce52cb9f8cfbd699f8cf9b4f4c1bf547d51ecb33 (diff) | |
download | pkgsrc-d1024f14aaecfb7080aff98e8c25922e3e729be5.tar.gz |
USE_LIBTOOL instead of PKGLIBTOOL.
Diffstat (limited to 'editors/pico/Makefile')
-rw-r--r-- | editors/pico/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/editors/pico/Makefile b/editors/pico/Makefile index bb6739a1d61..9891e2001c8 100644 --- a/editors/pico/Makefile +++ b/editors/pico/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2000/06/01 11:23:25 rh Exp $ +# $NetBSD: Makefile,v 1.20 2000/06/21 03:53:35 jlam Exp $ # DISTNAME= pine4.21 @@ -9,7 +9,15 @@ MASTER_SITES= ftp://ftp.cac.washington.edu/pine/ MAINTAINER= root@garbled.net HOMEPAGE= http://www.washington.edu/pine/ -USE_PKGLIBTOOL= yes +USE_LIBTOOL= # defined + +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "SunOS" +BUILDNAME= so5 +.else +BUILDNAME= neb +.endif do-build: cd ${WRKSRC} && ./build ${BUILDNAME} CC="${LIBTOOL} ${CC}" \ @@ -29,8 +37,3 @@ do-install: ${PREFIX}/include/pico/ .include "../../mk/bsd.pkg.mk" -.if ${OPSYS} == "SunOS" -BUILDNAME= so5 -.else -BUILDNAME= neb -.endif |