summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Alexandratos <jerry@gentoo.org>2000-11-02 18:05:56 +0000
committerJerry Alexandratos <jerry@gentoo.org>2000-11-02 18:05:56 +0000
commitcae3a38d2d1eec8c94b1267b29773e09662ba345 (patch)
tree5a391983bb59469625dfc8dd7d5a4eba2d08497f /net-mail
parentlittle fix (diff)
downloadgentoo-2-cae3a38d2d1eec8c94b1267b29773e09662ba345.tar.gz
gentoo-2-cae3a38d2d1eec8c94b1267b29773e09662ba345.tar.bz2
gentoo-2-cae3a38d2d1eec8c94b1267b29773e09662ba345.zip
Changed "mkdir" in pkg_postinst() to "dodir" in pkg_install().
This will allow the created directory to be put in the CONTENTS and be removed it the package is unmerged and the directory is empty.
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/maildrop/maildrop-1.2.2.ebuild8
1 files changed, 3 insertions, 5 deletions
diff --git a/net-mail/maildrop/maildrop-1.2.2.ebuild b/net-mail/maildrop/maildrop-1.2.2.ebuild
index e8bda1f34716..29bceddbae7b 100644
--- a/net-mail/maildrop/maildrop-1.2.2.ebuild
+++ b/net-mail/maildrop/maildrop-1.2.2.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Jerry Alexandratos <jerry@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-mail/maildrop/maildrop-1.2.2.ebuild,v 1.1 2000/11/02 15:46:51 jerry Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/maildrop/maildrop-1.2.2.ebuild,v 1.2 2000/11/02 18:05:56 jerry Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
@@ -10,7 +10,7 @@ SRC_URI="http://download.sourceforge.net/courier/${A}"
HOMEPAGE="http://www.flounder.net/~mrsam/maildrop/index.html"
DEPEND=">=sys-libs/gdbm-1.8.0
- >=sys-libs/glibc=2.1.3"
+ >=sys-libs/glibc-2.1.3"
src_compile() {
cd ${S}
@@ -72,8 +72,6 @@ src_install () {
doman *.1
doman *.5
doman *.8
-}
-pkg_postinst() {
- mkdir /etc/maildrop
+ dodir /etc/maildrop
}