31 lines
511 B
Bash
31 lines
511 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="2"
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="CalDAV support for KDE Kontact"
|
|
HOMEPAGE="http://code.google.com/p/kcaldav/"
|
|
SRC_URI="http://kcaldav.googlecode.com/files/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
cd ${S}
|
|
emake || die "make failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "einstall failed"
|
|
}
|
|
|
|
|