diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-08-03 06:49:58 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-08-03 06:49:58 +0000 |
commit | 8b6dad2efd740371a66991b8f15c44c8c0b2ef77 (patch) | |
tree | 49f932f1ed2cfbbb69ddb3acec3025799de905d4 /comms | |
parent | 6717aab7f76b779fe6a65b9c1842c106362d0fac (diff) |
Notes
Diffstat (limited to 'comms')
-rw-r--r-- | comms/Makefile | 1 | ||||
-rw-r--r-- | comms/ruby-serialport/Makefile | 51 | ||||
-rw-r--r-- | comms/ruby-serialport/distinfo | 2 | ||||
-rw-r--r-- | comms/ruby-serialport/files/patch-ext::impl::posix_serialport.c | 20 | ||||
-rw-r--r-- | comms/ruby-serialport/files/patch-ext::serialport.c | 42 | ||||
-rw-r--r-- | comms/ruby-serialport/pkg-descr | 5 | ||||
-rw-r--r-- | comms/ruby-serialport/pkg-plist | 6 |
7 files changed, 0 insertions, 127 deletions
diff --git a/comms/Makefile b/comms/Makefile index a18bde11fd5e..3cd38cbb08ac 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -117,7 +117,6 @@ SUBDIR += qrq SUBDIR += qsstv SUBDIR += remserial - SUBDIR += ruby-serialport SUBDIR += rubygem-callsign SUBDIR += rubygem-ruby-termios SUBDIR += rxtx diff --git a/comms/ruby-serialport/Makefile b/comms/ruby-serialport/Makefile deleted file mode 100644 index fabc367ea99c..000000000000 --- a/comms/ruby-serialport/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: Ruby/SerialPort -# Date created: 21 February 2003 -# Whom: Akinori MUSHA aka knu <knu@idaemons.org> -# -# $FreeBSD$ -# - -PORTNAME= serialport -PORTVERSION= 0.7.0 -PORTREVISION= 1 -CATEGORIES= comms ruby -MASTER_SITES= RF -MASTER_SITE_SUBDIR= ruby-${PORTNAME} -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ruby-${PORTNAME}-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= ruby@FreeBSD.org -COMMENT= A Ruby library to communicate via the RS232 port - -DEPRECATED= Doesn't work with Ruby 1.9 -EXPIRATION_DATE= 2011-08-03 - -USE_RUBY= yes -USE_RUBY_EXTCONF= yes -RUBY_EXTCONF= ext/extconf.rb - -INSTALL_TARGET= site-install - -DOCS= ChangeLog README -EXAMPLES= examples/*.rb - -post-install: -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${RUBY_MODEXAMPLESDIR} -.for f in ${EXAMPLES} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/ -.endfor -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${RUBY_MODDOCDIR} -.for f in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ -.endfor -.endif - -.include <bsd.port.pre.mk> -.if ${RUBY_VER} == 1.9 -BROKEN= does not build with ruby 1.9 -.endif -.include <bsd.port.post.mk> diff --git a/comms/ruby-serialport/distinfo b/comms/ruby-serialport/distinfo deleted file mode 100644 index 832ab5c5b779..000000000000 --- a/comms/ruby-serialport/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ruby/ruby-serialport-0.7.0.tar.gz) = f56b3505b357f0f72ed13ff65f264905ebb746cd2a0cb6e2052c7722dc6d6015 -SIZE (ruby/ruby-serialport-0.7.0.tar.gz) = 17722 diff --git a/comms/ruby-serialport/files/patch-ext::impl::posix_serialport.c b/comms/ruby-serialport/files/patch-ext::impl::posix_serialport.c deleted file mode 100644 index 5cfae2d38cc3..000000000000 --- a/comms/ruby-serialport/files/patch-ext::impl::posix_serialport.c +++ /dev/null @@ -1,20 +0,0 @@ ---- ext/impl/posix_serialport.c.orig 2009-07-30 11:59:13.000000000 +0400 -+++ ext/impl/posix_serialport.c 2009-07-30 12:07:49.000000000 +0400 -@@ -568,7 +568,7 @@ - return Qnil; - } - --static void get_line_signals_helper_impl(obj, ls) -+static void get_line_signals_helper(obj, ls) - VALUE obj; - struct line_signals *ls; - { -@@ -589,7 +589,7 @@ - ls->ri = (status & TIOCM_RI ? 1 : 0); - } - --static VALUE set_signal_impl(obj, val, sig) -+static VALUE set_signal(obj, val, sig) - VALUE obj,val; - int sig; - { diff --git a/comms/ruby-serialport/files/patch-ext::serialport.c b/comms/ruby-serialport/files/patch-ext::serialport.c deleted file mode 100644 index 7c627cf6b111..000000000000 --- a/comms/ruby-serialport/files/patch-ext::serialport.c +++ /dev/null @@ -1,42 +0,0 @@ ---- ext/serialport.c.orig 2009-07-30 12:57:44.000000000 +0400 -+++ ext/serialport.c 2009-07-30 13:00:20.000000000 +0400 -@@ -126,6 +126,7 @@ - * Set the state (0 or 1) of the DTR line - */ - static VALUE sp_set_dtr(self, val) -+ VALUE self, val; - { - return sp_set_dtr_impl(self, val); - } -@@ -138,6 +139,7 @@ - * supported. - */ - static VALUE sp_set_flow_control(self, val) -+ VALUE self, val; - { - return sp_set_flow_control_impl(self, val); - } -@@ -153,6 +155,7 @@ - * Note: Read timeouts don't mix well with multi-threading. - */ - static VALUE sp_set_read_timeout(self, val) -+ VALUE self, val; - { - return sp_set_read_timeout_impl(self, val); - } -@@ -161,6 +164,7 @@ - * Set the state (0 or 1) of the RTS line - */ - static VALUE sp_set_rts(self, val) -+ VALUE self, val; - { - return sp_set_rts_impl(self, val); - } -@@ -171,6 +175,7 @@ - * Note: Under Posix, write timeouts are not implemented. - */ - static VALUE sp_set_write_timeout(self, val) -+ VALUE self, val; - { - return sp_set_write_timeout_impl(self, val); - } diff --git a/comms/ruby-serialport/pkg-descr b/comms/ruby-serialport/pkg-descr deleted file mode 100644 index 7ef215167265..000000000000 --- a/comms/ruby-serialport/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Ruby/SerialPort is a Ruby library that allows you to communicate via -the RS232 port. - -Author: Guillaume Pierronnet <moumar@netcourrier.com> -WWW: http://ruby-serialport.rubyforge.org/ diff --git a/comms/ruby-serialport/pkg-plist b/comms/ruby-serialport/pkg-plist deleted file mode 100644 index bbc30ce2e742..000000000000 --- a/comms/ruby-serialport/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -%%RUBY_SITEARCHLIBDIR%%/serialport.so -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/miniterm.rb -%%PORTEXAMPLES%%@dirrm %%RUBY_MODEXAMPLESDIR%% -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README -%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% |