You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-mail/offlineimap/offlineimap-6.3.4.ebuild

62 lines
1.5 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/offlineimap/offlineimap-6.3.4.ebuild,v 1.5 2012/03/07 20:35:09 ranger Exp $
EAPI="3"
PYTHON_DEPEND="2"
PYTHON_USE_WITH="threads ssl?"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-*"
MY_PV="6.3.4"
inherit eutils distutils
DESCRIPTION="Powerful IMAP/Maildir synchronization and reader support"
HOMEPAGE="http://offlineimap.org"
SRC_URI="https://github.com/nicolas33/offlineimap/tarball/v${MY_PV} -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc ssl"
DEPEND="doc? ( dev-python/docutils )"
RDEPEND=""
src_unpack() {
unpack ${A}
mv *-${PN}-* "${S}"
}
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}"/offlineimap-6.3.2-darwin10.patch
epatch "${FILESDIR}/${PF}"-fix-manpage-headings.patch
}
src_compile() {
distutils_src_compile
if use doc ; then
cd docs
rst2man.py MANUAL.rst offlineimap.1 || die "building manpage failed"
fi
}
src_install() {
distutils_src_install
dodoc offlineimap.conf offlineimap.conf.minimal
if use doc ; then
cd docs
doman offlineimap.1 || die "installing manpage failed"
fi
}
pkg_postinst() {
distutils_pkg_postinst
elog ""
elog "You will need to configure offlineimap by creating ~/.offlineimaprc"
elog "Sample configurations are in /usr/share/doc/${PF}/"
elog ""
}