Subversion Repositories KardasA Overlay

Compare Revisions

Ignore whitespace Rev 133 → Rev 134

/dev-libs/libcitadel/Manifest
0,0 → 1,2
DIST libcitadel-8.02.tar.gz 578407 RMD160 eda7ae6a56d21ef47fd7236e582a92a7a87bf0cf SHA1 9833a1ebf87809cf4294b0986a1f9b4b794d9a1b SHA256 cba6e99f4e50b1ae239489bf2dc968b6d0d4bd244229b8dd0ab7ed0cb4f67322
EBUILD libcitadel-8.02.ebuild 1033 RMD160 c715e966fe5839f275a5371fa11cf8ef3e9fa647 SHA1 a4c87ff91ff246a4a8c410ad47d5a3cf492e9dbc SHA256 cc4ea6df1c9d23dd09f49254f8292909e44b81b5f12a9e212b46b3d3c3787d8b
/dev-libs/libcitadel/libcitadel-8.02.ebuild
0,0 → 1,42
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
 
EAPI=2
 
inherit flag-o-matic autotools base
 
DESCRIPTION="Contains code which is shared across all the components which make up the Citadel system"
HOMEPAGE="http://citadel.org/"
SRC_URI="http://easyinstall.citadel.org/${P}.tar.gz"
 
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
 
RDEPEND=">=sys-libs/db-4.1.25_p1
>=dev-libs/libical-0.43
mail-filter/libsieve
dev-libs/expat
net-misc/curl"
 
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.52
>=sys-devel/libtool-1.4"
 
src_configure() {
filter-flags -finline-functions
replace-flags -O3 -O2
econf
}
 
 
src_prepare() {
# this is an ugly workaround to point S to the proper dir.
# doing so before src_unpack leads to circular path definition and is not helping
S="${WORKDIR}/${P}/${PN}"
cd "$S" || die "changing into proper source dir failed"
rm conftools/libtool.m4 || die "removal of libtool file failed"
eautoreconf || die "eautoreconf failed"
}