diff options
author | Ulrich Müller <ulm@gentoo.org> | 2012-06-09 09:06:18 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2012-06-09 09:06:18 +0000 |
commit | 1f5d55c00bae4b56f2f3f204c35398d7b3bd64f3 (patch) | |
tree | 58c26bfdc284ab97dc8a1454c974c160e5651948 /www-client/conkeror | |
parent | arm stable, bug #420167 (diff) | |
download | gentoo-2-1f5d55c00bae4b56f2f3f204c35398d7b3bd64f3.tar.gz gentoo-2-1f5d55c00bae4b56f2f3f204c35398d7b3bd64f3.tar.bz2 gentoo-2-1f5d55c00bae4b56f2f3f204c35398d7b3bd64f3.zip |
New snapshot.
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'www-client/conkeror')
-rw-r--r-- | www-client/conkeror/ChangeLog | 8 | ||||
-rw-r--r-- | www-client/conkeror/conkeror-1.0_pre20120527.ebuild | 61 |
2 files changed, 68 insertions, 1 deletions
diff --git a/www-client/conkeror/ChangeLog b/www-client/conkeror/ChangeLog index 9f9c63cae7c7..1d39a76e8b4f 100644 --- a/www-client/conkeror/ChangeLog +++ b/www-client/conkeror/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-client/conkeror # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/ChangeLog,v 1.31 2012/04/19 05:37:13 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/ChangeLog,v 1.32 2012/06/09 09:06:18 ulm Exp $ + +*conkeror-1.0_pre20120527 (09 Jun 2012) + + 09 Jun 2012; Ulrich Müller <ulm@gentoo.org> + +conkeror-1.0_pre20120527.ebuild: + New snapshot. 19 Apr 2012; Ulrich Müller <ulm@gentoo.org> -conkeror-0.9.4-r1.ebuild, files/conkeror.sh: diff --git a/www-client/conkeror/conkeror-1.0_pre20120527.ebuild b/www-client/conkeror/conkeror-1.0_pre20120527.ebuild new file mode 100644 index 000000000000..f1236095a078 --- /dev/null +++ b/www-client/conkeror/conkeror-1.0_pre20120527.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/conkeror-1.0_pre20120527.ebuild,v 1.1 2012/06/09 09:06:18 ulm Exp $ + +EAPI=4 + +inherit eutils toolchain-funcs fdo-mime + +DESCRIPTION="A Mozilla-based web browser whose design is inspired by GNU Emacs" +HOMEPAGE="http://conkeror.org/" +# snapshot from http://repo.or.cz/w/conkeror.git +# conkeror.png is derived from http://commons.wikimedia.org/wiki/File:Conker.jpg +SRC_URI="mirror://gentoo/${P}.tar.gz + mirror://gentoo/conkeror.png" + +# CC-BY-SA-3.0 for conkeror.png +LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 ) CCPL-Attribution-ShareAlike-3.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND="|| ( >=www-client/firefox-5.0 >=www-client/firefox-bin-5.0 )" + +S="${WORKDIR}/${PN}" + +src_unpack() { + unpack ${P}.tar.gz + cp "${DISTDIR}/conkeror.png" . || die +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + insinto /usr/share/${PN} + doins -r branding chrome components content defaults help locale modules \ + search-engines style tests + doins application.ini *.manifest Info.plist + + exeinto /usr/libexec/${PN} + doexe conkeror-spawn-helper + dosym ../../libexec/${PN}/conkeror-spawn-helper \ + /usr/share/${PN}/conkeror-spawn-helper + + newbin "${FILESDIR}/conkeror.sh" conkeror + domenu "${FILESDIR}/conkeror.desktop" + doicon "${WORKDIR}/conkeror.png" + + doman contrib/man/conkeror.1 + dodoc CREDITS +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} |