summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2010-06-22 12:27:37 +0000
committerChristian Faulhammer <fauli@gentoo.org>2010-06-22 12:27:37 +0000
commitb116b88f088d1b73c2264c7ed857b076922da2ac (patch)
treeb89fd3f71ba4dc555ad964f2d063dc84b8d6784d /www-client/conkeror
parentremove custom handling of icons; its done properly by upstream's makefiles no... (diff)
downloadgentoo-2-b116b88f088d1b73c2264c7ed857b076922da2ac.tar.gz
gentoo-2-b116b88f088d1b73c2264c7ed857b076922da2ac.tar.bz2
gentoo-2-b116b88f088d1b73c2264c7ed857b076922da2ac.zip
clean up
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'www-client/conkeror')
-rw-r--r--www-client/conkeror/ChangeLog6
-rw-r--r--www-client/conkeror/conkeror-0.9.1.ebuild61
2 files changed, 5 insertions, 62 deletions
diff --git a/www-client/conkeror/ChangeLog b/www-client/conkeror/ChangeLog
index 6c551e869e9a..c7f247b2dec7 100644
--- a/www-client/conkeror/ChangeLog
+++ b/www-client/conkeror/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-client/conkeror
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/ChangeLog,v 1.13 2010/06/20 14:02:24 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/ChangeLog,v 1.14 2010/06/22 12:27:37 fauli Exp $
+
+ 22 Jun 2010; Christian Faulhammer <fauli@gentoo.org>
+ -conkeror-0.9.1.ebuild:
+ clean up
25 May 2010; Pacho Ramos <pacho@gentoo.org> conkeror-0.9.2.ebuild:
stable amd64, bug 320329
diff --git a/www-client/conkeror/conkeror-0.9.1.ebuild b/www-client/conkeror/conkeror-0.9.1.ebuild
deleted file mode 100644
index 8ce950fcb1bb..000000000000
--- a/www-client/conkeror/conkeror-0.9.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/conkeror/conkeror-0.9.1.ebuild,v 1.5 2010/02/26 10:28:33 fauli Exp $
-
-EAPI=3
-
-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/snapshot/0b8239a885e397faa878ea475ac07b5769ffcebc.tar.gz
-# conkeror.png is derived from http://commons.wikimedia.org/wiki/File:Conker.jpg
-SRC_URI="mirror://gentoo/${P}.tar.gz
- mirror://gentoo/conkeror.png"
-
-LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND=""
-RDEPEND=">=net-libs/xulrunner-1.9"
-
-S="${WORKDIR}/${PN}"
-
-src_unpack() {
- unpack ${P}.tar.gz
- cp "${DISTDIR}/conkeror.png" . || die
-}
-
-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
- doicon "${WORKDIR}/conkeror.png" || die
-
- doman contrib/man/conkeror.1 || die
- dodoc CREDITS || die
- # Use the XULRunner found in the Prefix, not the system's one
- sed -e "s:/etc/gre.d:\"${EPREFIX}/etc/gre.d\":g" -i "${ED}"/usr/lib/conkeror/contrib/run-conkeror || die
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
-}