Ticket #272: fsousaged-0.9.0.ebuild

File fsousaged-0.9.0.ebuild, 1.1 KB (added by aelia, 3 years ago)

ebuild of fsousaged-0.9.0 released and that deprecates ousaged

Line 
1# Copyright 1999-2009 Gentoo Foundation
2# Distributed under the terms of the GNU General Public License v2
3# $Header: $
4
5inherit autotools base
6
7DESCRIPTION="Vala implementation of frameworkd the ousage daemon."
8HOMEPAGE="http://www.freesmartphone.org"
9SRC_URI="http://gnusrv.epfl.ch/~abelenda/fsousaged-0.9.0.tar.lzma
10         http://212.147.52.64/gentoo-distfiles/fsousaged-0.9.0.tar.lzma"
11
12LICENSE="GPL-2"
13SLOT="0"
14KEYWORDS="~arm ~amd64"
15IUSE=""
16
17RDEPEND="
18   >=dev-libs/libgee-0.1.6
19   >=sys-mobilephone/libfso-glib-0.1.0
20   >=sys-mobilephone/freesmartphone-frameworkd2-base-0.0
21"
22
23DEPEND="$RDEPEND"
24
25src_unpack() {
26unpack ${A}
27cd "${WORKDIR}"
28# Caution! , this is only because I did my tarball by taking only
29# the fsousaged folder in the repository
30mv fsousaged ${P}
31cd "${S}"
32eautoreconf
33}
34
35pkg_postinst(){
36elog "To use fsousaged instead of ousaged edit the config in"
37elog "/etc/frameworkd.conf , below the lines where [ousaged] appear make sure"
38elog "that \"disable 1\" appear. And anywhere add the lines :"
39elog "  [fsousage]"
40elog "  [fsousage.controller]"
41elog "With this the daemon will be used without any need of initscript."
42}