summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@gentoo.org>2003-01-13 17:34:33 +0000
committerBrandon Low <lostlogic@gentoo.org>2003-01-13 17:34:33 +0000
commit98b7bd9b498175568d8c825c2af6ad3da2cf94ab (patch)
tree232ee9d2bfc7408cb80407ad791ba735ac2344ae /net-im
parentadded USE flags to die msg (diff)
downloadgentoo-2-98b7bd9b498175568d8c825c2af6ad3da2cf94ab.tar.gz
gentoo-2-98b7bd9b498175568d8c825c2af6ad3da2cf94ab.tar.bz2
gentoo-2-98b7bd9b498175568d8c825c2af6ad3da2cf94ab.zip
new package, unstable (other arches mark keywords?)
Diffstat (limited to 'net-im')
-rw-r--r--net-im/pork/files/README.gentoo-0.3.025
-rw-r--r--net-im/pork/files/digest-pork-0.3.01
-rw-r--r--net-im/pork/pork-0.3.0.ebuild31
3 files changed, 57 insertions, 0 deletions
diff --git a/net-im/pork/files/README.gentoo-0.3.0 b/net-im/pork/files/README.gentoo-0.3.0
new file mode 100644
index 000000000000..fbee603cc0cc
--- /dev/null
+++ b/net-im/pork/files/README.gentoo-0.3.0
@@ -0,0 +1,25 @@
+While preparing to include this package in unstable portage, I discovered that it is quite lacking in new user documentation, so this is my experience with getting started with pork-0.3.0.
+
+The first thing to do after merging pork is to generate your ~/.pork directory, and put the default porkrc file in it.
+
+$ mkdir ~/.pork
+$ cp /usr/share/pork/porkrc
+
+Then, simply start pork and type /connect [screenname] to start using pork. If you are familiar with ircII the pork interface should be pretty managable. Most of what I write from here on can be found by reading through the /usr/share/pork/help dirs, and the porkrc file, but for a quick start here ya go:
+
+TAB switches between the buddy list window and the chat window when the buddy list is shown
+/blist show
+/blist hide show and hide the buddy list
+in the buddy list window, enter switches to a buddy, OR collapses/expands a group.
+
+In the chat window, enter sends.
+
+This is FAR from complete in how to use pork, to find a full listing of commands supported do
+
+$ find /usr/share/pork/help
+
+To get the usage info about a specific command simply cat it's file out of the listing generated above.
+
+Things that I discovered: pork has a hard time syncing LARGE buddy lists on first connect. If you find that not all of your buddy list is downloaded from the server, you can actually use gaim to sync your list, and then copy that list verbatim from ~/.gaim/[screenname].0.blist to ~/.pork/[screenname]/buddy_list and restart pork to get your whole buddy list. Note that gaim uses all caps for the [screenname] and pork uses all lowercase.
+
+I hope this little document helps you get started using pork quickly, enjoy!
diff --git a/net-im/pork/files/digest-pork-0.3.0 b/net-im/pork/files/digest-pork-0.3.0
new file mode 100644
index 000000000000..9925ebb99cc0
--- /dev/null
+++ b/net-im/pork/files/digest-pork-0.3.0
@@ -0,0 +1 @@
+MD5 ffafe7b2a0f99c5fd66f60786a415b05 pork-0.3.0.tar.gz 341832
diff --git a/net-im/pork/pork-0.3.0.ebuild b/net-im/pork/pork-0.3.0.ebuild
new file mode 100644
index 000000000000..b51e8d96b8be
--- /dev/null
+++ b/net-im/pork/pork-0.3.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/pork/pork-0.3.0.ebuild,v 1.1 2003/01/13 17:34:33 lostlogic Exp $
+
+IUSE=""
+
+SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz"
+DESCRIPTION="Console based AIM client that looks like ircII"
+HOMEPAGE="http://dev.ojnk.net/"
+LICENSE="GPLv2"
+
+KEYWORDS="~x86"
+SLOT="0"
+DEPEND="sys-devel/perl
+ sys-libs/ncurses"
+
+src_install() {
+ einstall
+
+ dodoc ${FILESDIR}/README.gentoo-${PV}
+
+ doman doc/pork.1
+ insinto /usr/share/pork/examples
+ doins examples/blist.txt
+
+ dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README STYLE TODO
+}
+
+pkg_postinst() {
+ einfo "Please read /usr/share/doc/${PN}-${PVR} for quickstart info."
+}