Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/bbdb: ChangeLog bbdb-2.35-r1.ebuild
Date: Tue, 23 Sep 2008 13:53:01
Message-Id: E1Ki8K1-0007Vn-Uf@stork.gentoo.org
1 ulm 08/09/23 13:52:57
2
3 Modified: ChangeLog
4 Added: bbdb-2.35-r1.ebuild
5 Log:
6 Install TeX support files under texmf-site/tex/plain.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 i686)
8
9 Revision Changes Path
10 1.35 app-emacs/bbdb/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/bbdb/ChangeLog?rev=1.35&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/bbdb/ChangeLog?rev=1.35&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/bbdb/ChangeLog?r1=1.34&r2=1.35
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/bbdb/ChangeLog,v
19 retrieving revision 1.34
20 retrieving revision 1.35
21 diff -u -r1.34 -r1.35
22 --- ChangeLog 28 Jul 2008 18:54:03 -0000 1.34
23 +++ ChangeLog 23 Sep 2008 13:52:57 -0000 1.35
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-emacs/bbdb
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/bbdb/ChangeLog,v 1.34 2008/07/28 18:54:03 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/bbdb/ChangeLog,v 1.35 2008/09/23 13:52:57 ulm Exp $
29 +
30 +*bbdb-2.35-r1 (23 Sep 2008)
31 +
32 + 23 Sep 2008; Ulrich Mueller <ulm@g.o> +bbdb-2.35-r1.ebuild:
33 + Install TeX support files under texmf-site/tex/plain. Simplify code for
34 + byte-compilation of contributed files.
35
36 28 Jul 2008; Ulrich Mueller <ulm@g.o> metadata.xml:
37 Add USE flag description to metadata wrt GLEP 56.
38
39
40
41 1.1 app-emacs/bbdb/bbdb-2.35-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/bbdb/bbdb-2.35-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/bbdb/bbdb-2.35-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bbdb-2.35-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emacs/bbdb/bbdb-2.35-r1.ebuild,v 1.1 2008/09/23 13:52:57 ulm Exp $
51
52 inherit elisp
53
54 DESCRIPTION="The Insidious Big Brother Database"
55 HOMEPAGE="http://bbdb.sourceforge.net/"
56 SRC_URI="http://bbdb.sourceforge.net/${P}.tar.gz
57 http://www.mit.edu/afs/athena/contrib/emacs-contrib/Fin/point-at.el
58 http://www.mit.edu/afs/athena/contrib/emacs-contrib/Fin/dates.el"
59
60 LICENSE="GPL-2 as-is"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
63 IUSE="tex"
64
65 DEPEND=""
66 RDEPEND="tex? ( virtual/tex-base )"
67
68 SITEFILE=50${PN}-gentoo.el
69 TEXMF="/usr/share/texmf-site"
70
71 src_unpack() {
72 unpack ${P}.tar.gz
73 cd "${S}"
74
75 sed -i -e '0,/^--- bbdb-mail-folders.el ---$/d;/^--- end ---$/,$d' \
76 bits/bbdb-mail-folders.el || die "sed failed"
77 sed -i -e '/^;/,$!d' bits/bbdb-sort-mailrc.el || die "sed failed"
78 cp "${DISTDIR}"/{dates,point-at}.el bits || die "cp failed"
79 }
80
81 src_compile() {
82 econf || die "econf failed"
83 emake -j1 || die "emake failed"
84 BYTECOMPFLAGS="-L bits -L lisp" elisp-compile bits/*.el || die
85 }
86
87 src_install() {
88 elisp-install ${PN} lisp/*.el{,c} || die
89 elisp-install ${PN}/bits bits/*.el{,c} || die
90 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
91 doinfo texinfo/*.info*
92 dodoc ChangeLog INSTALL README bits/*.txt
93 newdoc bits/README README.bits
94 if use tex; then
95 insinto "${TEXMF}"/tex/plain/bbdb
96 doins tex/*.tex
97 fi
98 }
99
100 pkg_postinst() {
101 elisp-site-regen
102 use tex && texconfig rehash
103
104 elog "If you use encryption or signing, you may specify the encryption"
105 elog "method by customising variable \"bbdb/pgp-method\". For details,"
106 elog "see the documentation of this variable. Depending on the Emacs"
107 elog "version, installation of additional packages like app-emacs/gnus"
108 elog "or app-emacs/mailcrypt may be required."
109 }
110
111 pkg_postrm() {
112 elisp-site-regen
113 use tex && texconfig rehash
114 }