Remove expired port:

2013-01-07 devel/titano: Dead upstream since 2001
This commit is contained in:
Rene Ladan 2013-01-13 22:48:52 +00:00
parent be37d2fc7b
commit 93e97ef93a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=310349
14 changed files with 1 additions and 303 deletions

1
MOVED
View file

@ -4012,3 +4012,4 @@ textproc/p5-ack|textproc/ack|2013-01-06|Not just a perl module
sysutils/syslog-ng-rc|sysutils/syslog-ng-devel|2013-01-08|No longer used by our upline, use syslog-ng-devel instead
www/openbravoerp||2013-01-12|Has expired: incompatible with ant for building
devel/lbpp||2013-01-13|Has expired: Dead upstream since 2001
devel/titano||2013-01-13|Has expired: Dead upstream since 2001

View file

@ -4218,7 +4218,6 @@
SUBDIR += tijmp
SUBDIR += tinylaf
SUBDIR += tinyq
SUBDIR += titano
SUBDIR += tkcon
SUBDIR += tkcvs
SUBDIR += tkinspect

View file

@ -1,45 +0,0 @@
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= titano
PORTVERSION= 0.0.7
PORTREVISION= 9
CATEGORIES= devel gnome
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= An IDE for GNOME desktop
DEPRECATED= Dead upstream since 2001
EXPIRATION_DATE= 2013-01-07
LIB_DEPENDS= unicode:${PORTSDIR}/devel/libunicode
USE_GNOME= gnomelibs libglade
USE_GMAKE= yes
GNU_CONFIGURE= yes
.include <bsd.port.pre.mk>
EXTRA_PATCHES+= ${FILESDIR}/gcc3-*
.if ${ARCH} == "amd64" || ${ARCH} == "sparc64"
BROKEN= Does not compile with GCC 4.2
.endif
pre-patch: .SILENT
${REINPLACE_CMD} -e 's|malloc\.h|stdlib\.h|' \
${WRKSRC}/src/scintilla/PosRegExp.cxx
${REINPLACE_CMD} -e 's|^INCLUDES.*$$|&$$(LIBGLADE_CFLAGS)|' \
${WRKSRC}/src/Makefile.in
${REINPLACE_CMD} -E 's|(POTFILES\.in )\\$$|\1--from-code=koi8-r \\|' \
${WRKSRC}/po/Makefile.in.in
# Now, take care of CC/CFLAGS
${REINPLACE_CMD} -e 's|cc -Wall -ggdb $$(OPTIMIZE)|${CC} ${CFLAGS}|' \
${WRKSRC}/src/gtkeditor/tktext-port/Makefile
${REINPLACE_CMD} -e 's|gcc|${CC} ${CFLAGS}|' \
${WRKSRC}/src/scanners/Makefile.in
${REINPLACE_CMD} -E 's|^(CXXFLAGS).*$$|\1 += -DGTK -DSCI_LEXER|' \
${WRKSRC}/src/scintilla/Makefile.in
.include <bsd.port.post.mk>

View file

@ -1,2 +0,0 @@
SHA256 (titano-0.0.7.tar.gz) = a2ff86482e0325e2aede6fe3f6cd99a78295af47f4d39513f4626f4fe7b3d454
SIZE (titano-0.0.7.tar.gz) = 751505

View file

@ -1,22 +0,0 @@
--- src/projects.cc.orig Sat Dec 9 23:13:32 2000
+++ src/projects.cc Thu Apr 7 19:10:08 2005
@@ -100,13 +100,13 @@
int pos = name.rfind('.');
if(pos != name.npos){
- if(!name.compare(".h",pos,2))
+ if(!name.compare(pos,2,".h"))
res = C_HEADER;
- if(!name.compare(".c",pos,2)||
- !name.compare(".C",pos,2)||
- !name.compare(".cc",pos,3)||
- !name.compare(".cpp",pos,4)||
- !name.compare(".cxx",pos,4))
+ if(!name.compare(pos,2,".c")||
+ !name.compare(pos,2,".C")||
+ !name.compare(pos,3,".cc")||
+ !name.compare(pos,4,".cpp")||
+ !name.compare(pos,4,".cxx"))
res = C_SOURCE;
};

View file

@ -1,30 +0,0 @@
--- src/projects.h.orig Sat Dec 9 22:57:49 2000
+++ src/projects.h Thu Apr 7 17:30:36 2005
@@ -21,22 +21,24 @@
#define _PROJECTS_H
#include <string>
-#include <hash_map>
+#include <ext/hash_map>
#include <list>
#include "dialogs.h"
#include "files.h"
+using namespace std;
+
struct str_hasher
{
size_t operator()(const string &str) const
{
- hash<char *> hasher;
+ __gnu_cxx::hash<char *> hasher;
return hasher(str.c_str());
};
};
-typedef hash_map<string,File *,str_hasher> files_map;
+typedef __gnu_cxx::hash_map<string,File *,str_hasher> files_map;
typedef list<string> files_list;
typedef enum {UNKNOWN,C_HEADER,C_SOURCE} FileType;

View file

@ -1,11 +0,0 @@
--- src/titano-app.cc.orig Fri Dec 29 19:52:11 2000
+++ src/titano-app.cc Thu Apr 7 18:28:24 2005
@@ -410,7 +410,7 @@
void TitanoApp::open_project(const string &filename)
{
- if(filename.rfind('.') == filename.npos || filename.compare(".titano",filename.rfind('.'),7)){
+ if(filename.rfind('.') == filename.npos || filename.compare(filename.rfind('.'),7,".titano")){
throw Exception("File " + filename + " is not a Titano project.");
};

View file

@ -1,21 +0,0 @@
--- src/views.cc.orig Sat Dec 16 01:22:27 2000
+++ src/views.cc Thu Apr 7 19:07:54 2005
@@ -45,12 +45,12 @@
int pos = file.rfind('.');
if(pos != file.npos){
- if(!file.compare(".h",pos,2)||
- !file.compare(".c",pos,2)||
- !file.compare(".C",pos,2)||
- !file.compare(".cc",pos,3)||
- !file.compare(".cpp",pos,4)||
- !file.compare(".cxx",pos,4))
+ if(!file.compare(pos,2,".h")||
+ !file.compare(pos,2,".c")||
+ !file.compare(pos,2,".C")||
+ !file.compare(pos,3,".cc")||
+ !file.compare(pos,4,".cpp")||
+ !file.compare(pos,4,".cxx"))
res = "cpp";
};

View file

@ -1,14 +0,0 @@
--- src/automake.h.orig Sat Dec 16 13:07:24 2000
+++ src/automake.h Thu Apr 7 20:00:08 2005
@@ -65,6 +65,11 @@
{
return target.name != str;
};
+
+ friend bool operator==(const Target &target,const string &str)
+ {
+ return target.name == str;
+ };
};
class Makefile

View file

@ -1,11 +0,0 @@
--- src/conffile.h.orig Wed Nov 1 21:58:04 2000
+++ src/conffile.h Thu Apr 7 19:55:13 2005
@@ -23,6 +23,8 @@
#include <gnome.h>
#include <string>
+using namespace std;
+
class ConfFile
{
private:

View file

@ -1,51 +0,0 @@
--- src/iexceptions.h.orig Tue Sep 12 21:54:25 2000
+++ src/iexceptions.h Thu Apr 7 17:37:27 2005
@@ -24,6 +24,8 @@
#include <string>
#include <string.h>
+using namespace std;
+
class Exception : public exception
{
protected:
@@ -33,6 +35,9 @@
message(msg)
{ };
+ virtual ~Exception() throw()
+ { };
+
virtual operator string()
{
return message;
@@ -51,6 +56,9 @@
error(err)
{ };
+ virtual ~EIOError() throw()
+ { };
+
virtual operator string()
{
return message + "\n" +
@@ -71,6 +79,9 @@
reason(reas)
{ };
+ virtual ~ENotSupported() throw()
+ { };
+
virtual operator string()
{
return message + "\n" +
@@ -91,6 +102,9 @@
error(err)
{ };
+ virtual ~EShellError() throw()
+ { };
+
virtual operator string()
{
return message + "\n" +

View file

@ -1,25 +0,0 @@
--- src/prefs.cc.orig Sat Dec 9 16:07:38 2000
+++ src/prefs.cc Thu Apr 7 20:48:59 2005
@@ -18,6 +18,7 @@
*/
#include <stdlib.h>
+#include <unistd.h>
#include "util.h"
#include "conffile.h"
@@ -33,9 +34,13 @@
{
if(name.empty())
name = getenv("USER");
+ if (name.empty())
+ name = "nobody";
if(mail.empty()){
- char *host = getenv("HOSTNAME");
+ char host[256];
+ if (gethostname(host, 256))
+ strncpy(host, "dev.null.org", 255);
mail = name + "@" + host;
};

View file

@ -1,13 +0,0 @@
Titano is an IDE built with Glade using GTK+. It uses GtkEditor as a main
editing widget though you will be able to use your favorite editor as an
editing component in Titano via Bonobo technology.
Features (some of features are only planned and may appear not very soon):
o Project management with automake/autoconf support
o Support for different languages
o Bonobo editor components
o Integrated debugger
o Code exploring tools
o And many other things you may need for developing
WWW: http://titano.sourceforge.net/

View file

@ -1,57 +0,0 @@
bin/scannertool
bin/titano
lib/titano/c-scanner.so
lib/titano/html-scanner.so
lib/titano/java-scanner.so
lib/titano/perl-scanner.so
lib/titano/scheme-scanner.so
lib/titano/sml-scanner.so
@dirrm lib/titano
%%DATADIR%%/templates/cgtk.tar.gz
%%DATADIR%%/templates/cppgtk.tar.gz
%%DATADIR%%/templates/cgnome.tar.gz
%%DATADIR%%/templates/cppgnome.tar.gz
%%DATADIR%%/templates/cconsole.tar.gz
%%DATADIR%%/templates/cppconsole.tar.gz
%%DATADIR%%/templates/h_template
%%DATADIR%%/templates/c_template
%%DATADIR%%/scripts/project.pl
%%DATADIR%%/scripts/file.pl
%%DATADIR%%/scripts/amlist
%%DATADIR%%/glade/add_file.xpm
%%DATADIR%%/glade/autogen.xpm
%%DATADIR%%/glade/close_file.xpm
%%DATADIR%%/glade/code.xpm
%%DATADIR%%/glade/compile.xpm
%%DATADIR%%/glade/conf.xpm
%%DATADIR%%/glade/copy.xpm
%%DATADIR%%/glade/cut.xpm
%%DATADIR%%/glade/debug.xpm
%%DATADIR%%/glade/dir.xpm
%%DATADIR%%/glade/dist.xpm
%%DATADIR%%/glade/exec.xpm
%%DATADIR%%/glade/make.xpm
%%DATADIR%%/glade/new_file.xpm
%%DATADIR%%/glade/open_proj.xpm
%%DATADIR%%/glade/paste.xpm
%%DATADIR%%/glade/process.xpm
%%DATADIR%%/glade/project.xpm
%%DATADIR%%/glade/redo.xpm
%%DATADIR%%/glade/rem_file.xpm
%%DATADIR%%/glade/save_all.xpm
%%DATADIR%%/glade/save_file.xpm
%%DATADIR%%/glade/save_proj.xpm
%%DATADIR%%/glade/stderr.xpm
%%DATADIR%%/glade/stdout.xpm
%%DATADIR%%/glade/undo.xpm
%%DATADIR%%/glade/titano.glade
@dirrm %%DATADIR%%/templates
@dirrm %%DATADIR%%/scripts
@dirrm %%DATADIR%%/glade
@dirrm %%DATADIR%%
share/pixmaps/titano/console.png
share/pixmaps/titano/gnome.png
share/pixmaps/titano/gtk.png
share/pixmaps/titano/logo.png
@dirrm share/pixmaps/titano
share/gnome/apps/Development/titano.desktop