summaryrefslogtreecommitdiff
path: root/irc/xchat-ruby
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2018-04-17 20:39:37 +0000
committerRene Ladan <rene@FreeBSD.org>2018-04-17 20:39:37 +0000
commit16b33f0ee7703bf2f0dda0ddbaede948f9d74de8 (patch)
treec3db24bc664682a54a80e0eec3e5785057edf4d8 /irc/xchat-ruby
parentirc/py-fishcrypt: remove optional dependency on expired irc/xchat (diff)
Remove expired port irc/xchat and plugins:
2018-04-15 irc/xchat: Unmaintained upstream, use irc/hexchat instead irc/xchat-fish irc/xchat-mircryption irc/xchat-ruby
Notes
Notes: svn path=/head/; revision=467656
Diffstat (limited to 'irc/xchat-ruby')
-rw-r--r--irc/xchat-ruby/Makefile51
-rw-r--r--irc/xchat-ruby/distinfo2
-rw-r--r--irc/xchat-ruby/files/patch-Makefile11
-rw-r--r--irc/xchat-ruby/files/rubypath.rb12
-rw-r--r--irc/xchat-ruby/pkg-descr9
5 files changed, 0 insertions, 85 deletions
diff --git a/irc/xchat-ruby/Makefile b/irc/xchat-ruby/Makefile
deleted file mode 100644
index e2fb692c747e..000000000000
--- a/irc/xchat-ruby/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# $FreeBSD$
-
-PORTNAME= ruby
-PORTVERSION= 1.2
-PORTREVISION= 4
-CATEGORIES= irc ruby
-MASTER_SITES= SF/xchat-${PORTNAME}/xchat-${PORTNAME}/${PORTVERSION}
-PKGNAMEPREFIX= xchat-
-DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}-src
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Ruby-scripting plugin for XChat
-
-RUN_DEPENDS= xchat:irc/xchat
-LIB_DEPENDS= lib${RUBY_NAME}.so:${RUBY_PORT}
-
-LICENSE= GPLv2
-
-USE_RUBY= yes
-WRKSRC= ${WRKDIR}/${DISTNAME}/src
-DOCSRC= ${WRKDIR}/${DISTNAME}
-DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
-EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
-PLIST_FILES= lib/xchat/plugins/xchat-ruby.so
-PORTDOCS= README ChangeLog
-PORTEXAMPLES= embedify.rb TimerSample.rb JFilter.rb JBanner.rb
-
-OPTIONS_DEFINE= DOCS EXAMPLES
-
-post-patch:
- ${REINPLACE_CMD} \
- -e 's|^RUBY=.*|RUBY=${RUBY}|' \
- -e 's|-lruby$$|-l${RUBY_NAME}|' \
- -e 's|^ARCHDIR=.*|ARCHDIR=`$$(RUBY) ${FILESDIR}/rubypath.rb`|' \
- -e '/^CC=/s|gcc|${CC}|' \
- -e 's|^CFLAGS=|CFLAGS+=|' \
- ${WRKSRC}/Makefile
-
-do-install:
- ${MKDIR} ${STAGEDIR}${PREFIX}/lib/xchat/plugins
- ${INSTALL_PROGRAM} ${WRKSRC}/xchat-ruby.so \
- ${STAGEDIR}${PREFIX}/lib/xchat/plugins/
-
- ${MKDIR} ${STAGEDIR}${DOCSDIR}
- ${INSTALL_DATA} ${PORTDOCS:S,^,${DOCSRC}/,} ${STAGEDIR}${DOCSDIR}/
-
- ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
- ${INSTALL_DATA} ${PORTEXAMPLES:S,^,${DOCSRC}/*/,} \
- ${STAGEDIR}${EXAMPLESDIR}/
-
-.include <bsd.port.mk>
diff --git a/irc/xchat-ruby/distinfo b/irc/xchat-ruby/distinfo
deleted file mode 100644
index c03e78d317d6..000000000000
--- a/irc/xchat-ruby/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (xchat-ruby-1.2-src.tar.gz) = fc55f48bf72845a2e1750b76524d31813779e1dc8cc7638312a0e68a8efded85
-SIZE (xchat-ruby-1.2-src.tar.gz) = 31129
diff --git a/irc/xchat-ruby/files/patch-Makefile b/irc/xchat-ruby/files/patch-Makefile
deleted file mode 100644
index da7319bd6e34..000000000000
--- a/irc/xchat-ruby/files/patch-Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.orig 2007-04-26 13:16:32.000000000 +0200
-+++ Makefile 2012-03-16 12:31:27.000000000 +0100
-@@ -21,7 +21,7 @@
- all: $(SO_FILE)
-
- $(SO_FILE): xchat-ruby.o xchat-ruby-plugin.h
-- $(CC) -L$(ARCHDIR) $(CFLAGS) -shared -o $(SO_FILE) xchat-ruby.o -lruby
-+ $(CC) -L$(PREFIX)/lib $(CFLAGS) -shared -o $(SO_FILE) xchat-ruby.o -lruby
-
- install: $(SO_FILE)
- mkdir -p $(XCHAT_DIR)
diff --git a/irc/xchat-ruby/files/rubypath.rb b/irc/xchat-ruby/files/rubypath.rb
deleted file mode 100644
index 783d1d4a382a..000000000000
--- a/irc/xchat-ruby/files/rubypath.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/local/bin/ruby
-require "rbconfig"
-if RbConfig::CONFIG[ 'rubyhdrdir' ].nil?
- puts RbConfig::CONFIG['archdir']
-else
- print RbConfig::CONFIG['rubyhdrdir']
- print " -I"
- print RbConfig::CONFIG['rubyhdrdir']
- print "/"
- puts RbConfig::CONFIG['sitearch']
-end
-# eof
diff --git a/irc/xchat-ruby/pkg-descr b/irc/xchat-ruby/pkg-descr
deleted file mode 100644
index edb786e04edd..000000000000
--- a/irc/xchat-ruby/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-For those of us that prefer the Ruby programming language above all others,
-the XChat-Ruby Plugin now allows X-Chat plugins to written in Ruby,
-in addition to the other supported scripting interfaces. This means that,
-for the first time, you can use a purely object-oriented language
-in which to write X-Chat plugins.
-
-LICENSE: GPL2 or later
-
-WWW: http://xchat-ruby.sourceforge.net/