diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-misc/gentoo | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-misc/gentoo')
-rw-r--r-- | app-misc/gentoo/Manifest | 1 | ||||
-rw-r--r-- | app-misc/gentoo/gentoo-0.20.6.ebuild | 62 | ||||
-rw-r--r-- | app-misc/gentoo/metadata.xml | 8 |
3 files changed, 71 insertions, 0 deletions
diff --git a/app-misc/gentoo/Manifest b/app-misc/gentoo/Manifest new file mode 100644 index 000000000000..18c0df017665 --- /dev/null +++ b/app-misc/gentoo/Manifest @@ -0,0 +1 @@ +DIST gentoo-0.20.6.tar.gz 1609301 SHA256 724cc64a573cdd0ce34cf9803e28b5302031677131accf57148937f8fd128c84 SHA512 1a6493a7ca6c72930285628c749434b145ac7b6469ab9985beeb6ab5cbb0b69f6e45b51b2ba83553192625584bc3df1da943b7e26e3da37217117fd1d7326d47 WHIRLPOOL 9bc66d0c209ddfaecdb9af3851059a657eadd1194092dac2c5f04107f26e4d9010e8ece1e6473d32f2a290c9d8b53514a5691fda5bd02e7dfe0347bdfb31107f diff --git a/app-misc/gentoo/gentoo-0.20.6.ebuild b/app-misc/gentoo/gentoo-0.20.6.ebuild new file mode 100644 index 000000000000..2cf997e81084 --- /dev/null +++ b/app-misc/gentoo/gentoo-0.20.6.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools eutils + +DESCRIPTION="A modern GTK+ based filemanager for any WM" +HOMEPAGE="http://www.obsession.se/gentoo/ 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 + eautoreconf +} + +src_configure() { + econf \ + --sysconfdir=/etc/gentoo \ + $(use_enable nls) +} + +src_install() { + default + + dohtml -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" +} diff --git a/app-misc/gentoo/metadata.xml b/app-misc/gentoo/metadata.xml new file mode 100644 index 000000000000..2c6f3bff0351 --- /dev/null +++ b/app-misc/gentoo/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> + <upstream> + <remote-id type="sourceforge">gentoo</remote-id> + </upstream> +</pkgmetadata> |