summaryrefslogtreecommitdiff
path: root/ports-mgmt/pib
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-12-31 13:41:05 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-12-31 13:41:05 +0000
commit1059c2e8fff529281b7a43a92bb8cdc133a2c211 (patch)
tree21a5ba5096f43e39fdc79383efd9210dfbdf20b8 /ports-mgmt/pib
parentThanks Peter for taking this, but MAINTAINER should be a full address (diff)
(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.)
Notes
Notes: svn path=/head/; revision=5143
Diffstat (limited to 'ports-mgmt/pib')
-rw-r--r--ports-mgmt/pib/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/ports-mgmt/pib/Makefile b/ports-mgmt/pib/Makefile
index cc9ce55986da..efe0eb48d8b2 100644
--- a/ports-mgmt/pib/Makefile
+++ b/ports-mgmt/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>