aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2006-11-01 09:47:44 +0000
committerVasil Dimov <vd@FreeBSD.org>2006-11-01 09:47:44 +0000
commit70b82db3f07ad0284e2206bbef4d5589271be786 (patch)
tree24b77b61445a1f89dd3568dfdbf7544e0b16ffa0 /x11-toolkits
parentc1c96d1f01803494a295df98647f0bee8e7262fc (diff)
Notes
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/Makefile1
-rw-r--r--x11-toolkits/etox/Makefile33
-rw-r--r--x11-toolkits/etox/distinfo3
-rw-r--r--x11-toolkits/etox/files/patch-src_Etox_private.h31
-rw-r--r--x11-toolkits/etox/files/patch-src_srtle_Etox_style.h26
-rw-r--r--x11-toolkits/etox/files/patch-src_style_etox_style_private.h16
-rw-r--r--x11-toolkits/etox/pkg-descr4
-rw-r--r--x11-toolkits/etox/pkg-plist31
8 files changed, 0 insertions, 145 deletions
diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile
index 7fd62efcb1ed..f0996038662e 100644
--- a/x11-toolkits/Makefile
+++ b/x11-toolkits/Makefile
@@ -15,7 +15,6 @@
SUBDIR += efltk
SUBDIR += enhance
SUBDIR += etk
- SUBDIR += etox
SUBDIR += ewl
SUBDIR += fl_editor
SUBDIR += fltk
diff --git a/x11-toolkits/etox/Makefile b/x11-toolkits/etox/Makefile
deleted file mode 100644
index c47dd7c2794a..000000000000
--- a/x11-toolkits/etox/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# New ports collection makefile for: etox
-# Date created: 05/09/2005
-# Whom: vanilla
-#
-# $FreeBSD$
-#
-
-PORTNAME= etox
-PORTVERSION= 0.9.0.004
-PORTREVISION= 2
-CATEGORIES= x11-toolkits
-MASTER_SITES= ${MASTER_SITE_LOCAL}
-MASTER_SITE_SUBDIR= vanilla
-
-MAINTAINER= vanilla@FreeBSD.org
-COMMENT= An evas based text layout library
-
-LIB_DEPENDS= evas.1:${PORTSDIR}/graphics/evas \
- ecore.1:${PORTSDIR}/x11/ecore \
- edb.1:${PORTSDIR}/databases/edb
-
-USE_X_PREFIX= yes
-GNU_CONFIGURE= yes
-USE_GNOME= gnomehack pkgconfig gnometarget
-INSTALLS_SHLIB= yes
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LIBS="-L${LOCALBASE}/lib"
-
-IGNORE= doesn't work with recent e17 and obsoleted
-DEPRECATED= ${IGNORE}
-EXPIRATION_DATE=2006-11-01
-
-.include <bsd.port.mk>
diff --git a/x11-toolkits/etox/distinfo b/x11-toolkits/etox/distinfo
deleted file mode 100644
index 76d4f68189e3..000000000000
--- a/x11-toolkits/etox/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (etox-0.9.0.004.tar.gz) = ffb6de465dfc9a9b2802b414dd432932
-SHA256 (etox-0.9.0.004.tar.gz) = ca01cf04b370f757fa5a8dc7c3e70c8f79dfd70ec7d170499513fb94a4bee765
-SIZE (etox-0.9.0.004.tar.gz) = 1046396
diff --git a/x11-toolkits/etox/files/patch-src_Etox_private.h b/x11-toolkits/etox/files/patch-src_Etox_private.h
deleted file mode 100644
index fcb59a3f640f..000000000000
--- a/x11-toolkits/etox/files/patch-src_Etox_private.h
+++ /dev/null
@@ -1,31 +0,0 @@
---- src/Etox_private.h.orig Mon May 24 09:34:45 2004
-+++ src/Etox_private.h Sun Sep 25 11:00:18 2005
-@@ -6,6 +6,28 @@
- #include <Edb.h>
- #include "style/Etox_Style.h"
-
-+#include <stdlib.h>
-+#include <stdio.h>
-+#include <string.h>
-+#include <limits.h>
-+
-+#define IF_FREE(ptr) if (ptr) free(ptr); ptr = NULL;
-+#define FREE(ptr) free(ptr); ptr = NULL;
-+
-+#define CHECK_PARAM_POINTER_RETURN(sparam, param, ret) \
-+ if (!(param)) \
-+ { \
-+ fprintf(stderr, "Fix: func: %s, param: %s\n", __FUNCTION__, sparam); \
-+ return ret; \
-+ }
-+
-+#define CHECK_PARAM_POINTER(sparam, param) \
-+ if (!(param)) \
-+ { \
-+ fprintf(stderr, "Fix: func: %s, param: %s\n", __FUNCTION__, sparam); \
-+ return; \
-+ }
-+
- typedef enum _etox_flags Etox_Flags;
- enum _etox_flags
- {
diff --git a/x11-toolkits/etox/files/patch-src_srtle_Etox_style.h b/x11-toolkits/etox/files/patch-src_srtle_Etox_style.h
deleted file mode 100644
index e2c71d4b2e30..000000000000
--- a/x11-toolkits/etox/files/patch-src_srtle_Etox_style.h
+++ /dev/null
@@ -1,26 +0,0 @@
---- src/style/Etox_Style.h.orig Sun Sep 25 10:48:36 2005
-+++ src/style/Etox_Style.h Sun Sep 25 11:01:48 2005
-@@ -4,6 +4,23 @@
- #include <Edb.h>
- #include <Evas.h>
-
-+#define IF_FREE(ptr) if (ptr) free(ptr); ptr = NULL;
-+#define FREE(ptr) free(ptr); ptr = NULL;
-+
-+#define CHECK_PARAM_POINTER_RETURN(sparam, param, ret) \
-+ if (!(param)) \
-+ { \
-+ fprintf(stderr, "Fix: func: %s, param: %s\n", __FUNCTION__, sparam); \
-+ return ret; \
-+ }
-+
-+#define CHECK_PARAM_POINTER(sparam, param) \
-+ if (!(param)) \
-+ { \
-+ fprintf(stderr, "Fix: func: %s, param: %s\n", __FUNCTION__, sparam); \
-+ return; \
-+ }
-+
-
- #ifdef __cplusplus
- extern "C"
diff --git a/x11-toolkits/etox/files/patch-src_style_etox_style_private.h b/x11-toolkits/etox/files/patch-src_style_etox_style_private.h
deleted file mode 100644
index 728a39c4a020..000000000000
--- a/x11-toolkits/etox/files/patch-src_style_etox_style_private.h
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/style/etox_style_private.h.orig Sun Sep 25 11:07:21 2005
-+++ src/style/etox_style_private.h Sun Sep 25 11:02:44 2005
-@@ -2,7 +2,13 @@
- #define _ETOX_STYLE_PRIVATE_H
-
- #include <Ecore.h>
-+#include <Ecore_Data.h>
- #include "Etox_Style.h"
-+
-+#include <stdlib.h>
-+#include <stdio.h>
-+#include <string.h>
-+#include <limits.h>
-
- /*
- * The etox_style holds all information necessary for display and layout of the text
diff --git a/x11-toolkits/etox/pkg-descr b/x11-toolkits/etox/pkg-descr
deleted file mode 100644
index 63cf3c80b96c..000000000000
--- a/x11-toolkits/etox/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Etox - An evas based text layout library
-
-Etox provides facilities for multi-line text layout, as well as obstacle
-wrapping and text stylization.
diff --git a/x11-toolkits/etox/pkg-plist b/x11-toolkits/etox/pkg-plist
deleted file mode 100644
index 21847548f808..000000000000
--- a/x11-toolkits/etox/pkg-plist
+++ /dev/null
@@ -1,31 +0,0 @@
-bin/etox-config
-include/Etox.h
-lib/libetox.a
-lib/libetox.la
-lib/libetox.so
-lib/libetox.so.0
-libdata/pkgconfig/etox.pc
-share/aclocal/etox.m4
-%%DATADIR%%/colors.db
-%%DATADIR%%/fonts/Vera.ttf
-%%DATADIR%%/fonts/andover.ttf
-%%DATADIR%%/fonts/cinema.ttf
-%%DATADIR%%/fonts/grunge.ttf
-%%DATADIR%%/fonts/morpheus.ttf
-%%DATADIR%%/fonts/nationff.ttf
-%%DATADIR%%/fonts/notepad.ttf
-%%DATADIR%%/fonts/sinon.ttf
-%%DATADIR%%/images/bg.png
-%%DATADIR%%/images/panel.png
-%%DATADIR%%/images/panel_button1.png
-%%DATADIR%%/images/panel_button2.png
-%%DATADIR%%/styles/bold.style.db
-%%DATADIR%%/styles/outline.style.db
-%%DATADIR%%/styles/plain.style.db
-%%DATADIR%%/styles/raised.style.db
-%%DATADIR%%/styles/shadow.style.db
-%%DATADIR%%/styles/soft_shadow.style.db
-@dirrm %%DATADIR%%/styles
-@dirrm %%DATADIR%%/images
-@dirrm %%DATADIR%%/fonts
-@dirrm %%DATADIR%%