radicale-0.5 is in the sunrise overlay, so we don't need this ebuild
anymore
This commit is contained in:
parent
ef2139f0b3
commit
70adb857c0
3 changed files with 0 additions and 73 deletions
|
@ -1,2 +0,0 @@
|
||||||
AUX radicale.init.d 550 RMD160 f1f6aa919952b744900c781b8d6cd9283bc44534 SHA1 3c2043b9f2680b14969bd7f3727e3df85c7f9c48 SHA256 1b28de6c1bc2c6119eb654622713fdd2c16d89105940c6b55d2bc081fbb2fd2c
|
|
||||||
EBUILD radicale-9999.ebuild 854 RMD160 66bb84b5ad972a4c95cfc85fb1dc787b93a07cf4 SHA1 5a81d87df34d3c90bf1dbaad7ae1415226094462 SHA256 394318045c4929adebea5bed58b91f035f852537880e03b018c1ffc6289bdc11
|
|
|
@ -1,26 +0,0 @@
|
||||||
#!/sbin/runscript
|
|
||||||
# Copyright 1999-2010 Gentoo Foundation
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
# $Header: $
|
|
||||||
|
|
||||||
PIDFILE=/var/run/radicale.pid
|
|
||||||
|
|
||||||
depend() {
|
|
||||||
use net
|
|
||||||
need localmount
|
|
||||||
}
|
|
||||||
|
|
||||||
start() {
|
|
||||||
ebegin "Starting radicale"
|
|
||||||
start-stop-daemon --start --quiet --background \
|
|
||||||
--pidfile ${PIDFILE} --make-pidfile \
|
|
||||||
--exec /usr/bin/radicale -- --foreground
|
|
||||||
eend $?
|
|
||||||
}
|
|
||||||
|
|
||||||
stop() {
|
|
||||||
ebegin "Stopping radicale"
|
|
||||||
start-stop-daemon --stop --quiet \
|
|
||||||
--pidfile ${PIDFILE}
|
|
||||||
eend $?
|
|
||||||
}
|
|
|
@ -1,45 +0,0 @@
|
||||||
# Copyright 1999-2010 Gentoo Foundation
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
# $Header: $
|
|
||||||
|
|
||||||
EAPI=2
|
|
||||||
PYTHON_DEPEND="*:2.5"
|
|
||||||
SUPPORT_PYTHON_ABIS=1
|
|
||||||
|
|
||||||
inherit distutils git
|
|
||||||
|
|
||||||
MY_P="${PN/r/R}-${PV}"
|
|
||||||
|
|
||||||
DESCRIPTION="A simple CalDAV calendar server"
|
|
||||||
HOMEPAGE="http://www.radicale.org/"
|
|
||||||
#SRC_URI="http://www.radicale.org/src/${PN}/${MY_P}.tar.gz"
|
|
||||||
EGIT_REPO_URI="git://gitorious.org/radicale/radicale.git"
|
|
||||||
|
|
||||||
LICENSE="GPL-3"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~x86"
|
|
||||||
IUSE=""
|
|
||||||
|
|
||||||
PDEPEND="dev-vcs/git"
|
|
||||||
|
|
||||||
S=${WORKDIR}/${MY_P}
|
|
||||||
|
|
||||||
src_unpack() {
|
|
||||||
git_src_unpack
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
distutils_src_install
|
|
||||||
|
|
||||||
# init file
|
|
||||||
newinitd "${FILESDIR}"/radicale.init.d radicale || die
|
|
||||||
|
|
||||||
# config file
|
|
||||||
insinto /etc/${PN}
|
|
||||||
doins config || die
|
|
||||||
}
|
|
||||||
|
|
||||||
pkg_postinst() {
|
|
||||||
elog "If you want to use SSL with ${PN}, please check that you have"
|
|
||||||
elog "installed >=dev-lang/python-2.6[ssl]."
|
|
||||||
}
|
|
Loading…
Reference in a new issue