diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 01:27:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 01:27:01 +0000 |
commit | a3eca6d6a624bfe9b88e15fa61d2cca1a61ed766 (patch) | |
tree | ac0ea360132d0c7fb1d57a4e7885cc1666ae1b6a /dev-libs/cyrus-imap-dev | |
parent | Changed econf||die to econf (diff) | |
download | gentoo-2-a3eca6d6a624bfe9b88e15fa61d2cca1a61ed766.tar.gz gentoo-2-a3eca6d6a624bfe9b88e15fa61d2cca1a61ed766.tar.bz2 gentoo-2-a3eca6d6a624bfe9b88e15fa61d2cca1a61ed766.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'dev-libs/cyrus-imap-dev')
-rw-r--r-- | dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9.ebuild | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9.ebuild b/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9.ebuild index 726e0df4b7ae..eea714bec824 100644 --- a/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9.ebuild +++ b/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9.ebuild @@ -1,8 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9.ebuild,v 1.2 2002/10/20 18:41:50 vapier Exp $ - -S=${WORKDIR}/cyrus-imapd-${PV} +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9.ebuild,v 1.3 2002/11/30 01:27:01 vapier Exp $ DESCRIPTION="Developer support for the Cyrus IMAP Server" HOMEPAGE="http://asg.web.cmu.edu/cyrus/imapd/" @@ -22,8 +20,9 @@ DEPEND="virtual/glibc >=dev-libs/cyrus-sasl-2.1.2 >=sys-apps/tcp-wrappers-7.6" -src_compile() { +S=${WORKDIR}/cyrus-imapd-${PV} +src_compile() { local myconf use afs && myconf="--with-afs" \ @@ -45,7 +44,7 @@ src_compile() { --with-com_err=yes \ --without-perl \ --disable-cyradm \ - ${myconf} || die "bad ./configure" + ${myconf} # make depends break with -f... in CFLAGS make depend CFLAGS="" || die "make depend problem" @@ -54,17 +53,13 @@ src_compile() { make || die "compile problem" cd ${S}/acap make || die "compile problem" - } -src_install () { - +src_install() { + dodoc COPYRIGHT README* cd ${S}/lib mkdir -p -m 0755 ${D}usr/include/cyrus emake DESTDIR=${D} install || die "compile problem" cd ${S}/acap emake DESTDIR=${D} install || die "compile problem" - cd ${S} - dodoc COPYRIGHT README* - } |