diff options
author | 2005-03-26 04:02:16 +0000 | |
---|---|---|
committer | 2005-03-26 04:02:16 +0000 | |
commit | 50228ade459a7ae631c349e6257f5f3a1061490e (patch) | |
tree | 814a30453c3a79bfe682b68102a9f14d2a33440f /x11-wm | |
parent | Keyworded ~sparc wrt #84992 (diff) | |
download | gentoo-2-50228ade459a7ae631c349e6257f5f3a1061490e.tar.gz gentoo-2-50228ade459a7ae631c349e6257f5f3a1061490e.tar.bz2 gentoo-2-50228ade459a7ae631c349e6257f5f3a1061490e.zip |
Bump that sexy version.
(Portage version: 2.0.51.19)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/ratpoison/ChangeLog | 9 | ||||
-rw-r--r-- | x11-wm/ratpoison/Manifest | 2 | ||||
-rw-r--r-- | x11-wm/ratpoison/files/digest-ratpoison-1.4.0_beta2 | 1 | ||||
-rw-r--r-- | x11-wm/ratpoison/ratpoison-1.4.0_beta2.ebuild | 67 |
4 files changed, 77 insertions, 2 deletions
diff --git a/x11-wm/ratpoison/ChangeLog b/x11-wm/ratpoison/ChangeLog index b8739a556a14..07d2114ea03e 100644 --- a/x11-wm/ratpoison/ChangeLog +++ b/x11-wm/ratpoison/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/ratpoison -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.27 2004/12/12 04:52:36 weeve Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.28 2005/03/26 04:02:15 weeve Exp $ + +*ratpoison-1.4.0_beta2 (26 Mar 2005) + + 26 Mar 2005; Jason Wever <weeve@gentoo.org> +ratpoison-1.4.0_beta2.ebuild: + Bump that sexy version. 11 Dec 2004; Jason Wever <weeve@gentoo.org> ratpoison-1.3.0.ebuild: Updated HOMEPAGE and SRC_URI to reflect recent move to savannah.nongnu.org. diff --git a/x11-wm/ratpoison/Manifest b/x11-wm/ratpoison/Manifest index 48769dd71e18..d34c8fe7cb2f 100644 --- a/x11-wm/ratpoison/Manifest +++ b/x11-wm/ratpoison/Manifest @@ -1,8 +1,10 @@ MD5 7d645ba01972b6e06f1d76c1b4dd2559 ChangeLog 3592 MD5 0dc401dca3401344d482d660aedf9b3b metadata.xml 829 MD5 754907a47eb6de73be0c437706501932 ratpoison-1.3.0.ebuild 1444 +MD5 16df38a9e139f9e193a4f5d81c1e9575 ratpoison-1.4.0_beta2.ebuild 1493 MD5 ab1a7f36971489b5cffb75d84a2b2d0a files/50ratpoison-gentoo.el 82 MD5 a03e9a6eb4cf2a842fb1b5c33c3758a5 files/ratpoison.xsession 36 MD5 e4205db91428787672e5463c32d4b701 files/digest-ratpoison-1.3.0 67 MD5 129f353e076455306b034fd577a6cdd2 files/ratpoison.el-gentoo.patch 273 MD5 a7dd337c32ae9d2fe627cf230b77965c files/ratpoisonrc 609 +MD5 e97b940b1d366b59e727dd7c8f727874 files/digest-ratpoison-1.4.0_beta2 73 diff --git a/x11-wm/ratpoison/files/digest-ratpoison-1.4.0_beta2 b/x11-wm/ratpoison/files/digest-ratpoison-1.4.0_beta2 new file mode 100644 index 000000000000..38d3d78e4566 --- /dev/null +++ b/x11-wm/ratpoison/files/digest-ratpoison-1.4.0_beta2 @@ -0,0 +1 @@ +MD5 c5f5a2c7a9d5de02ccabfb1327346124 ratpoison-1.4.0-beta2.tar.gz 342068 diff --git a/x11-wm/ratpoison/ratpoison-1.4.0_beta2.ebuild b/x11-wm/ratpoison/ratpoison-1.4.0_beta2.ebuild new file mode 100644 index 000000000000..81a8d962200a --- /dev/null +++ b/x11-wm/ratpoison/ratpoison-1.4.0_beta2.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.0_beta2.ebuild,v 1.1 2005/03/26 04:02:16 weeve Exp $ + +inherit elisp-common eutils + +MY_P=${P/_beta/-beta} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Ratpoison is an extremely light-weight and barebones wm modelled after screen" +HOMEPAGE="http://www.nongnu.org/ratpoison/" +LICENSE="GPL-2" + +SRC_URI="http://savannah.nongnu.org/download/${PN}/${MY_P}.tar.gz" + +SLOT="0" +KEYWORDS="~x86 ~sparc ~ppc ~amd64" +IUSE="emacs" + +DEPEND="virtual/x11 + emacs? ( virtual/emacs )" + +SITEFILE=50ratpoison-gentoo.el + +src_unpack() { + unpack ${A} + cd ${S}/contrib + epatch ${FILESDIR}/ratpoison.el-gentoo.patch +} + +src_compile() { + if [ "${ARCH}" = "amd64" ] + then + libtoolize -c -f + fi + econf || die "econf failed" + emake CFLAGS="${CFLAGS} -I/usr/X11R6/include" || die + if use emacs; then + cd contrib && elisp-comp ratpoison.el + fi +} + +src_install() { + einstall + + exeinto /etc/X11/Sessions + newexe ${FILESDIR}/ratpoison.xsession ratpoison + + dodoc INSTALL TODO README NEWS AUTHORS ChangeLog + docinto example + dodoc contrib/{genrpbindings,split.sh} \ + doc/{ipaq.ratpoisonrc,sample.ratpoisonrc} + + rm -rf $D/usr/share/{doc/ratpoison,ratpoison} + + if use emacs; then + elisp-install ${PN} contrib/ratpoison.* + elisp-site-file-install ${FILESDIR}/${SITEFILE} + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |