summaryrefslogtreecommitdiff
path: root/net-misc/ttytter
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-misc/ttytter
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.xz
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 'net-misc/ttytter')
-rw-r--r--net-misc/ttytter/Manifest1
-rw-r--r--net-misc/ttytter/metadata.xml11
-rw-r--r--net-misc/ttytter/ttytter-2.1.00.ebuild36
3 files changed, 48 insertions, 0 deletions
diff --git a/net-misc/ttytter/Manifest b/net-misc/ttytter/Manifest
new file mode 100644
index 00000000000..859954b473e
--- /dev/null
+++ b/net-misc/ttytter/Manifest
@@ -0,0 +1 @@
+DIST 2.1.00.txt 238284 SHA256 6292ada5d238009c74345c48a66e59b3c0e4e084a733715953e408bb18191898 SHA512 79629d62ab2a9fd7de82347795f75f9dc850bb6051682af112f4db1362b174f2b4c3df9331483c40461fd5ba7f8dcb325aaee605d2b850f0f7b635afa8fab7b6 WHIRLPOOL 9e4a0fe5e535a79e8065238909ad049b4b6330f7444b2292fd1d0c3fb235a72cdfa60334c1f23f8415503b2224f70ed5ecf4472694bdbcb0791100683c8ee172
diff --git a/net-misc/ttytter/metadata.xml b/net-misc/ttytter/metadata.xml
new file mode 100644
index 00000000000..5e3a61a9013
--- /dev/null
+++ b/net-misc/ttytter/metadata.xml
@@ -0,0 +1,11 @@
+<?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>
+<longdescription lang="en">
+</longdescription>
+</pkgmetadata>
+
diff --git a/net-misc/ttytter/ttytter-2.1.00.ebuild b/net-misc/ttytter/ttytter-2.1.00.ebuild
new file mode 100644
index 00000000000..5d16ba1ad70
--- /dev/null
+++ b/net-misc/ttytter/ttytter-2.1.00.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit readme.gentoo
+
+DESCRIPTION="A multi-functional, console-based Twitter client"
+HOMEPAGE="http://www.floodgap.com/software/ttytter/"
+SRC_URI="http://www.floodgap.com/software/ttytter/dist2/${PV}.txt"
+
+LICENSE="FFSL"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+DEPEND=""
+RDEPEND=">=dev-lang/perl-5.8
+ || ( net-misc/curl www-client/lynx )"
+
+pkg_setup() {
+ DOC_CONTENTS="Please consult the following webpage on how to
+ configure your client.
+ http://www.floodgap.com/software/ttytter/dl.html"
+}
+
+S="${WORKDIR}"
+
+src_unpack() {
+ cp "${DISTDIR}"/${A} ${WORKDIR}/${PN} || die
+}
+
+src_install() {
+ dobin ${PN}
+ readme.gentoo_create_doc
+}