diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 20:45:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 20:45:38 +0000 |
commit | c8978b0e52a4275ae38c541d8c7459e59179eb4c (patch) | |
tree | e1cb0bbfbc06e516b8b5128ee5843bc05b97ecf1 | |
parent | Changed einstall||die to einstall (diff) | |
download | historical-c8978b0e52a4275ae38c541d8c7459e59179eb4c.tar.gz historical-c8978b0e52a4275ae38c541d8c7459e59179eb4c.tar.bz2 historical-c8978b0e52a4275ae38c541d8c7459e59179eb4c.zip |
Changed mkdir ${D} to dodir ${D}
-rw-r--r-- | net-mail/vlnx/vlnx-414e-r2.ebuild | 9 | ||||
-rw-r--r-- | net-mail/vpopmail/vpopmail-5.2.1-r2.ebuild | 22 |
2 files changed, 14 insertions, 17 deletions
diff --git a/net-mail/vlnx/vlnx-414e-r2.ebuild b/net-mail/vlnx/vlnx-414e-r2.ebuild index 06e16f1151d1..eed370f8a42d 100644 --- a/net-mail/vlnx/vlnx-414e-r2.ebuild +++ b/net-mail/vlnx/vlnx-414e-r2.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Script Revised by Parag Mehta <pm@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-mail/vlnx/vlnx-414e-r2.ebuild,v 1.9 2002/11/07 19:37:18 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/vlnx/vlnx-414e-r2.ebuild,v 1.10 2002/11/30 20:44:09 vapier Exp $ MY_P=${PN}${PV} - S=${WORKDIR}/${MY_P} DESCRIPTION="McAfee VirusScanner for Unix/Linux(Shareware)" SRC_URI="http://download.mcafee.com/products/evaluation/virusscan/english/unix/linux/${MY_P}.tar.Z @@ -14,10 +13,12 @@ HOMEPAGE="http://www.mcafee.com/" SLOT="0" LICENSE="VirusScan" KEYWORDS="x86 sparc sparc64" -RESTRICT="nostrip" + DEPEND="" RDEPEND="" +RESTRICT="nostrip" + src_unpack() { cd ${WORKDIR} mkdir ${MY_P} @@ -37,6 +38,6 @@ src_install() { doman uvscan.1 chmod 755 ${D}/opt/vlnx/uvscan - mkdir -p ${D}/etc/env.d + dodir /etc/env.d cp -f ${FILESDIR}/vlnx-${PV}-envd ${D}/etc/env.d/40vlnx } diff --git a/net-mail/vpopmail/vpopmail-5.2.1-r2.ebuild b/net-mail/vpopmail/vpopmail-5.2.1-r2.ebuild index b0b8db27e22e..a2ca33251e20 100644 --- a/net-mail/vpopmail/vpopmail-5.2.1-r2.ebuild +++ b/net-mail/vpopmail/vpopmail-5.2.1-r2.ebuild @@ -1,25 +1,21 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.2.1-r2.ebuild,v 1.10 2002/10/31 20:04:27 jrray Exp $ - -IUSE="mysql" +# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.2.1-r2.ebuild,v 1.11 2002/11/30 20:45:38 vapier Exp $ # TODO: all ldap, sybase support -S=${WORKDIR}/${P} - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 sparc sparc64" HOMEPAGE="http://www.inter7.com/vpopmail" - DESCRIPTION="A collection of programs to manage virtual email domains and accounts on your Qmail or Postfix mail servers." SRC_URI="http://www.inter7.com/vpopmail/${P}.tar.gz http://gentoo.twobit.net/misc/vpopmail-5.2.1-mysql.diff" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc sparc64" +IUSE="mysql" + DEPEND="sys-apps/sed sys-apps/ucspi-tcp mysql? ( =dev-db/mysql-3.23* )" - RDEPEND="net-mail/qmail virtual/cron mysql? ( =dev-db/mysql-3.23* )" @@ -107,7 +103,7 @@ src_compile() { --enable-roaming-users=y --enable-relay-clear-minutes=60 \ --enable-tcprules-prog=/usr/bin/tcprules --enable-tcpserver-file=/etc/tcp.smtp \ --enable-logging=y \ - --enable-log-name=vpopmail || die "./configure failed" + --enable-log-name=vpopmail [ "`use mysql`" ] && echo '#define MYSQL_PASSWORD_FILE "/etc/vpopmail.conf"' >> config.h @@ -129,11 +125,11 @@ src_install () { chown vpopmail.vpopmail ${D}/${VPOP_HOME}/doc # Create symlink in /usr/bin for executables - mkdir -p ${D}/usr/bin/ + dodir /usr/bin/ for item in `ls -1 ${D}${VPOP_HOME}/bin`; do dosym ${VPOP_HOME}/bin/${item} usr/bin/${item} ; done # Create /etc/vpopmail.conf - [ "`use mysql`" ] && mkdir ${D}/etc && cp ${FILESDIR}/vpopmail.conf ${D}/etc/ + [ "`use mysql`" ] && dodir /etc && cp ${FILESDIR}/vpopmail.conf ${D}/etc/ # Configure b0rked. We'll do this manually echo "-I${VPOP_HOME}/include" > ${D}/${VPOP_HOME}/etc/inc_deps |