diff options
author | Rene Ladan <rene@FreeBSD.org> | 2014-02-25 19:32:51 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2014-02-25 19:32:51 +0000 |
commit | a601e2fb0809f720b17fda2c633129bde5641a1b (patch) | |
tree | 67f5e797bcd6deed883cdf5b34e98fb02c7ba883 | |
parent | 84acf4957d4705e397be354b5a785e2ba7133575 (diff) | |
download | ports-a601e2fb0809f720b17fda2c633129bde5641a1b.tar.gz ports-a601e2fb0809f720b17fda2c633129bde5641a1b.zip |
Notes
26 files changed, 5 insertions, 412 deletions
@@ -5479,3 +5479,8 @@ x11-toolkits/flvw||2014-02-24|Abandonware textproc/p5-XML-Xerces||2014-02-24|Depend on a non supported version of xerces-c x11-toolkits/fl_editor||2014-02-24|Abandonware, buggy rendering and not stage friendly x11-toolkits/gtkunique|x11-toolkits/unique|2014-02-24|Superseeded by x11-toolkits/unique +japanese/ruby-man||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained +lang/ruby-programmingruby||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained +lang/ruby-man||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained +lang/ruby-usersguide||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained +graphics/wmgrabimage||2014-02-25|Has expired: No more public distfiles diff --git a/graphics/Makefile b/graphics/Makefile index 033f2691c840..14e8777ebadd 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -1030,7 +1030,6 @@ SUBDIR += whirlgif SUBDIR += white_dune SUBDIR += wings - SUBDIR += wmgrabimage SUBDIR += wmicons SUBDIR += wxsvg SUBDIR += xaos diff --git a/graphics/wmgrabimage/Makefile b/graphics/wmgrabimage/Makefile deleted file mode 100644 index b2e607456887..000000000000 --- a/graphics/wmgrabimage/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# Created by: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru> -# $FreeBSD$ - -PORTNAME= wmGrabImage -PORTVERSION= 0.72 -PORTREVISION= 7 -CATEGORIES= graphics windowmaker -MASTER_SITES= http://dockapps.org/files/12/19/ -EXTRACT_SUFX= .tgz - -MAINTAINER= sascha@root-login.org -COMMENT= Monitor your favorite web image - -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2014-02-25 - -RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick - -WRKSRC= ${WRKDIR}/${DISTNAME}/wmGrabImage - -USE_XORG= xpm - -MAN1= wmGrabImage.1 - -NO_STAGE= yes -.include <bsd.port.mk> diff --git a/graphics/wmgrabimage/distinfo b/graphics/wmgrabimage/distinfo deleted file mode 100644 index 48ecfa3a6052..000000000000 --- a/graphics/wmgrabimage/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (wmGrabImage-0.72.tgz) = 06d7511c02e870700880efaee260afcce97f5f59209dcd0471fdb1a43f23d22c -SIZE (wmGrabImage-0.72.tgz) = 19902 diff --git a/graphics/wmgrabimage/files/patch-GrabImage b/graphics/wmgrabimage/files/patch-GrabImage deleted file mode 100644 index 14be92bfee27..000000000000 --- a/graphics/wmgrabimage/files/patch-GrabImage +++ /dev/null @@ -1,14 +0,0 @@ ---- GrabImage.orig Sat Mar 23 14:37:54 2002 -+++ GrabImage Sat Mar 23 14:38:23 2002 -@@ -61,9 +61,9 @@ - - if (! ($Geometry eq "") ) { - system "convert -crop $Geometry $home/.wmGrabImage/${ImageName} $home/.wmGrabImage/${ImageName}.tmp.gif" ; -- system "convert -geom 54x54 $home/.wmGrabImage/${ImageName}.tmp.gif ${home}/.wmGrabImage/${ImageName}.tmp.xpm"; -+ system "convert -geometry 54x54 $home/.wmGrabImage/${ImageName}.tmp.gif ${home}/.wmGrabImage/${ImageName}.tmp.xpm"; - } else { -- system "convert -geom 54x54 $home/.wmGrabImage/${ImageName} ${home}/.wmGrabImage/${ImageName}.tmp.xpm"; -+ system "convert -geometry 54x54 $home/.wmGrabImage/${ImageName} ${home}/.wmGrabImage/${ImageName}.tmp.xpm"; - } - system "cat ${home}/.wmGrabImage/${ImageName}.tmp.xpm | sed -e \"s/Transparent/Black/\" \> ${home}/.wmGrabImage/${ImageName}.xpm; rm ${home}/.wmGrabImage/${ImageName}.tmp.xpm"; - diff --git a/graphics/wmgrabimage/files/patch-aa b/graphics/wmgrabimage/files/patch-aa deleted file mode 100644 index e81879496f1d..000000000000 --- a/graphics/wmgrabimage/files/patch-aa +++ /dev/null @@ -1,42 +0,0 @@ ---- Makefile.orig Sun May 27 16:02:18 2001 -+++ Makefile Fri Jul 27 17:06:11 2001 -@@ -1,8 +1,6 @@ --CC = gcc --CFLAGS = -O2 -Wall --INCDIR = -I/usr/X11R6/include/X11 --DESTDIR= /usr/X11R6 --LIBDIR = -L/usr/X11R6/lib -+INCDIR = -I${LOCALBASE}/include -+DESTDIR= ${PREFIX} -+LIBDIR = -L${LOCALBASE}/lib - # for linux - LIBS = -lXpm -lX11 -lXext - # for Solaris -@@ -12,14 +10,14 @@ - - - .c.o: -- $(CC) $(CFLAGS) -D$(shell echo `uname -s`) -c $< -o $*.o $(INCDIR) -+ $(CC) $(CFLAGS) -D$(OPSYS) -c $< -o $@ $(INCDIR) - - - all: wmGrabImage.o wmGrabImage - - wmGrabImage.o: wmGrabImage_master.xpm wmGrabImage_mask.xbm - wmGrabImage: $(OBJS) -- $(CC) $(CFLAGS) $(SYSTEM) -o wmGrabImage $^ $(INCDIR) $(LIBDIR) $(LIBS) -+ $(CC) $(CFLAGS) $(SYSTEM) -o wmGrabImage $(OBJS) $(LIBDIR) $(LIBS) - - clean: - for i in $(OBJS) ; do \ -@@ -28,7 +26,7 @@ - rm -f wmGrabImage - - install:: wmGrabImage -- install -s -m 0755 wmGrabImage $(DESTDIR)/bin -- install -m 0755 GrabImage $(DESTDIR)/bin -- install -m 0644 wmGrabImage.1 $(DESTDIR)/man/man1 -+ ${BSD_INSTALL_PROGRAM} wmGrabImage $(DESTDIR)/bin -+ ${BSD_INSTALL_SCRIPT} GrabImage $(DESTDIR)/bin -+ ${BSD_INSTALL_MAN} wmGrabImage.1 $(DESTDIR)/man/man1 - diff --git a/graphics/wmgrabimage/files/patch-ab b/graphics/wmgrabimage/files/patch-ab deleted file mode 100644 index d7f451a44fde..000000000000 --- a/graphics/wmgrabimage/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- GrabImage.orig Thu Nov 4 01:44:43 1999 -+++ GrabImage Thu Nov 4 01:46:12 1999 -@@ -52,7 +52,7 @@ - # I think some of these wget command line options may cause problems - # for some people? Dont know why... - # -- $GrabCmd = "wget --proxy=off --passive-ftp --tries 0 -q -O $home/.wmGrabImage/$ImageName $URL"; -+ $GrabCmd = "fetch -p -q -o $home/.wmGrabImage/$ImageName $URL"; - system "$GrabCmd"; - - } diff --git a/graphics/wmgrabimage/files/patch-ac b/graphics/wmgrabimage/files/patch-ac deleted file mode 100644 index bea27352d3d9..000000000000 --- a/graphics/wmgrabimage/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- wmGrabImage.1.orig Thu Nov 4 02:20:22 1999 -+++ wmGrabImage.1 Thu Nov 4 02:20:58 1999 -@@ -47,7 +47,7 @@ - The original sized image and the thumbnail XPM image are both stored in - ~/.wmGrabImage/ which gets created if it doesnt already exist. - .SH SEE ALSO --wget and the ImageMagick convert utility. -+fetch and the ImageMagick convert utility. - .SH BUGS - Who knows? -- its still Beta though. (Let me know if you find any). Oldish - versions of the ImageMagick convert utility have a memory leak -- if you have diff --git a/graphics/wmgrabimage/pkg-descr b/graphics/wmgrabimage/pkg-descr deleted file mode 100644 index 6fae9dd24243..000000000000 --- a/graphics/wmgrabimage/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -wmGrabImage is a Window Maker DockApp that maintains a small thumbnail copy of -your favorite image from the WWW. The image to monitor is specified via the -"-url <Image URL>" command-line option and it gets updated approximately every -5 minutes. The update interval can be overridden via the "-delay <Time>" -command-line option (Time is in seconds). - -Each of the three mouse buttons can be double clicked with the -following effects: - -Left Mouse: -Brings up the full-sized image in xv. - -Middle Mouse: -Sends a URL (specified via the -http <URL> command-line option) to an already -running netscape process or in a new netscape process if there arent any -running. - -Right Mouse: -Updates the image immediately. - -Author: Michael G. Henderson <mghenderson@lanl.gov> -WWW: http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml diff --git a/graphics/wmgrabimage/pkg-plist b/graphics/wmgrabimage/pkg-plist deleted file mode 100644 index 6fc7bc4ec571..000000000000 --- a/graphics/wmgrabimage/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -bin/GrabImage -bin/wmGrabImage diff --git a/japanese/Makefile b/japanese/Makefile index adf6e3707bb5..a5fddc3c99cd 100644 --- a/japanese/Makefile +++ b/japanese/Makefile @@ -262,7 +262,6 @@ SUBDIR += rogue_s SUBDIR += rskkserv SUBDIR += ruby-eb - SUBDIR += ruby-man SUBDIR += ruby-mecab SUBDIR += ruby-ming SUBDIR += ruby-romkan diff --git a/japanese/ruby-man/Makefile b/japanese/ruby-man/Makefile deleted file mode 100644 index c2500da73c8b..000000000000 --- a/japanese/ruby-man/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# Created by: Akinori MUSHA aka knu <knu@idaemons.org> -# $FreeBSD$ - -MASTERDIR= ${.CURDIR}/../../lang/ruby-man - -CATEGORIES= japanese - -MAINTAINER= ruby@FreeBSD.org -COMMENT= Ruby reference manual (Japanese version), in HTML format - -DISTINFO_FILE= ${.CURDIR}/distinfo -PKGDIR= ${.CURDIR} - -LANGSUFFIX= -jp - -NO_STAGE= yes -.include "${MASTERDIR}/Makefile" diff --git a/japanese/ruby-man/distinfo b/japanese/ruby-man/distinfo deleted file mode 100644 index ff19282aeee6..000000000000 --- a/japanese/ruby-man/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ruby/ruby-man-1.4.6-jp.tar.gz) = a2b09675ad95e3ec01edbfcb90c34dfbf49f43f340d4335b3e208d2d16f8a3e1 -SIZE (ruby/ruby-man-1.4.6-jp.tar.gz) = 91999 diff --git a/japanese/ruby-man/pkg-descr b/japanese/ruby-man/pkg-descr deleted file mode 100644 index a566c275f7e1..000000000000 --- a/japanese/ruby-man/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Ruby is the interpreted scripting language for quick and easy -object-oriented programming. It has many features to process text -files and to do system management tasks. This package contains -Japanese version of the Ruby reference manual in HTML format. - -WWW: http://www.ruby-lang.org/ diff --git a/japanese/ruby-man/pkg-plist b/japanese/ruby-man/pkg-plist deleted file mode 100644 index b1f58c8b7aaf..000000000000 --- a/japanese/ruby-man/pkg-plist +++ /dev/null @@ -1,56 +0,0 @@ -%%RUBY_MODDOCDIR%%/Array.html -%%RUBY_MODDOCDIR%%/Bignum.html -%%RUBY_MODDOCDIR%%/Class.html -%%RUBY_MODDOCDIR%%/Compar.html -%%RUBY_MODDOCDIR%%/Cont.html -%%RUBY_MODDOCDIR%%/Data.html -%%RUBY_MODDOCDIR%%/Dir.html -%%RUBY_MODDOCDIR%%/ENV.html -%%RUBY_MODDOCDIR%%/Enum.html -%%RUBY_MODDOCDIR%%/Errno.html -%%RUBY_MODDOCDIR%%/Exception.html -%%RUBY_MODDOCDIR%%/File.html -%%RUBY_MODDOCDIR%%/FileTest.html -%%RUBY_MODDOCDIR%%/Fixnum.html -%%RUBY_MODDOCDIR%%/Float.html -%%RUBY_MODDOCDIR%%/GC.html -%%RUBY_MODDOCDIR%%/Hash.html -%%RUBY_MODDOCDIR%%/IO.html -%%RUBY_MODDOCDIR%%/Integer.html -%%RUBY_MODDOCDIR%%/Kernel.html -%%RUBY_MODDOCDIR%%/Marshal.html -%%RUBY_MODDOCDIR%%/Match.html -%%RUBY_MODDOCDIR%%/Math.html -%%RUBY_MODDOCDIR%%/Module.html -%%RUBY_MODDOCDIR%%/NilClass.html -%%RUBY_MODDOCDIR%%/Numeric.html -%%RUBY_MODDOCDIR%%/ObSpace.html -%%RUBY_MODDOCDIR%%/Object.html -%%RUBY_MODDOCDIR%%/Prec.html -%%RUBY_MODDOCDIR%%/Proc.html -%%RUBY_MODDOCDIR%%/Process.html -%%RUBY_MODDOCDIR%%/Range.html -%%RUBY_MODDOCDIR%%/Regexp.html -%%RUBY_MODDOCDIR%%/String.html -%%RUBY_MODDOCDIR%%/Struct.html -%%RUBY_MODDOCDIR%%/Time.html -%%RUBY_MODDOCDIR%%/bundle.html -%%RUBY_MODDOCDIR%%/classes.html -%%RUBY_MODDOCDIR%%/dbm.html -%%RUBY_MODDOCDIR%%/ftplib.html -%%RUBY_MODDOCDIR%%/function.html -%%RUBY_MODDOCDIR%%/getopts.html -%%RUBY_MODDOCDIR%%/glossary.html -%%RUBY_MODDOCDIR%%/index.html -%%RUBY_MODDOCDIR%%/kconv.html -%%RUBY_MODDOCDIR%%/options.html -%%RUBY_MODDOCDIR%%/parsearg.html -%%RUBY_MODDOCDIR%%/preface.html -%%RUBY_MODDOCDIR%%/socket.html -%%RUBY_MODDOCDIR%%/syntax.html -%%RUBY_MODDOCDIR%%/template.html -%%RUBY_MODDOCDIR%%/thread.html -%%RUBY_MODDOCDIR%%/variable.html -%%RUBY_MODDOCDIR%%/yacc.html -@dirrm %%RUBY_MODDOCDIR%% -@dirrmtry %%RUBY_DOCDIR%% diff --git a/lang/Makefile b/lang/Makefile index e5e2c5389bf7..3609cecce2c0 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -294,9 +294,6 @@ SUBDIR += rscheme SUBDIR += rubinius SUBDIR += ruby-doc-stdlib - SUBDIR += ruby-man - SUBDIR += ruby-programmingruby - SUBDIR += ruby-usersguide SUBDIR += ruby19 SUBDIR += ruby20 SUBDIR += ruby21 diff --git a/lang/ruby-man/Makefile b/lang/ruby-man/Makefile deleted file mode 100644 index 401754fe176c..000000000000 --- a/lang/ruby-man/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# Created by: olgeni@uli.it -# $FreeBSD$ - -PORTNAME= ruby-man -PORTVERSION= 1.4.6 -CATEGORIES+= lang ruby -MASTER_SITES= ${MASTER_SITE_RUBY} -MASTER_SITE_SUBDIR= doc -DISTNAME= ${PORTNAME}-${PORTVERSION}${LANGSUFFIX} -DIST_SUBDIR= ruby - -MAINTAINER?= ruby@FreeBSD.org -COMMENT?= Ruby reference manual, in HTML format - -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes -RUBY_NO_RUN_DEPENDS= yes - -RUBY_MODNAME= ruby-man${LANGSUFFIX} - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R}${LANGSUFFIX} -NO_BUILD= yes -PLIST_SUB= LANGSUFFIX="${LANGSUFFIX}" - -NO_STAGE= yes - -DEPRECATED= Documents EOLd version of Ruby and unmaintained -EXPIRATION_DATE= 2014-02-25 - -do-install: - ${MKDIR} ${RUBY_MODDOCDIR} - ${INSTALL_DATA} ${WRKSRC}/*.html ${RUBY_MODDOCDIR} - -.include <bsd.port.mk> diff --git a/lang/ruby-man/distinfo b/lang/ruby-man/distinfo deleted file mode 100644 index aca35c60c136..000000000000 --- a/lang/ruby-man/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ruby/ruby-man-1.4.6.tar.gz) = 84718d74821cc9ca3f36c1612a5f7c352ef9d5d907268e8c62fddbc777c2acca -SIZE (ruby/ruby-man-1.4.6.tar.gz) = 71101 diff --git a/lang/ruby-man/pkg-descr b/lang/ruby-man/pkg-descr deleted file mode 100644 index a374e218d7e5..000000000000 --- a/lang/ruby-man/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Ruby is the interpreted scripting language for quick and easy -object-oriented programming. It has many features to process text -files and to do system management tasks. This package contains the -Ruby reference manual in HTML format. - -WWW: http://www.ruby-lang.org/ diff --git a/lang/ruby-man/pkg-plist b/lang/ruby-man/pkg-plist deleted file mode 100644 index d2ffea6f93d9..000000000000 --- a/lang/ruby-man/pkg-plist +++ /dev/null @@ -1,51 +0,0 @@ -%%RUBY_MODDOCDIR%%/Array.html -%%RUBY_MODDOCDIR%%/Bignum.html -%%RUBY_MODDOCDIR%%/Class.html -%%RUBY_MODDOCDIR%%/Compar.html -%%RUBY_MODDOCDIR%%/Data.html -%%RUBY_MODDOCDIR%%/Dir.html -%%RUBY_MODDOCDIR%%/ENV.html -%%RUBY_MODDOCDIR%%/Enum.html -%%RUBY_MODDOCDIR%%/Errno.html -%%RUBY_MODDOCDIR%%/Exception.html -%%RUBY_MODDOCDIR%%/File.html -%%RUBY_MODDOCDIR%%/FileTest.html -%%RUBY_MODDOCDIR%%/Fixnum.html -%%RUBY_MODDOCDIR%%/Float.html -%%RUBY_MODDOCDIR%%/GC.html -%%RUBY_MODDOCDIR%%/Hash.html -%%RUBY_MODDOCDIR%%/IO.html -%%RUBY_MODDOCDIR%%/Integer.html -%%RUBY_MODDOCDIR%%/Kernel.html -%%RUBY_MODDOCDIR%%/Marshal.html -%%RUBY_MODDOCDIR%%/Match.html -%%RUBY_MODDOCDIR%%/Math.html -%%RUBY_MODDOCDIR%%/Module.html -%%RUBY_MODDOCDIR%%/NilClass.html -%%RUBY_MODDOCDIR%%/Numeric.html -%%RUBY_MODDOCDIR%%/ObSpace.html -%%RUBY_MODDOCDIR%%/Object.html -%%RUBY_MODDOCDIR%%/Prec.html -%%RUBY_MODDOCDIR%%/Proc.html -%%RUBY_MODDOCDIR%%/Process.html -%%RUBY_MODDOCDIR%%/Range.html -%%RUBY_MODDOCDIR%%/Regexp.html -%%RUBY_MODDOCDIR%%/String.html -%%RUBY_MODDOCDIR%%/Struct.html -%%RUBY_MODDOCDIR%%/Time.html -%%RUBY_MODDOCDIR%%/bundle.html -%%RUBY_MODDOCDIR%%/classes.html -%%RUBY_MODDOCDIR%%/dbm.html -%%RUBY_MODDOCDIR%%/function.html -%%RUBY_MODDOCDIR%%/glossary.html -%%RUBY_MODDOCDIR%%/index.html -%%RUBY_MODDOCDIR%%/kconv.html -%%RUBY_MODDOCDIR%%/options.html -%%RUBY_MODDOCDIR%%/preface.html -%%RUBY_MODDOCDIR%%/socket.html -%%RUBY_MODDOCDIR%%/syntax.html -%%RUBY_MODDOCDIR%%/thread.html -%%RUBY_MODDOCDIR%%/variable.html -%%RUBY_MODDOCDIR%%/yacc.html -@dirrm %%RUBY_MODDOCDIR%% -@dirrmtry %%RUBY_DOCDIR%% diff --git a/lang/ruby-programmingruby/Makefile b/lang/ruby-programmingruby/Makefile deleted file mode 100644 index ced10712dcbb..000000000000 --- a/lang/ruby-programmingruby/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# Created by: Akinori MUSHA aka knu <knu@idaemons.org> -# $FreeBSD$ - -PORTNAME= programmingruby -PORTVERSION= 0.4 -PORTREVISION= 2 -CATEGORIES= lang ruby -MASTER_SITES= http://dev.rubycentral.com/downloads/files/ -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ProgrammingRuby-${PORTVERSION} -EXTRACT_SUFX= .tgz -DIST_SUBDIR= ruby -EXTRACT_ONLY= #empty - -MAINTAINER= ruby@FreeBSD.org -COMMENT= The source of the Programming Ruby ("pick-axe") book in XML and HTML - -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes -RUBY_NO_RUN_DEPENDS= yes - -NO_BUILD= yes -NO_WRKSUBDIR= yes -DOCSDIR= ${RUBY_MODDOCDIR} - -NO_STAGE= yes - -DEPRECATED= Documents EOLd version of Ruby and unmaintained -EXPIRATION_DATE= 2014-02-25 - -do-install: - ${MKDIR} ${RUBY_MODDOCDIR} - @${TAR} -xzf ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} -C ${RUBY_MODDOCDIR} - @${FIND} ${RUBY_MODDOCDIR}/ -type f -exec ${CHMOD} ${SHAREMODE} {} \; - @${FIND} ${RUBY_MODDOCDIR}/ -type d -exec ${CHMOD} 755 {} \; - @${FIND} ${RUBY_MODDOCDIR}/ -exec ${CHOWN} ${SHAREOWN}:${SHAREGRP} {} \; - @${FIND} -d ${RUBY_MODDOCDIR}/ -type f | \ - ${SED} -e 's,^${PREFIX}/,,' >> ${TMPPLIST} - @${FIND} -d ${RUBY_MODDOCDIR}/ -type d | \ - ${SED} -e 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir ${RUBY_DOCDIR} 2>/dev/null || true" \ - >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/lang/ruby-programmingruby/distinfo b/lang/ruby-programmingruby/distinfo deleted file mode 100644 index 4891d9b1b89f..000000000000 --- a/lang/ruby-programmingruby/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ruby/ProgrammingRuby-0.4.tgz) = c25cbb902e2bc6b29a8fa48ca3ef583e168f253f6e6b1160ca6853cbb894db84 -SIZE (ruby/ProgrammingRuby-0.4.tgz) = 803146 diff --git a/lang/ruby-programmingruby/pkg-descr b/lang/ruby-programmingruby/pkg-descr deleted file mode 100644 index bd75fd45f126..000000000000 --- a/lang/ruby-programmingruby/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Programming Ruby--The Book - -This is the source of the Programming Ruby book as a set of XML and -HTML files. The HTML files are the ones used at RubyCentral. - -It is released under the Open Publication License. - -Authors: The Pragmatic Programmers, LLC -WWW: http://www.pragmaticprogrammer.com/titles/ruby/index.html diff --git a/lang/ruby-usersguide/Makefile b/lang/ruby-usersguide/Makefile deleted file mode 100644 index 0506e8a66aff..000000000000 --- a/lang/ruby-usersguide/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# Created by: Akinori MUSHA aka knu <knu@idaemons.org> -# $FreeBSD$ - -PORTNAME= usersguide -PORTVERSION= 20051121 -PORTREVISION= 1 -CATEGORIES= lang ruby -MASTER_SITES= http://www.rubyist.net/~slagell/ruby/ \ - http://mbsd.msk.ru/dist/ -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ruby-uguide-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= ruby@FreeBSD.org -COMMENT= Ruby users guide, in HTML format - -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes -RUBY_NO_RUN_DEPENDS= yes - -WRKSRC= ${WRKDIR}/rg -NO_BUILD= yes -DOCSDIR= ${RUBY_MODDOCDIR} - -NO_STAGE= yes - -DEPRECATED= Documents EOLd version of Ruby and unmaintained -EXPIRATION_DATE= 2014-02-25 - -do-install: - ${MKDIR} ${RUBY_MODDOCDIR} - ${INSTALL_DATA} ${WRKSRC}/* ${RUBY_MODDOCDIR} - @${FIND} -d ${RUBY_MODDOCDIR}/ -type f | \ - ${SED} -e 's,^${PREFIX}/,,' >> ${TMPPLIST} - @${FIND} -d ${RUBY_MODDOCDIR}/ -type d | \ - ${SED} -e 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir ${RUBY_DOCDIR} 2>/dev/null || true" \ - >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/lang/ruby-usersguide/distinfo b/lang/ruby-usersguide/distinfo deleted file mode 100644 index 79fd439958ad..000000000000 --- a/lang/ruby-usersguide/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ruby/ruby-uguide-20051121.tar.gz) = 179384d4edff762e4a7777a16002731e2b6c1ab22fd28eed27c2b5afe707f4f9 -SIZE (ruby/ruby-uguide-20051121.tar.gz) = 50528 diff --git a/lang/ruby-usersguide/pkg-descr b/lang/ruby-usersguide/pkg-descr deleted file mode 100644 index 1553520f5940..000000000000 --- a/lang/ruby-usersguide/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Ruby is the interpreted scripting language for quick and easy -object-oriented programming. It has many features to process text -files and to do system management tasks. This package contains the -Ruby users guide in HTML format. - -WWW: http://www.ruby-lang.org/ |