summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2012-07-14 21:56:46 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2012-07-14 21:56:46 +0000
commite594478fe3a2223506a2bb8a7594a37cd422f7b3 (patch)
tree9bb1a17740df1e9b3ace552270f21964f58f82cf /app-misc/screenfetch
parentDon't rely on image-load-path always being defined, bug 426646. (diff)
downloadgentoo-2-e594478fe3a2223506a2bb8a7594a37cd422f7b3.tar.gz
gentoo-2-e594478fe3a2223506a2bb8a7594a37cd422f7b3.tar.bz2
gentoo-2-e594478fe3a2223506a2bb8a7594a37cd422f7b3.zip
Initial commit. Bug #406465
(Portage version: 2.1.11.7/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/screenfetch')
-rw-r--r--app-misc/screenfetch/ChangeLog9
-rw-r--r--app-misc/screenfetch/metadata.xml9
-rw-r--r--app-misc/screenfetch/screenfetch-2.4.5.ebuild28
3 files changed, 46 insertions, 0 deletions
diff --git a/app-misc/screenfetch/ChangeLog b/app-misc/screenfetch/ChangeLog
new file mode 100644
index 000000000000..f30f805dfe68
--- /dev/null
+++ b/app-misc/screenfetch/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-misc/screenfetch
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screenfetch/ChangeLog,v 1.1 2012/07/14 21:56:46 hwoarang Exp $
+
+*screenfetch-2.4.5 (14 Jul 2012)
+
+ 14 Jul 2012; Markos Chandras <hwoarang@gentoo.org> +metadata.xml,
+ +screenfetch-2.4.5.ebuild:
+ Initial commit. Bug #406465
diff --git a/app-misc/screenfetch/metadata.xml b/app-misc/screenfetch/metadata.xml
new file mode 100644
index 000000000000..7d3738d1efc9
--- /dev/null
+++ b/app-misc/screenfetch/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+<email>hwoarang@gentoo.org</email>
+<name>Markos Chandras</name>
+</maintainer>
+</pkgmetadata>
+
diff --git a/app-misc/screenfetch/screenfetch-2.4.5.ebuild b/app-misc/screenfetch/screenfetch-2.4.5.ebuild
new file mode 100644
index 000000000000..50aaf1c0fe21
--- /dev/null
+++ b/app-misc/screenfetch/screenfetch-2.4.5.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/screenfetch/screenfetch-2.4.5.ebuild,v 1.1 2012/07/14 21:56:46 hwoarang Exp $
+
+EAPI=4
+
+MY_PN="${PN/f/F}"
+DESCRIPTION="A Bash Screenshot Information Tool"
+HOMEPAGE="https://github.com/KittyKatt/screenFetch"
+SRC_URI="http://github.com/KittyKatt/${MY_PN}/zipball/v${PV} -> ${P}.zip"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="app-arch/unzip"
+RDEPEND="media-gfx/scrot
+ x11-apps/xdpyinfo"
+
+S="${WORKDIR}"/KittyKatt-${MY_PN}-b9bc289
+
+src_install() {
+ dobin ${PN}-dev
+ # also known as screenfetch
+ dosym ${PN}-dev /usr/bin/${PN}
+ dodoc CHANGELOG README.mkdn TODO
+}