Date: Wed, 28 Jun 2000 21:25:45 -0400 From: "Lester A. Mesa" <netadmin@primex.prontel.net> To: <freebsd-ports@FreeBSD.ORG> Subject: Please HELP! Message-ID: <001001bfe168$f3477c60$0b040a0a@sysop>
next in thread | raw e-mail | index | archive | help
I'm creating a port for vpopmail (below I have the Makefile) and everything configures, build, compiles fine.. but when I try to install it will install some other directories that did not come with package. Is there a particular reason for this? Here is my Makefile (please let me know of any suggestions) -----------------MAKEFILE--------------------------------------------- # New ports collection makefile for: vpopmail # Date created: 23 June 2000 # Whom: mazpe # # $FreeBSD$ # PORTNAME= vpopmail PORTVERSION= 4.8 CATEGORIES= mail MASTER_SITES= http://www.vpopmail.cx/ MAINTAINER= mazpe@Prontel.com # If qmail is not install under /var/qmail, change this to the path # where qmail is installed. # IF THIS IS CHANGE TO ANYOTHER THAN /var/qmail BE SURE TO MODIFY # files/myscript SCRIPT QMAIL_DIR= /var/qmail BUILD_DEPENDS= ${QMAIL_DIR}/bin/qmail-send:${PORTSDIR}/mail/qmail \ tcpserver:${PORTSDIR}/sysutils/ucspi-tcp PREFIX= ${QMAIL_DIR}/vpopmail IS_INTERACTIVE= yes HAS_CONFIGURE= yes CONFIGURE_ARGS= --enable-roaming-users=y pre-configure: ${FILESDIR}/myscript do-install: @cd ${WRKSRC} && ${MAKE} install-strip post-install: echo postinstall .include <bsd.port.mk> ------------------------------------------------------------------------- ----------------MYSCRIPT------------------------------------------------- pw groupadd vchkpw -q; \ pw useradd vpopmail -d /usr/local/etc/vpopmail -m -g vchkpw -s /bin/sh -h fd; \ echo "127.0.0.:allow,RELAYCLIENT=\"\"" > /etc/tcp.smtp ------------------------------------------------------------------------- ----------------PLIST---------------------------------------------------- bin/clearopensmtp bin/vaddaliasdomain bin/vadddomain bin/vadduser bin/vchkpw bin/vconvert bin/vdeldomain bin/vdelivermail bin/vdeluser bin/vmoduser bin/vpasswd bin/vpopbull bin/vsetuserquota @dirrm bin doc/doc_html/vpopmail.html doc/doc_html/vpopmailapi.png @dirrm doc/doc_html doc/man_html/clearopensmtp.html doc/man_html/index.html doc/man_html/vaddaliasdomain.html doc/man_html/vadddomain.html doc/man_html/vadduser.html doc/man_html/vchkpw.html doc/man_html/vconvert.html doc/man_html/vdeldomain.html doc/man_html/vdelivermail.html doc/man_html/vdeluser.html doc/man_html/vpasswd.html doc/man_html/vpopbull.html doc/man_html/vsetuserquota.html @dirrm doc/man_html @dirrm domains @dirrm etc include/config.h include/vauth.h include/vpopmail.h include/vpopmail_config.h @dirrm include lib/libvpopmail.a @dirrm users -------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?001001bfe168$f3477c60$0b040a0a>