diff options
author | Ulrich Müller <ulm@gentoo.org> | 2010-05-22 15:30:45 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2010-05-22 15:30:45 +0000 |
commit | f79fcb5f125c7e5da7e93ba899606e65469a0e58 (patch) | |
tree | 87513f948c7f654428ff02ec71c5dbbeaca0676e /app-emacs | |
parent | Various cleanups. (diff) | |
download | gentoo-2-f79fcb5f125c7e5da7e93ba899606e65469a0e58.tar.gz gentoo-2-f79fcb5f125c7e5da7e93ba899606e65469a0e58.tar.bz2 gentoo-2-f79fcb5f125c7e5da7e93ba899606e65469a0e58.zip |
Fix HOMEPAGE. Remove stale site-init file.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/thumbs/ChangeLog | 8 | ||||
-rw-r--r-- | app-emacs/thumbs/files/50thumbs-gentoo.el | 15 | ||||
-rw-r--r-- | app-emacs/thumbs/files/51thumbs-gentoo.el | 14 | ||||
-rw-r--r-- | app-emacs/thumbs/thumbs-2.0.ebuild | 8 |
4 files changed, 20 insertions, 25 deletions
diff --git a/app-emacs/thumbs/ChangeLog b/app-emacs/thumbs/ChangeLog index 149175d40ef7..1c4f02e24c7c 100644 --- a/app-emacs/thumbs/ChangeLog +++ b/app-emacs/thumbs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/thumbs -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/thumbs/ChangeLog,v 1.21 2009/05/05 17:33:16 ulm Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/thumbs/ChangeLog,v 1.22 2010/05/22 15:30:45 ulm Exp $ + + 22 May 2010; Ulrich Mueller <ulm@gentoo.org> files/50thumbs-gentoo.el, + thumbs-2.0.ebuild, -files/51thumbs-gentoo.el: + Fix HOMEPAGE. Remove stale site-init file. 05 May 2009; Ulrich Mueller <ulm@gentoo.org> thumbs-2.0.ebuild: Fix dependencies: media-gfx/imagemagick is not needed at build time. diff --git a/app-emacs/thumbs/files/50thumbs-gentoo.el b/app-emacs/thumbs/files/50thumbs-gentoo.el index 2c9b47499da8..12627d30c75e 100644 --- a/app-emacs/thumbs/files/50thumbs-gentoo.el +++ b/app-emacs/thumbs/files/50thumbs-gentoo.el @@ -1,6 +1,11 @@ - -;;; thumbs site-lisp configuration - (add-to-list 'load-path "@SITELISP@") -(require 'image) -(require 'thumbs) +(autoload 'thumbs-find-thumb "thumbs" "Display the thumbnail for IMG." t) +(autoload 'thumbs-show-all-from-dir "thumbs" + "Make a preview buffer for all images in DIR." t) +(autoload 'thumbs-dired-show-marked "thumbs" + "In Dired, make a thumbs buffer with all marked files." t) +(autoload 'thumbs-dired-show-all "thumbs" + "In dired, make a thumbs buffer with all files in current directory." t) +(defalias 'thumbs 'thumbs-show-all-from-dir) +(autoload 'thumbs-dired-setroot "thumbs" + "In dired, Call the setroot program on the image at point." t) diff --git a/app-emacs/thumbs/files/51thumbs-gentoo.el b/app-emacs/thumbs/files/51thumbs-gentoo.el deleted file mode 100644 index a07a89b93c21..000000000000 --- a/app-emacs/thumbs/files/51thumbs-gentoo.el +++ /dev/null @@ -1,14 +0,0 @@ - -;;; thumbs site-lisp configuration - -(add-to-list 'load-path "@SITELISP@") -(autoload 'thumbs-find-thumb "thumbs" "Display the thumbnail for IMG." t) -(autoload 'thumbs-show-all-from-dir "thumbs" - "Make a preview buffer for all images in DIR." t) -(autoload 'thumbs-dired-show-marked "thumbs" - "In Dired, make a thumbs buffer with all marked files." t) -(autoload 'thumbs-dired-show-all "thumbs" - "In dired, make a thumbs buffer with all files in current directory." t) -(defalias 'thumbs 'thumbs-show-all-from-dir) -(autoload 'thumbs-dired-setroot "thumbs" - "In dired, Call the setroot program on the image at point." t) diff --git a/app-emacs/thumbs/thumbs-2.0.ebuild b/app-emacs/thumbs/thumbs-2.0.ebuild index af21de7696bd..5608fc72a8aa 100644 --- a/app-emacs/thumbs/thumbs-2.0.ebuild +++ b/app-emacs/thumbs/thumbs-2.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/thumbs/thumbs-2.0.ebuild,v 1.7 2009/05/05 17:33:16 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/thumbs/thumbs-2.0.ebuild,v 1.8 2010/05/22 15:30:45 ulm Exp $ inherit elisp DESCRIPTION="Emacs thumbnail previewer for image files" -HOMEPAGE="http://www.emacswiki.org/cgi-bin/wiki.pl?ThumbsMode" +HOMEPAGE="http://www.emacswiki.org/emacs/ThumbsMode" SRC_URI="mirror://gentoo/${P}.el.bz2" LICENSE="GPL-2" @@ -15,4 +15,4 @@ IUSE="" RDEPEND="media-gfx/imagemagick" -SITEFILE="51${PN}-gentoo.el" +SITEFILE="50${PN}-gentoo.el" |