diff options
author | Ulrich Müller <ulm@gentoo.org> | 2008-11-01 18:09:12 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2008-11-01 18:09:12 +0000 |
commit | 4d44f94d291814d1f4d2cac6f8edee6c92ac7e77 (patch) | |
tree | 082d7db98c50789fbef687f7165b1b0231a7dab1 /app-emacs/bbdb | |
parent | Stable on ppc wrt bug 245102 (diff) | |
download | gentoo-2-4d44f94d291814d1f4d2cac6f8edee6c92ac7e77.tar.gz gentoo-2-4d44f94d291814d1f4d2cac6f8edee6c92ac7e77.tar.bz2 gentoo-2-4d44f94d291814d1f4d2cac6f8edee6c92ac7e77.zip |
Remove old.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo-r1 i686)
Diffstat (limited to 'app-emacs/bbdb')
-rw-r--r-- | app-emacs/bbdb/ChangeLog | 5 | ||||
-rw-r--r-- | app-emacs/bbdb/bbdb-2.35.ebuild | 73 |
2 files changed, 4 insertions, 74 deletions
diff --git a/app-emacs/bbdb/ChangeLog b/app-emacs/bbdb/ChangeLog index 743e38c281eb..a86bbc2ac3a1 100644 --- a/app-emacs/bbdb/ChangeLog +++ b/app-emacs/bbdb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/bbdb # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/bbdb/ChangeLog,v 1.39 2008/11/01 18:01:48 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/bbdb/ChangeLog,v 1.40 2008/11/01 18:09:12 ulm Exp $ + + 01 Nov 2008; Ulrich Mueller <ulm@gentoo.org> -bbdb-2.35.ebuild: + Remove old. 01 Nov 2008; nixnut <nixnut@gentoo.org> bbdb-2.35-r1.ebuild: Stable on ppc wrt bug 244687 diff --git a/app-emacs/bbdb/bbdb-2.35.ebuild b/app-emacs/bbdb/bbdb-2.35.ebuild deleted file mode 100644 index 4c8b4aa695d4..000000000000 --- a/app-emacs/bbdb/bbdb-2.35.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/bbdb/bbdb-2.35.ebuild,v 1.12 2008/04/12 13:08:40 ulm Exp $ - -inherit elisp - -DESCRIPTION="The Insidious Big Brother Database" -HOMEPAGE="http://bbdb.sourceforge.net/" -SRC_URI="http://bbdb.sourceforge.net/${P}.tar.gz - http://www.mit.edu/afs/athena/contrib/emacs-contrib/Fin/point-at.el - http://www.mit.edu/afs/athena/contrib/emacs-contrib/Fin/dates.el" - -LICENSE="GPL-2 as-is" -SLOT="0" -KEYWORDS="alpha amd64 ppc sparc x86" -IUSE="tex" - -DEPEND="" -RDEPEND="${DEPEND} - tex? ( virtual/tex-base )" - -SITEFILE=50${PN}-gentoo.el - -src_unpack() { - unpack ${P}.tar.gz - cd "${S}" - - sed -i -e '0,/^--- bbdb-mail-folders.el ---$/d;/^--- end ---$/,$d' \ - bits/bbdb-mail-folders.el || die "sed failed" - sed -i -e '/^;/,$!d' bits/bbdb-sort-mailrc.el || die "sed failed" - cp "${DISTDIR}"/{dates,point-at}.el bits -} - -src_compile() { - econf || die "econf failed" - emake -j1 || die "emake failed" - - cat >"${T}"/lp.el <<-EOF - (add-to-list 'load-path "${S}/bits") - (add-to-list 'load-path "${S}/lisp") - EOF - emacs -batch -no-site-file -l "${T}"/lp.el \ - -f batch-byte-compile bits/*.el || die "make bits failed" -} - -src_install() { - elisp-install ${PN} lisp/*.el{,c} || die - elisp-install ${PN}/bits bits/*.el{,c} || die - elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die - doinfo texinfo/*.info* - dodoc ChangeLog INSTALL README bits/*.txt - newdoc bits/README README.bits - if use tex; then - insinto /usr/share/texmf/tex/bbdb - doins tex/*.tex - fi -} - -pkg_postinst() { - elisp-site-regen - use tex && texconfig rehash - - elog "If you use encryption or signing, you may specify the encryption" - elog "method by customising variable \"bbdb/pgp-method\". For details," - elog "see the documentation of this variable. Depending on the Emacs" - elog "version, installation of additional packages like app-emacs/gnus" - elog "or app-emacs/mailcrypt may be required." -} - -pkg_postrm() { - elisp-site-regen - use tex && texconfig rehash -} |