From owner-freebsd-ports Mon May 19 23:23:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA16055 for ports-outgoing; Mon, 19 May 1997 23:23:01 -0700 (PDT) Received: (from asami@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA16034; Mon, 19 May 1997 23:22:58 -0700 (PDT) Date: Mon, 19 May 1997 23:22:58 -0700 (PDT) From: Satoshi Asami Message-Id: <199705200622.XAA16034@hub.freebsd.org> To: itojun@itojun.org, asami, freebsd-ports Subject: Re: ports/3521 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new port: graphics/qvplay State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Mon May 19 23:20:46 PDT 1997 State-Changed-Why: Thanks, imported. Diff follows: === diff -ru qvplay/Makefile qvplay.new/Makefile --- qvplay/Makefile Mon May 5 07:02:24 1997 +++ qvplay.new/Makefile Mon May 19 23:17:14 1997 @@ -9,25 +9,22 @@ PKGNAME= qvplay CATEGORIES= graphics MASTER_SITES= http://www.asahi-net.or.jp/~xg2k-hys/ -EXTRACT_SUFX= .tar.gz -NO_PACKAGE= "Redistribution prohibited since it is in beta test period" -RESTRICTED= "Redistribution prohibited since it is in beta test period. do not copy into ftp.freebsd.org/pub/FreeBSD/distfiles/." +MAINTAINER= itojun@itojun.org + +RESTRICTED= "Redistribution prohibited since it is in beta test period" WRKSRC= ${WRKDIR}/QVplay092/obj/FreeBSD GNU_CONFIGURE= yes -pre-configure: - @( cd ${WRKDIR}/QVplay092; ./setup FreeBSD ) - DOC= README README.eng README.FreeBSD FAQ.txt HISTORY PROTOCOL.txt \ PROTOCOL.eng +pre-configure: + @( cd ${WRKDIR}/QVplay092; ./setup FreeBSD ) + post-install: - [ -d ${PREFIX}/share ] || ${MKDIR} ${PREFIX}/share - [ -d ${PREFIX}/share/doc ] || ${MKDIR} ${PREFIX}/share/doc - [ -d ${PREFIX}/share/doc/qvplay ] \ - || ${MKDIR} ${PREFIX}/share/doc/qvplay + ${MKDIR} ${PREFIX}/share/doc/qvplay for i in ${DOC}; do \ ${INSTALL_DATA} ${WRKSRC}/../../$$i \ ${PREFIX}/share/doc/qvplay; \ === You don't need to set both NO_PACKAGE and RESTRICTED, unless you have different reasons for each. EXTRACT_SUFX defaults to .tar.gz. All the rules go after all the variables. Oh, and you forgot the MAINTAINER line again. :)