Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/orage: orage-4.8.4.ebuild ChangeLog
Date: Sun, 24 Feb 2013 23:12:27
Message-Id: 20130224231223.C080B2171D@flycatcher.gentoo.org
1 ssuominen 13/02/24 23:12:23
2
3 Modified: ChangeLog
4 Added: orage-4.8.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.66 app-office/orage/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/orage/ChangeLog?rev=1.66&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/orage/ChangeLog?rev=1.66&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/orage/ChangeLog?r1=1.65&r2=1.66
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/orage/ChangeLog,v
20 retrieving revision 1.65
21 retrieving revision 1.66
22 diff -u -r1.65 -r1.66
23 --- ChangeLog 28 Nov 2012 12:33:42 -0000 1.65
24 +++ ChangeLog 24 Feb 2013 23:12:23 -0000 1.66
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-office/orage
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/orage/ChangeLog,v 1.65 2012/11/28 12:33:42 ssuominen Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-office/orage/ChangeLog,v 1.66 2013/02/24 23:12:23 ssuominen Exp $
31 +
32 +*orage-4.8.4 (24 Feb 2013)
33 +
34 + 24 Feb 2013; Samuli Suominen <ssuominen@g.o> +orage-4.8.4.ebuild:
35 + Version bump.
36
37 28 Nov 2012; Samuli Suominen <ssuominen@g.o> orage-4.8.3.ebuild:
38 EAPI5
39
40
41
42 1.1 app-office/orage/orage-4.8.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/orage/orage-4.8.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/orage/orage-4.8.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: orage-4.8.4.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-office/orage/orage-4.8.4.ebuild,v 1.1 2013/02/24 23:12:23 ssuominen Exp $
52
53 EAPI=5
54 inherit multilib xfconf
55
56 DESCRIPTION="A time managing application (and panel plug-in) for the Xfce desktop environment"
57 HOMEPAGE="http://www.xfce.org/projects/"
58 SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
63 IUSE="berkdb dbus debug libnotify +xfce_plugins_clock"
64
65 RDEPEND=">=dev-libs/libical-0.48:=
66 dev-libs/popt:=
67 >=x11-libs/gtk+-2.10:2
68 berkdb? ( >=sys-libs/db-4 )
69 dbus? ( >=dev-libs/dbus-glib-0.100 )
70 libnotify? ( >=x11-libs/libnotify-0.7:= )
71 xfce_plugins_clock? ( >=xfce-base/xfce4-panel-4.10 )"
72 DEPEND="${RDEPEND}
73 dev-util/intltool
74 sys-devel/gettext
75 virtual/pkgconfig"
76
77 pkg_setup() {
78 XFCONF=(
79 --libexecdir="${EPREFIX}"/usr/$(get_libdir)
80 --docdir="${EPREFIX}"/usr/share/doc/${PF}/html
81 $(use_enable xfce_plugins_clock libxfce4panel)
82 $(use_enable dbus)
83 $(use_enable libnotify)
84 $(use_with berkdb bdb4)
85 $(xfconf_use_debug)
86 )
87
88 DOCS=( AUTHORS ChangeLog NEWS README TODO )
89
90 # PM doesn't let directory to be replaced by a symlink, see src_install()
91 rm -rf "${EROOT}"/usr/share/${PN}/doc
92 }
93
94 src_install() {
95 xfconf_src_install \
96 docdir="${EPREFIX}"/usr/share/doc/${PF}/html \
97 imagesdir="${EPREFIX}"/usr/share/doc/${PF}/html/images
98
99 # Create compability symlink for retarded path hardcoding in src/{mainbox,parameters}.c
100 dosym /usr/share/doc/${PF}/html /usr/share/${PN}/doc/C
101 }