diff options
author | Ulrich Müller <ulm@gentoo.org> | 2014-02-21 19:00:54 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2014-02-21 19:00:54 +0000 |
commit | 46975dc02092528baab90b81d9e69d96e88d6ce7 (patch) | |
tree | e21c942ff9b61d5e858403a8e88282b2993fb203 /app-emacs/httpd | |
parent | Explicitly add WebP support. Remove imagemagick support (which never worked t... (diff) | |
download | gentoo-2-46975dc02092528baab90b81d9e69d96e88d6ce7.tar.gz gentoo-2-46975dc02092528baab90b81d9e69d96e88d6ce7.tar.bz2 gentoo-2-46975dc02092528baab90b81d9e69d96e88d6ce7.zip |
Update ebuild to EAPI 5. Specify LICENSE more precisely.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-emacs/httpd')
-rw-r--r-- | app-emacs/httpd/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/httpd/files/50httpd-gentoo.el | 3 | ||||
-rw-r--r-- | app-emacs/httpd/httpd-1.1.ebuild | 15 |
3 files changed, 14 insertions, 11 deletions
diff --git a/app-emacs/httpd/ChangeLog b/app-emacs/httpd/ChangeLog index afee1b8ecf19..37c5fb6c0813 100644 --- a/app-emacs/httpd/ChangeLog +++ b/app-emacs/httpd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/httpd -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/httpd/ChangeLog,v 1.13 2007/02/21 21:32:17 peper Exp $ +# Copyright 2002-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/httpd/ChangeLog,v 1.14 2014/02/21 19:00:54 ulm Exp $ + + 21 Feb 2014; Ulrich Müller <ulm@gentoo.org> httpd-1.1.ebuild: + Update ebuild to EAPI 5. Specify LICENSE more precisely. 21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/app-emacs/httpd/files/50httpd-gentoo.el b/app-emacs/httpd/files/50httpd-gentoo.el index 072ae59d1b2f..431f7e90ae73 100644 --- a/app-emacs/httpd/files/50httpd-gentoo.el +++ b/app-emacs/httpd/files/50httpd-gentoo.el @@ -1,4 +1 @@ - -;;; httpd site-lisp configuration - (add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/httpd/httpd-1.1.ebuild b/app-emacs/httpd/httpd-1.1.ebuild index fc717e49ca65..6d71788d25b5 100644 --- a/app-emacs/httpd/httpd-1.1.ebuild +++ b/app-emacs/httpd/httpd-1.1.ebuild @@ -1,15 +1,18 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/httpd/httpd-1.1.ebuild,v 1.1 2006/04/27 05:58:29 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/httpd/httpd-1.1.ebuild,v 1.2 2014/02/21 19:00:54 ulm Exp $ -inherit elisp eutils +EAPI=5 + +inherit elisp DESCRIPTION="A HTTP server embedded in the Emacs" HOMEPAGE="http://www.chez.com/emarsden/downloads/" +# taken from contrib/httpd.el in app-emacs/muse SRC_URI="mirror://gentoo/${P}.tar.gz" -LICENSE="GPL-2" + +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="" -SITEFILE=50httpd-gentoo.el +SITEFILE="50${PN}-gentoo.el" |