Gentoo Archives: gentoo-commits

From: "Chris Reffett (creffett)" <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/plan: plan-1.10.ebuild ChangeLog plan-1.9-r1.ebuild
Date: Sat, 25 Jan 2014 03:36:04
Message-Id: 20140125033600.A267F2004B@flycatcher.gentoo.org
1 creffett 14/01/25 03:36:00
2
3 Modified: ChangeLog
4 Added: plan-1.10.ebuild
5 Removed: plan-1.9-r1.ebuild
6 Log:
7 Version bump. Bump EAPI, move patches to a tarball and respin some, redo install section.
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 42618354)
10
11 Revision Changes Path
12 1.26 app-office/plan/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/plan/ChangeLog?rev=1.26&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/plan/ChangeLog?rev=1.26&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/plan/ChangeLog?r1=1.25&r2=1.26
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-office/plan/ChangeLog,v
21 retrieving revision 1.25
22 retrieving revision 1.26
23 diff -u -r1.25 -r1.26
24 --- ChangeLog 12 Oct 2013 21:03:58 -0000 1.25
25 +++ ChangeLog 25 Jan 2014 03:36:00 -0000 1.26
26 @@ -1,6 +1,14 @@
27 # ChangeLog for app-office/plan
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-office/plan/ChangeLog,v 1.25 2013/10/12 21:03:58 pacho Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-office/plan/ChangeLog,v 1.26 2014/01/25 03:36:00 creffett Exp $
32 +
33 +*plan-1.10 (25 Jan 2014)
34 +
35 + 25 Jan 2014; Chris Reffett <creffett@g.o> +plan-1.10.ebuild,
36 + -files/ldflags.patch, -files/makefile.patch, -files/nostrip.patch,
37 + -plan-1.9-r1.ebuild:
38 + Version bump. Bump EAPI, move patches to a tarball and respin some, redo
39 + install section.
40
41 12 Oct 2013; Pacho Ramos <pacho@g.o> plan-1.9-r1.ebuild:
42 Add missing DEPEND (#457750)
43
44
45
46 1.1 app-office/plan/plan-1.10.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/plan/plan-1.10.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/plan/plan-1.10.ebuild?rev=1.1&content-type=text/plain
50
51 Index: plan-1.10.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/app-office/plan/plan-1.10.ebuild,v 1.1 2014/01/25 03:36:00 creffett Exp $
56
57 EAPI=5
58
59 inherit eutils
60
61 DESCRIPTION="Motif based schedule planner"
62 HOMEPAGE="http://www.bitrot.de/plan.html"
63 SRC_URI="ftp://ftp.fu-berlin.de/unix/X11/apps/plan/${P}.tar.gz
64 mirror://gentoo/${P}-gentoo.tar.xz"
65
66 LICENSE="GPL-2+" #448646
67 SLOT="0"
68 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
69 IUSE=""
70
71 DEPEND="
72 x11-libs/libXpm
73 >=x11-libs/motif-2.3:0
74 "
75 RDEPEND="${DEPEND}"
76
77 QA_PRESTRIPPED="
78 /usr/bin/netplan
79 /usr/bin/plan
80 "
81 src_prepare() {
82 epatch "${WORKDIR}"/${P}-patches/*.patch
83 }
84
85 src_compile() {
86 pushd src
87 emake CC=$(tc-getCC) SHARE=/usr/share/plan linux
88 popd
89 }
90
91 src_install() {
92 pushd src
93 emake \
94 DESTDIR="${D}" \
95 SHARE=/usr/share/plan \
96 install
97 keepdir /usr/share/plan/netplan.dir
98 popd
99
100 dodoc HISTORY README
101
102 pushd misc
103 doman netplan.1 plan.1 plan.4
104 insinto /usr/share/${PN}/misc
105 doins netplan.boot BlackWhite Monochrome plan.fti Plan.xpm plan.xpm
106 exeinto /usr/share/${PN}/misc
107 doexe Killpland cvs vsc msschedule2plan plan2vcs
108 popd
109
110 pushd web
111 insinto /usr/share/${PN}/web
112 doins help.html bottom.html cgi-lib.pl common.pl holiday_webplan rtsban.jpg
113 exeinto /usr/share/${PN}/web
114 doexe *.cgi
115 popd
116 }
117
118 pkg_postinst() {
119 elog
120 elog " Check /usr/share/${PN}/holiday for examples to set your"
121 elog " ~/.holiday according to your country."
122 elog
123 elog " WebPlan ${PV} can be found in /usr/share/${PN}/web."
124 elog
125 }