forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-emacs/emacs-w3m: New snapshot from CVS.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST emacs-w3m-1.4.513_pre20130204.tar.xz 724892 SHA256 fc71922e8a5249584075a86bb274f08f193d82ed2e29786dcdfac4049b6b8873 SHA512 86d5aadd4a3e667a5f940ac47bd7c828546260dc6026bd3a906c5439ed07c702019e7dc7c4eac1bc2f4d3a9a6e03e28b59f3c48ce649c644d6608a120a67dfc0 WHIRLPOOL b4e7bd2809f6518f5b96fdc11c491ebe25169aef07613e443b6d293cedc3195f4789d31c2bea3e5648073087ecad66dd25175858f78e7307dcc37fb7fc5f526a | ||
DIST emacs-w3m-1.4.528_pre20140213.tar.xz 751532 SHA256 0be76617be14532493f95c1bb01b4c7337aa0407c5effe58d32feb9bd2b30f7f SHA512 f4ccb41f2011354c091c9b07b2ab596f030a6b2e8ef2ef674db75c93e5bfe7347b8b3602283e169e7fd591c44b222482d1a399880c60176fc55a5e77ed728483 WHIRLPOOL e3c838c1d65735899f74e09ed5362bc93e79564cb8c5076cf2dcd77880dd9d72afb7c3ddc2f9d60a49f1bda1766a6235ae702c368878e654d890127f6d0e445c | ||
DIST emacs-w3m-1.4.570_pre20170203.tar.xz 765108 SHA256 2923b18dcd9daea27ab2e3bbb8c3328723da97f34a0eeed57e8803ccad72f268 SHA512 d1940679055d7ad74b7c417dc9e56061524f5afdf758075139e279c2df325af10eae334a6b83d40d39857237396da04744f19c293ffb8adb2e579c32ed118b52 WHIRLPOOL a77c2e78d82f46482e890d28678fa05ff4c23f657093f22b0e03a8e8a8b70898ed9caf1a27c0d640f6d168b063b188ed41d285d14c39b0c41be7da6600256b82 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit elisp autotools readme.gentoo-r1 | ||
|
||
DESCRIPTION="emacs-w3m is an interface program of w3m on Emacs" | ||
HOMEPAGE="http://emacs-w3m.namazu.org/" | ||
SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" | ||
IUSE="l10n_ja" | ||
|
||
DEPEND="virtual/w3m" | ||
RDEPEND="${DEPEND}" | ||
|
||
S="${WORKDIR}/${PN}" | ||
SITEFILE="70${PN}-gentoo.el" | ||
|
||
src_prepare() { | ||
mv configure.{in,ac} || die | ||
sed -i -e '/^configure:/,+2d' Makefile.in || die | ||
eapply_user | ||
eautoreconf | ||
} | ||
|
||
src_configure() { | ||
default | ||
} | ||
|
||
src_compile() { | ||
emake all-en $(use l10n_ja && echo all-ja) | ||
} | ||
|
||
src_install() { | ||
emake lispdir="${ED}${SITELISP}/${PN}" \ | ||
infodir="${ED}/usr/share/info" \ | ||
ICONDIR="${ED}${SITEETC}/${PN}" \ | ||
install-en $(use l10n_ja && echo install-ja) install-icons | ||
|
||
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die | ||
dodoc ChangeLog* NEWS README | ||
use l10n_ja && dodoc BUGS.ja NEWS.ja README.ja | ||
|
||
DOC_CONTENTS="If you want to use the shimbun library, please emerge | ||
app-emacs/apel and app-emacs/flim." | ||
readme.gentoo_create_doc | ||
} |