diff options
author | asami <asami@FreeBSD.org> | 1996-12-31 13:41:05 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-12-31 13:41:05 +0000 |
commit | 2dd31b1ae1d4ba05c02e390c0a229fdf740febd3 (patch) | |
tree | 08686e0bd88660fa4f509f44068ffac15378c8b6 /sysutils | |
parent | fdb69da33332ff68b27bb44c5ecda091bcb247be (diff) | |
download | FreeBSD-ports-2dd31b1ae1d4ba05c02e390c0a229fdf740febd3.zip FreeBSD-ports-2dd31b1ae1d4ba05c02e390c0a229fdf740febd3.tar.gz |
(1) Fix typo in MASTER_SITES, it said ".../pib/pib" when it should have
been ".../pub/pib/" (I first thought the second "pib" was bogus,
until I realized that the problem was in fact a typo of "pub" and
a missing "/"!)
(2) Fix RUN_DEPENDS, you can't just put a generic name like "tk-4.1"
here. ;)
(3) Change install: target to do-install: and also move it above the
.include <bsd.port.mk>. (You shouldn't define your own "install"
or "patch" or any of the big targets unless absolutely necessary,
the "do-*" targets are where most of the real work is done.)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/pib/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sysutils/pib/Makefile b/sysutils/pib/Makefile index cc9ce55..efe0eb4 100644 --- a/sysutils/pib/Makefile +++ b/sysutils/pib/Makefile @@ -3,22 +3,21 @@ # Date created: 30 December 1996 # Whom: Mike Smith <msmith@freebsd.org> # -# $Id: Makefile,v 1.1.1.1 1996/12/30 09:16:55 msmith Exp $ +# $Id: Makefile,v 1.2 1996/12/30 09:26:23 msmith Exp $ # DISTNAME= pib-1.0 -MASTER_SITES= ftp://gsoft.com.au/pib/pib +MASTER_SITES= ftp://gsoft.com.au/pub/pib/ CATEGORIES= sysutils MAINTAINER= msmith@freebsd.org -RUN_DEPENDS= tk-4.1 +RUN_DEPENDS= wish4.1:${PORTSDIR}/x11/tk41 -.include <bsd.port.mk> - -install: +do-install: ${MKDIR} ${PREFIX}/lib/pib ${INSTALL_SCRIPT} ${WRKSRC}/*.tcl ${PREFIX}/lib/pib ${INSTALL_DATA} ${WRKSRC}/libTkSteal.so* ${PREFIX}/lib/pib ln -fs ${PREFIX}/lib/pib/pib.tcl ${PREFIX}/bin/pib +.include <bsd.port.mk> |