diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 01:31:40 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 01:31:40 +0000 |
commit | d83cee157a5620ab34644c45528dbe93a5cfbc57 (patch) | |
tree | 20db6e7080f5d5fd2cf688eba763643de82af4be /dev-libs/cyrus-imap-dev | |
parent | changed mkdir ${D} to dodir (diff) | |
download | gentoo-2-d83cee157a5620ab34644c45528dbe93a5cfbc57.tar.gz gentoo-2-d83cee157a5620ab34644c45528dbe93a5cfbc57.tar.bz2 gentoo-2-d83cee157a5620ab34644c45528dbe93a5cfbc57.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-r1.ebuild | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9-r1.ebuild b/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9-r1.ebuild index 63adb48795a7..bf9a612bd16f 100644 --- a/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9-r1.ebuild +++ b/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9-r1.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-r1.ebuild,v 1.1 2002/11/23 06:28:36 raker Exp $ - -S=${WORKDIR}/cyrus-imapd-${PV} +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9-r1.ebuild,v 1.2 2002/11/30 01:28:40 vapier Exp $ DESCRIPTION="Developer support for the Cyrus IMAP Server" HOMEPAGE="http://asg.web.cmu.edu/cyrus/imapd/" @@ -22,16 +20,15 @@ DEPEND="virtual/glibc >=dev-libs/cyrus-sasl-2.1.2 >=sys-apps/tcp-wrappers-7.6" +S=${WORKDIR}/cyrus-imapd-${PV} + src_unpack() { - unpack ${A} cd ${S} patch < ${FILESDIR}/config.diff || die "patch failed" - } src_compile() { - local myconf use afs && myconf="--with-afs" \ @@ -53,7 +50,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" @@ -62,17 +59,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 + dodir /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* - } |