diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-06 09:14:52 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-06 09:14:52 +0000 |
commit | 9e9aa08132b88f43b77fc8267eab18469181f5a8 (patch) | |
tree | b72cce2dca9881acf9299bff95bfefe5add7d6ca /net-mail/vpopmail | |
parent | lots of fixes! (diff) | |
download | gentoo-2-9e9aa08132b88f43b77fc8267eab18469181f5a8.tar.gz gentoo-2-9e9aa08132b88f43b77fc8267eab18469181f5a8.tar.bz2 gentoo-2-9e9aa08132b88f43b77fc8267eab18469181f5a8.zip |
whoops forgot something, fix the symlink hell again
Diffstat (limited to 'net-mail/vpopmail')
-rw-r--r-- | net-mail/vpopmail/Manifest | 2 | ||||
-rw-r--r-- | net-mail/vpopmail/vpopmail-5.2.1-r6.ebuild | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/net-mail/vpopmail/Manifest b/net-mail/vpopmail/Manifest index ef75fbe1fb35..2283af96c188 100644 --- a/net-mail/vpopmail/Manifest +++ b/net-mail/vpopmail/Manifest @@ -1,4 +1,4 @@ -MD5 37fd27d6cc96395efd129ac4077aac65 vpopmail-5.2.1-r6.ebuild 6161 +MD5 2b443fe7faf5e29ca61bb765443068ea vpopmail-5.2.1-r6.ebuild 6337 MD5 27eb455e11b95af7b8b78d116e8aadaf vpopmail-5.2.1-r5.ebuild 6041 MD5 fcd59ec1321ce87418cb247941f7ca0d ChangeLog 2565 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 diff --git a/net-mail/vpopmail/vpopmail-5.2.1-r6.ebuild b/net-mail/vpopmail/vpopmail-5.2.1-r6.ebuild index fad16112092e..e40274842d9e 100644 --- a/net-mail/vpopmail/vpopmail-5.2.1-r6.ebuild +++ b/net-mail/vpopmail/vpopmail-5.2.1-r6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 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-r6.ebuild,v 1.1 2003/08/06 09:08:23 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/vpopmail/vpopmail-5.2.1-r6.ebuild,v 1.2 2003/08/06 09:14:49 robbat2 Exp $ IUSE="mysql ipalias" @@ -127,13 +127,18 @@ src_install () { # Create symlink in /usr/bin for executables dodir /usr/bin/ - for item in ${D}${VPOP_HOME}/bin/*; do dosym ${VPOP_HOME}/bin/${item} usr/bin/${item} ; done + einfo "Creating symlinks in /usr/bin" + for item in `ls -1 ${D}${VPOP_HOME}/bin`; do + dosym ${VPOP_HOME}bin/${item} /usr/bin/${item} ; + done + einfo "Locking down vpopmail permissions" # secure things more, i don't want the vpopmail user being able to write this stuff! fowner -R root.root ${VPOP_HOME}/{bin,etc,include} # Create /etc/vpopmail.conf if use mysql; then + einfo "Installing vpopmail mysql configuration file" dodir /etc insinto /etc doins ${FILESDIR}/vpopmail.conf @@ -141,6 +146,7 @@ src_install () { fi # Install a proper cronjob instead of the old nastiness + einfo "Installing cronjob" dodir /etc/cron.hourly insinto /etc/cron.hourly doins ${FILESDIR}/vpopmail.clearopensmtp |