summaryrefslogtreecommitdiff
path: root/app-misc/gentoo/gentoo-0.20.7.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-misc/gentoo/gentoo-0.20.7.ebuild
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-misc/gentoo/gentoo-0.20.7.ebuild')
-rw-r--r--app-misc/gentoo/gentoo-0.20.7.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/app-misc/gentoo/gentoo-0.20.7.ebuild b/app-misc/gentoo/gentoo-0.20.7.ebuild
deleted file mode 100644
index f84fcd4a62e7..000000000000
--- a/app-misc/gentoo/gentoo-0.20.7.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools eutils
-
-DESCRIPTION="Graphical file manager for Unix-like systems, using GTK+"
-HOMEPAGE="http://gentoo.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-IUSE="nls"
-
-RDEPEND="
- >x11-libs/gtk+-3.12:3
- dev-libs/glib:2
- x11-libs/cairo
- x11-libs/gdk-pixbuf
- x11-libs/pango
-"
-DEPEND="
- ${RDEPEND}
- nls? ( sys-devel/gettext )
-"
-
-DOCS=(
- AUTHORS BUGS CONFIG-CHANGES CREDITS NEWS README TODO docs/{FAQ,menus.txt}
-)
-
-src_prepare() {
- sed -i \
- -e 's^icons/gnome/16x16/mimetypes^gentoo/icons^' \
- gentoorc.in || die
- sed -i \
- -e '/GTK_DISABLE_DEPRECATED/d' \
- -e '/^GENTOO_CFLAGS=/s|".*"|"${CFLAGS}"|g' \
- -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
- configure.ac || die #357343
-
- eapply_user
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- --sysconfdir=/etc/gentoo \
- $(use_enable nls)
-}
-
-src_install() {
- default
-
- docinto html
- dodoc -r docs/{images,config,*.{html,css}}
-
- newman docs/gentoo.1x gentoo.1
-
- docinto scratch
- dodoc docs/scratch/*
-
- make_desktop_entry ${PN} Gentoo \
- /usr/share/${PN}/icons/${PN}.png \
- "System;FileTools;FileManager"
-}