summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2008-04-18 18:17:55 +0000
committerUlrich Müller <ulm@gentoo.org>2008-04-18 18:17:55 +0000
commit248da2b7f4c0a611d568d621dd3638793f4231e4 (patch)
tree1ef60374ccf737d9b42cc2274b144557878ff57b /app-emacs/howm
parentVersion bump. (diff)
downloadgentoo-2-248da2b7f4c0a611d568d621dd3638793f4231e4.tar.gz
gentoo-2-248da2b7f4c0a611d568d621dd3638793f4231e4.tar.bz2
gentoo-2-248da2b7f4c0a611d568d621dd3638793f4231e4.zip
Remove old.
(Portage version: 2.1.5_rc3)
Diffstat (limited to 'app-emacs/howm')
-rw-r--r--app-emacs/howm/ChangeLog8
-rw-r--r--app-emacs/howm/files/55howm-gentoo.el6
-rw-r--r--app-emacs/howm/howm-1.2.ebuild43
-rw-r--r--app-emacs/howm/howm-1.3.4.ebuild35
4 files changed, 6 insertions, 86 deletions
diff --git a/app-emacs/howm/ChangeLog b/app-emacs/howm/ChangeLog
index 60ac3fd5810d..01898b07c7f5 100644
--- a/app-emacs/howm/ChangeLog
+++ b/app-emacs/howm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-emacs/howm
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/howm/ChangeLog,v 1.20 2007/12/01 12:01:23 nixnut Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/howm/ChangeLog,v 1.21 2008/04/18 18:17:54 ulm Exp $
+
+ 18 Apr 2008; Ulrich Mueller <ulm@gentoo.org> -files/55howm-gentoo.el,
+ -howm-1.2.ebuild, -howm-1.3.4.ebuild:
+ Remove old.
01 Dec 2007; nixnut <nixnut@gentoo.org> howm-1.3.4-r1.ebuild:
Stable on ppc wrt bug 200894
diff --git a/app-emacs/howm/files/55howm-gentoo.el b/app-emacs/howm/files/55howm-gentoo.el
deleted file mode 100644
index 2903181f2249..000000000000
--- a/app-emacs/howm/files/55howm-gentoo.el
+++ /dev/null
@@ -1,6 +0,0 @@
-
-;;; howm site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(require 'howm)
-
diff --git a/app-emacs/howm/howm-1.2.ebuild b/app-emacs/howm/howm-1.2.ebuild
deleted file mode 100644
index eb519f0a7db9..000000000000
--- a/app-emacs/howm/howm-1.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/howm/howm-1.2.ebuild,v 1.6 2007/01/28 04:20:12 genone Exp $
-
-inherit elisp
-
-DESCRIPTION="note-taking tool on Emacs"
-HOMEPAGE="http://howm.sourceforge.jp/"
-SRC_URI="http://howm.sourceforge.jp/a/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc"
-IUSE=""
-
-DEPEND="virtual/emacs"
-
-SITEFILE="55howm-gentoo.el"
-
-src_compile() {
- econf --with-docdir=/usr/share/doc/${P} || die
- emake < /dev/null || die
-}
-
-src_install() {
- emake < /dev/null \
- DESTDIR=${D} PREFIX=/usr LISPDIR=${SITELISP}/${PN} install || die
- elisp-site-file-install ${FILESDIR}/${SITEFILE} || die
-}
-
-pkg_postinst() {
- elog
- elog "If you prefer Japanese menu, add the following line to your ~/.emacs"
- elog
- elog "(setq howm-menu-lang 'ja) ; Japanese interface"
- elog
-
- elisp-site-regen
-}
-
-pkg_postrm() {
- elisp-site-regen
-}
diff --git a/app-emacs/howm/howm-1.3.4.ebuild b/app-emacs/howm/howm-1.3.4.ebuild
deleted file mode 100644
index e20346bfe065..000000000000
--- a/app-emacs/howm/howm-1.3.4.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/howm/howm-1.3.4.ebuild,v 1.1 2007/07/06 18:37:09 ulm Exp $
-
-inherit elisp
-
-DESCRIPTION="note-taking tool on Emacs"
-HOMEPAGE="http://howm.sourceforge.jp/"
-SRC_URI="http://howm.sourceforge.jp/a/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="linguas_ja"
-
-SITEFILE="55howm-gentoo.el"
-
-src_compile() {
- if use linguas_ja ; then
- cat >>"${T}/${SITEFILE}"<<-EOF
- (setq howm-menu-lang 'ja) ; Japanese interface"
- EOF
- fi
-
- econf --with-docdir=/usr/share/doc/${P} || die "econf failed"
- emake < /dev/null || die "emake failed"
-}
-
-src_install() {
- emake < /dev/null \
- DESTDIR="${D}" PREFIX=/usr LISPDIR="${SITELISP}/${PN}" install \
- || die "emake install failed"
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- dodoc ChangeLog || die "dodoc failed"
-}