diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 01:28:40 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 01:28:40 +0000 |
commit | 5357ceaabce90379662af5794c143bdbd88d5a20 (patch) | |
tree | adf60c1035fa82d93a6b5af82814aea9920f40f8 /dev-libs | |
parent | ok, I got this letter from somone who appears to be related to the (diff) | |
download | historical-5357ceaabce90379662af5794c143bdbd88d5a20.tar.gz historical-5357ceaabce90379662af5794c143bdbd88d5a20.tar.bz2 historical-5357ceaabce90379662af5794c143bdbd88d5a20.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9-r1.ebuild | 21 | ||||
-rw-r--r-- | dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9.ebuild | 17 |
2 files changed, 13 insertions, 25 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* - } 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* - } |