diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-08-08 17:23:23 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-08-08 17:23:23 +0000 |
commit | bef011990daa483eeeecfba2e79b4841a29e5025 (patch) | |
tree | dbadb5842a9e7fae87c327c35b1a574aeaec2b42 /www-client/conkeror | |
parent | Removed notification-daemon-xfce, xfkc and gsynaptics-mcs-plugin from tree. (diff) | |
download | gentoo-2-bef011990daa483eeeecfba2e79b4841a29e5025.tar.gz gentoo-2-bef011990daa483eeeecfba2e79b4841a29e5025.tar.bz2 gentoo-2-bef011990daa483eeeecfba2e79b4841a29e5025.zip |
New snapshot.
(Portage version: 2.2_rc36/cvs/Linux i686)
Diffstat (limited to 'www-client/conkeror')
-rw-r--r-- | www-client/conkeror/ChangeLog | 8 | ||||
-rw-r--r-- | www-client/conkeror/conkeror-0.9_pre20090724.ebuild | 49 |
2 files changed, 56 insertions, 1 deletions
diff --git a/www-client/conkeror/ChangeLog b/www-client/conkeror/ChangeLog index bb622bf61c52..eeaa34ec091a 100644 --- a/www-client/conkeror/ChangeLog +++ b/www-client/conkeror/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-client/conkeror # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/ChangeLog,v 1.3 2009/04/29 19:51:04 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/ChangeLog,v 1.4 2009/08/08 17:23:23 ulm Exp $ + +*conkeror-0.9_pre20090724 (08 Aug 2009) + + 08 Aug 2009; Ulrich Mueller <ulm@gentoo.org> + +conkeror-0.9_pre20090724.ebuild: + New snapshot. 29 Apr 2009; Markus Meier <maekke@gentoo.org> conkeror-0.9_pre20090401.ebuild: diff --git a/www-client/conkeror/conkeror-0.9_pre20090724.ebuild b/www-client/conkeror/conkeror-0.9_pre20090724.ebuild new file mode 100644 index 000000000000..7c76a8fdb902 --- /dev/null +++ b/www-client/conkeror/conkeror-0.9_pre20090724.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/conkeror-0.9_pre20090724.ebuild,v 1.1 2009/08/08 17:23:23 ulm Exp $ + +inherit eutils 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?a=snapshot;h=master;sf=tgz +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=net-libs/xulrunner-1.9" + +S="${WORKDIR}/${PN}" + +src_compile() { + emake CFLAGS="${CFLAGS}" || die +} + +src_install() { + insinto /usr/lib/${PN} + doins -r branding chrome components content defaults help locale modules \ + search-engines style tests || die + doins application.ini Info.plist || die + + exeinto /usr/lib/${PN} + doexe conkeror-spawn-helper || die + exeinto /usr/lib/${PN}/contrib + doexe contrib/run-conkeror || die + dosym /usr/lib/${PN}/contrib/run-conkeror /usr/bin/conkeror || die + domenu "${FILESDIR}/conkeror.desktop" || die + + doman contrib/man/conkeror.1 || die + dodoc CREDITS || die +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} |