diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2010-06-05 21:00:33 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2010-06-05 21:00:33 +0000 |
commit | 3b7c0b4495392e268911b0c19e89b042b53ce029 (patch) | |
tree | 8b4bb6ae8fe578a5b17439380253979fd9fc9c28 /dev-libs/librep | |
parent | Drop xinerama use flag as xinerama is an actual dependency (diff) | |
download | gentoo-2-3b7c0b4495392e268911b0c19e89b042b53ce029.tar.gz gentoo-2-3b7c0b4495392e268911b0c19e89b042b53ce029.tar.bz2 gentoo-2-3b7c0b4495392e268911b0c19e89b042b53ce029.zip |
Version bumps
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/librep')
-rw-r--r-- | dev-libs/librep/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/librep/librep-0.90.6.ebuild | 61 |
2 files changed, 67 insertions, 1 deletions
diff --git a/dev-libs/librep/ChangeLog b/dev-libs/librep/ChangeLog index 9f04ea7685d1..3303831ba482 100644 --- a/dev-libs/librep/ChangeLog +++ b/dev-libs/librep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/librep # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.55 2010/03/28 19:42:33 truedfx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.56 2010/06/05 21:00:33 truedfx Exp $ + +*librep-0.90.6 (05 Jun 2010) + + 05 Jun 2010; Harald van Dijk <truedfx@gentoo.org> +librep-0.90.6.ebuild: + Version bump *librep-0.90.5 (28 Mar 2010) diff --git a/dev-libs/librep/librep-0.90.6.ebuild b/dev-libs/librep/librep-0.90.6.ebuild new file mode 100644 index 000000000000..bfad548d43ff --- /dev/null +++ b/dev-libs/librep/librep-0.90.6.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.90.6.ebuild,v 1.1 2010/06/05 21:00:33 truedfx Exp $ + +inherit eutils multilib elisp-common + +DESCRIPTION="Shared library implementing a Lisp dialect" +HOMEPAGE="http://librep.sourceforge.net/" +SRC_URI="http://download.tuxfamily.org/sawfish/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="emacs readline" + +RDEPEND=">=sys-libs/gdbm-1.8.0 + emacs? ( virtual/emacs ) + readline? ( sys-libs/readline )" +DEPEND="${RDEPEND} + sys-apps/texinfo" + +src_unpack() { + unpack ${P}.tar.bz2 + cd "${S}" + epatch "${FILESDIR}"/${PN}-0.17.3-disable-elisp.patch +} + +src_compile() { + econf \ + --libexecdir=/usr/$(get_libdir) \ + --without-gmp \ + --without-ffi \ + $(use_with readline) || die "configure failed" + + emake || die "make failed" + + if use emacs; then + elisp-compile rep-debugger.el || die "elisp-compile failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO TREE + docinto doc + dodoc doc/* + + if use emacs; then + elisp-install ${PN} rep-debugger.{el,elc} || die "elisp-install failed" + elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" \ + || die "elisp-site-file-install failed" + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |