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 | |
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}
-rw-r--r-- | dev-libs/cyrus-imap-dev/cyrus-imap-dev-2.1.9-r1.ebuild | 21 | ||||
-rw-r--r-- | dev-python/sip/sip-3.4.ebuild | 6 |
2 files changed, 10 insertions, 17 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-python/sip/sip-3.4.ebuild b/dev-python/sip/sip-3.4.ebuild index fcc51a4a75a1..c0b0dcfcf47c 100644 --- a/dev-python/sip/sip-3.4.ebuild +++ b/dev-python/sip/sip-3.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-3.4.ebuild,v 1.4 2002/11/17 09:12:05 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-3.4.ebuild,v 1.5 2002/11/30 01:31:40 vapier Exp $ MY_P="${PN}-x11-gpl-${PV}" DESCRIPTION="SIP is a tool for generating bindings for C++ classes so that they can be used by Python." @@ -18,8 +18,8 @@ S=${WORKDIR}/${MY_P} src_compile(){ chmod +x build.py - mkdir -p ${D}/usr/bin - mkdir -p ${D}/usr/lib/python2.2/site-packages + dodir /usr/bin + dodir /usr/lib/python2.2/site-packages python build.py -l qt-mt -b ${D}/usr/bin -d ${D}/usr/lib/python2.2/site-packages \ -e ${D}/usr/include/python2.2 make || die |