summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Sherwood2007-04-30 20:38:09 +0500
committerGeorge Sherwood2007-04-30 20:38:09 +0500
commitaa037cdc0c809c632ebab06888136fd542610825 (patch)
tree44bc15aedd8c1eb6a7578deb3625eb1b3564cc5c
parentfaaf9e20550656a6b2a7ae19da94ed4f3e6e6ce3 (diff)
pidgin: Added new spell. This is the new gaim. Currently no plugins
work with it, so I will leave the old version of gaim. Eventully gaim will be replaced by pidgin.
-rw-r--r--ChangeLog3
-rwxr-xr-xchat-im/pidgin/BUILD5
-rwxr-xr-xchat-im/pidgin/DEPENDS81
-rwxr-xr-xchat-im/pidgin/DETAILS26
-rw-r--r--chat-im/pidgin/HISTORY3
-rwxr-xr-xchat-im/pidgin/PREPARE1
-rwxr-xr-xchat-im/pidgin/PRE_BUILD6
-rw-r--r--chat-im/pidgin/pidgin-2.0.0beta7.tar.bz2.sigbin0 -> 280 bytes
8 files changed, 125 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 217fd4d843..12d162339c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2007-04-30 George Sherwood <george@beernabeer.com>
+ * chat-im/pidgin: new spell, for the newly renamed gaim
+
2007-04-29 George Sherwood <george@beernabeer.com>
* editors/mp: new spell, a programmers editor
diff --git a/chat-im/pidgin/BUILD b/chat-im/pidgin/BUILD
new file mode 100755
index 0000000000..b3a3c2c818
--- /dev/null
+++ b/chat-im/pidgin/BUILD
@@ -0,0 +1,5 @@
+### had to cook up some pkg-config files for nss and nspr
+CFLAGS="$CFLAGS -I${TRACK_ROOT}/usr/X11R6/include"
+export PKG_CONFIG_PATH="${TRACK_ROOT}/usr/include/nss:${TRACK_ROOT}/usr/include/nspr" &&
+default_build &&
+cd $SOURCE_DIRECTORY
diff --git a/chat-im/pidgin/DEPENDS b/chat-im/pidgin/DEPENDS
new file mode 100755
index 0000000000..78619e5d6d
--- /dev/null
+++ b/chat-im/pidgin/DEPENDS
@@ -0,0 +1,81 @@
+depends libxml2 &&
+depends xml-parser-expat &&
+
+if [ "$PIDGIN_CVS" == "y" ]
+then
+ depends subversion &&
+ depends intltool
+fi &&
+
+optional_depends evolution2 \
+ "--enable-gevolution" \
+ "--disable-gevolution" \
+ "for gevolution plugin" &&
+
+optional_depends gtk+2 \
+ "--enable-gtkui" \
+ "--disable-gtkui" \
+ "for GTK+ user interface" &&
+
+optional_depends ncurses \
+ "--enable-consoleui" \
+ "--disable-consoleui" \
+ "for console user interface" &&
+
+optional_depends nss \
+ "--enable-nss=yes" \
+ "--enable-nss=no" \
+ "for gaim-encryption plugin , or MSN's new protool 9" &&
+
+optional_depends gnutls \
+ "--enable-gnutls=yes" \
+ "--enable-gnutls=no" \
+ "an alternative to nss for MSN protocol SSL support" &&
+
+optional_depends audiofile \
+ "--enable-audio" \
+ "--disable-audio" \
+ "to play aiff, snd, wave, and au files" &&
+
+optional_depends gtkspell \
+ "" \
+ "--disable-gtkspell" \
+ "For spell checking" &&
+
+optional_depends startup-notification \
+ "" \
+ "--disable-startup-notification" \
+ "support for the startup-notification spec from freedesktop.org" &&
+
+optional_depends nas \
+ "--enable-nas" \
+ "--disable-nas" \
+ "for Network Audio System support" &&
+
+optional_depends perl \
+ '--enable-perl' \
+ '--disable-perl' \
+ 'for Perl scripting' &&
+
+optional_depends tcl \
+ "" \
+ "--disable-tcl" \
+ "for tcl scripting support" &&
+
+optional_depends tk \
+ "" \
+ "--disable-tk" \
+ "for tcl/tk scripting support" &&
+optional_depends mono \
+ "--enable-mono" \
+ "--disable-mono" \
+ "for Mono runtime support" &&
+optional_depends dbus \
+ "--enable-dbus" \
+ "--disable-dbus" \
+ "for DBUS support" &&
+
+optional_depends howl \
+ '' \
+ '' \
+ 'for network ZeroConf in Bonjour plugin'
diff --git a/chat-im/pidgin/DETAILS b/chat-im/pidgin/DETAILS
new file mode 100755
index 0000000000..35c5a6ab56
--- /dev/null
+++ b/chat-im/pidgin/DETAILS
@@ -0,0 +1,26 @@
+ SPELL=pidgin
+if [ "$PIDGIN_CVS" == "y" ]; then
+ VERSION=svn
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_URL[0]=svn_http://pidgin.svn.sourceforge.net/svnroot/pidgin/trunk:pidgin
+ FORCE_DOWNLOAD=1
+ SOURCE_IGNORE=volatile
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+else
+ VERSION=2.0.0beta7
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+fi
+ WEB_SITE=http://pidgin.sourceforge.net/
+ LICENSE[0]=GPL
+ DISTCC_HOSTS=
+ CCACHE=off
+ ENTERED=20011024
+ SHORT="Instant messanger client for several protocols"
+cat << EOF
+pidgin is an instant messanger client used primarly for the AIM protocol
+but has plugin support for icq, irc, yahoo, and jabber all at once
+in one interface.
+EOF
diff --git a/chat-im/pidgin/HISTORY b/chat-im/pidgin/HISTORY
new file mode 100644
index 0000000000..602ae969ce
--- /dev/null
+++ b/chat-im/pidgin/HISTORY
@@ -0,0 +1,3 @@
+2007-04-30 George Sherwood <george@beernabeer.com>
+ * DETAILS, PREPARE, DEPENDS, PRE_BUILD, BUILD:
+ Created spell from gaim spell
diff --git a/chat-im/pidgin/PREPARE b/chat-im/pidgin/PREPARE
new file mode 100755
index 0000000000..eb3dbd6f51
--- /dev/null
+++ b/chat-im/pidgin/PREPARE
@@ -0,0 +1 @@
+config_query PIDGIN_CVS "Build the subversion version?" n
diff --git a/chat-im/pidgin/PRE_BUILD b/chat-im/pidgin/PRE_BUILD
new file mode 100755
index 0000000000..fa78ec494c
--- /dev/null
+++ b/chat-im/pidgin/PRE_BUILD
@@ -0,0 +1,6 @@
+default_pre_build &&
+cd ${SOURCE_DIRECTORY} &&
+if [ "$PIDGIN_CVS" == "y" ]
+then
+ NOCONFIGURE=Y ./autogen.sh
+fi
diff --git a/chat-im/pidgin/pidgin-2.0.0beta7.tar.bz2.sig b/chat-im/pidgin/pidgin-2.0.0beta7.tar.bz2.sig
new file mode 100644
index 0000000000..9677a77509
--- /dev/null
+++ b/chat-im/pidgin/pidgin-2.0.0beta7.tar.bz2.sig
Binary files differ