1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-23 20:51:43 +00:00
freebsd-ports/sysutils/pib/Makefile
Satoshi Asami 1059c2e8ff (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.)
1996-12-31 13:41:05 +00:00

24 lines
615 B
Makefile

# New ports collection makefile for: pib
# Version required: 1.0
# Date created: 30 December 1996
# Whom: Mike Smith <msmith@freebsd.org>
#
# $Id: Makefile,v 1.2 1996/12/30 09:26:23 msmith Exp $
#
DISTNAME= pib-1.0
MASTER_SITES= ftp://gsoft.com.au/pub/pib/
CATEGORIES= sysutils
MAINTAINER= msmith@freebsd.org
RUN_DEPENDS= wish4.1:${PORTSDIR}/x11/tk41
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>