From owner-freebsd-ports Sun Aug 3 00:19:49 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA10227 for ports-outgoing; Sun, 3 Aug 1997 00:19:49 -0700 (PDT) Received: from shasta.wstein.com (pc34.seaport.net [207.173.11.34]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA10221; Sun, 3 Aug 1997 00:19:45 -0700 (PDT) Received: (from joes@localhost) by shasta.wstein.com (8.8.6/8.8.6) id AAA26582; Sun, 3 Aug 1997 00:19:43 -0700 (PDT) From: Joseph Stein Message-Id: <199708030719.AAA26582@shasta.wstein.com> Subject: Help!!! :) Trying to make a new port To: asami@freebsd.org Date: Sun, 3 Aug 1997 00:19:42 -0700 (PDT) Cc: ports@freebsd.org X-Mailer: ELM [version 2.4ME+ PL31H (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I'm trying to create a port for QuickPage. I've got it mostly complete, but can't figure out how to make the install: target work as desired. The distribution Makefile (from the tarball) doesn't include an install: target, so I thought I'd read through bsd.port.mk and some of the other Makefiles in the ports tree. I'm either really dense, or am not remembering my elementary CS-121 class... Basically, after the build, I need to be able to put qpage in /usr/local/bin and qpage.man in /usr/local/man/man1/qpage.1.gz right? So, I thought... (source Makefile) install: $(PROG) ${INSTALL_PROGRAM} $(PROG) ${PREFIX}/bin/$(PROG) ${INSTALL_MAN} $(PROG).man ${PREFIX}/man/man1/$(PROG).1 gzip -9 ${PREFIX}/man/man1/$(PROG).1 Do you have a clue for me? Thanks in advance...