diff options
-rw-r--r-- | app-emacs/filladapt/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/filladapt/filladapt-2.12.2.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/app-emacs/filladapt/Manifest b/app-emacs/filladapt/Manifest index ef111e1a41a3..5ef648508983 100644 --- a/app-emacs/filladapt/Manifest +++ b/app-emacs/filladapt/Manifest @@ -1 +1,2 @@ +DIST filladapt-2.12.2.el 30238 BLAKE2B 9007ce3e8667d010cc5c04ec4d1f078995dab569bea6f1d35a15564ad5bddce1649a149fef396660b577cb3df016c86f3d570f0708bf54a6588baecc50c3c2c0 SHA512 485d008addfba33e56ccd751b0af304ae55dd6d261ad10f6d7876c16c5299c4964c16bde8bee37b87351da6ef80ef785641803a12a4ec02a80f72ee289720f38 DIST filladapt-2.12.el.gz 9267 BLAKE2B 81510bd51808f7aaa4874a1127a74bfc7d35c5f1dca0100694853025fd1bc884d75c2023f0e373eb1fe69cc5d423a48d884b4ff5cfdfc82b161f6a404965b6bd SHA512 31bf3dca48129cc25653827678215eb4c62ff777cfbdf0d71142c0cc3111a078b1af316e121b27be2a47c317cfa440ac00e7fbc2bdf3e8ac7d54748297249328 diff --git a/app-emacs/filladapt/filladapt-2.12.2.ebuild b/app-emacs/filladapt/filladapt-2.12.2.ebuild new file mode 100644 index 000000000000..e2880aa486fe --- /dev/null +++ b/app-emacs/filladapt/filladapt-2.12.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=24.4 + +inherit elisp readme.gentoo-r1 + +DESCRIPTION="Filladapt enhances the behavior of Emacs' fill functions" +HOMEPAGE="http://www.wonderworks.com/ https://elpa.gnu.org/packages/filladapt.html" +SRC_URI="https://elpa.gnu.org/packages/${P}.el" +S="${WORKDIR}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +SITEFILE="50${PN}-gentoo.el" +DOC_CONTENTS="Filladapt is not enabled as a site default. Add the following + lines to your ~/.emacs file to enable adaptive fill by default: + \n\t(require 'filladapt) + \n\t(setq-default filladapt-mode t)" + +src_unpack() { + mv "${DISTDIR}"/${P}.el "${WORKDIR}"/${PN}.el || die +} |