aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MOVED1
-rw-r--r--x11-toolkits/Makefile1
-rw-r--r--x11-toolkits/pangoxsl/Makefile31
-rw-r--r--x11-toolkits/pangoxsl/distinfo2
-rw-r--r--x11-toolkits/pangoxsl/files/patch-pango-1.5053
-rw-r--r--x11-toolkits/pangoxsl/pkg-descr5
-rw-r--r--x11-toolkits/pangoxsl/pkg-plist14
7 files changed, 1 insertions, 106 deletions
diff --git a/MOVED b/MOVED
index a303968566e6..2911db5fe7ce 100644
--- a/MOVED
+++ b/MOVED
@@ -16964,3 +16964,4 @@ devel/ORBit2||2022-02-14|Gnome2 library unused anymore
games/pushover|games/domino-chain|2022-03-17|Chase upstream rename
graphics/darktable38|graphics/darktable|2022-03-19|Darktable was upgraded to 3.8, separate port no longer needed
security/1password-client-devel|security/1password-client2|2022-03-19|cli version 2 is now released.
+x11-toolkits/pangoxsl||2022-03-20|Has expired: Abandonware and not used by any port
diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile
index a08b539cb07a..300a5fb00b6b 100644
--- a/x11-toolkits/Makefile
+++ b/x11-toolkits/Makefile
@@ -145,7 +145,6 @@
SUBDIR += pangolin
SUBDIR += pangomm
SUBDIR += pangox-compat
- SUBDIR += pangoxsl
SUBDIR += plasma5-kdeplasma-addons
SUBDIR += plib
SUBDIR += py-AnyQt
diff --git a/x11-toolkits/pangoxsl/Makefile b/x11-toolkits/pangoxsl/Makefile
deleted file mode 100644
index d236c3476bbe..000000000000
--- a/x11-toolkits/pangoxsl/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# Created by: James Earl
-
-PORTNAME= pangoxsl
-PORTVERSION= 1.6.0.3
-PORTREVISION= 6
-CATEGORIES= x11-toolkits
-MASTER_SITES= SF/pangopdf/${PORTNAME}/${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Implements Pango library with a PDF backend for PDF output
-
-LICENSE= GPLv2
-LICENSE_FILE= ${WRKSRC}/COPYING
-
-DEPRECATED= Abandonware and not used by any port
-EXPIRATION_DATE=2022-03-20
-
-USES= gmake gnome libtool pathfix pkgconfig
-USE_GNOME= pango
-USE_LDCONFIG= yes
-
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --disable-gtk-doc \
- --with-html-dir=${PREFIX}/share/doc
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LOCALBASE}/lib
-INSTALL_TARGET= install-strip
-
-OPTIONS_DEFINE= DOCS
-
-.include <bsd.port.mk>
diff --git a/x11-toolkits/pangoxsl/distinfo b/x11-toolkits/pangoxsl/distinfo
deleted file mode 100644
index 564d3ce7fda7..000000000000
--- a/x11-toolkits/pangoxsl/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (pangoxsl-1.6.0.3.tar.gz) = 16554a407f1c56a42514afd979ff797a25c9bf67c51c985d9edc126747298df1
-SIZE (pangoxsl-1.6.0.3.tar.gz) = 323755
diff --git a/x11-toolkits/pangoxsl/files/patch-pango-1.50 b/x11-toolkits/pangoxsl/files/patch-pango-1.50
deleted file mode 100644
index 2ecfe8b5163d..000000000000
--- a/x11-toolkits/pangoxsl/files/patch-pango-1.50
+++ /dev/null
@@ -1,53 +0,0 @@
-In file included from pango-xsl-attributes.c:25:
-./pango-xsl-attributes.h:116:18: error: conflicting types for 'pango_attr_line_height_new'
-PangoAttribute * pango_attr_line_height_new (gint line_height);
- ^
-/usr/local/include/pango-1.0/pango/pango-attributes.h:607:25: note: previous declaration is here
-PangoAttribute * pango_attr_line_height_new (double factor);
- ^
-pango-xsl-attributes.c:620:1: error: conflicting types for 'pango_attr_line_height_new'
-pango_attr_line_height_new (gint line_height)
-^
-/usr/local/include/pango-1.0/pango/pango-attributes.h:607:25: note: previous declaration is here
-PangoAttribute * pango_attr_line_height_new (double factor);
- ^
-2 errors generated.
-
---- pangoxsl/pango-xsl-attributes.h.orig 2004-10-10 23:44:39 UTC
-+++ pangoxsl/pango-xsl-attributes.h
-@@ -25,6 +25,7 @@
- #define __PANGO_XSL_ATTRIBUTES_H__
-
- #include <pango/pango-attributes.h>
-+#include <pango/pango-utils.h>
-
- G_BEGIN_DECLS
-
-@@ -113,7 +114,9 @@ PangoAttrType pango_attr_keep_with_previous_within_
- PangoAttribute * pango_attr_keep_with_previous_within_line_new (gint strength);
-
- PangoAttrType pango_attr_line_height_get_type (void);
-+#if !PANGO_VERSION_CHECK(1,50,0)
- PangoAttribute * pango_attr_line_height_new (gint line_height);
-+#endif
-
- PangoAttrType pango_attr_line_stacking_strategy_get_type (void);
- PangoAttribute * pango_attr_line_stacking_strategy_new (PangoLineStackingStrategy line_stacking_strategy);
---- pangoxsl/pango-xsl-attributes.c.orig 2004-10-10 23:44:39 UTC
-+++ pangoxsl/pango-xsl-attributes.c
-@@ -616,6 +616,7 @@ pango_attr_line_height_get_type (void)
- *
- * Return value: the new #PangoAttribute.
- **/
-+#if !PANGO_VERSION_CHECK(1,50,0)
- PangoAttribute *
- pango_attr_line_height_new (gint line_height)
- {
-@@ -631,6 +632,7 @@ pango_attr_line_height_new (gint line_height)
-
- return pango_attr_int_new (&klass, line_height);
- }
-+#endif
-
- /**
- * pango_attr_line_stacking_strategy_get_type:
diff --git a/x11-toolkits/pangoxsl/pkg-descr b/x11-toolkits/pangoxsl/pkg-descr
deleted file mode 100644
index e2ab3fb31165..000000000000
--- a/x11-toolkits/pangoxsl/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-PangoXSL implements a version of the Pango library with a PDF backend for
-creating PDF output. This library also implements several of the inline
-properties defined by XSL that are not currently implemented by Pango.
-
-WWW: http://pangopdf.sourceforge.net
diff --git a/x11-toolkits/pangoxsl/pkg-plist b/x11-toolkits/pangoxsl/pkg-plist
deleted file mode 100644
index 5177a349c927..000000000000
--- a/x11-toolkits/pangoxsl/pkg-plist
+++ /dev/null
@@ -1,14 +0,0 @@
-include/pangoxsl/pangoxsl/pango-xsl-attributes.h
-lib/libpangoxsl-1.0.so
-lib/libpangoxsl-1.0.so.0
-lib/libpangoxsl-1.0.so.0.600.3
-libdata/pkgconfig/pangoxsl.pc
-%%PORTDOCS%%%%DOCSDIR%%/ch01.html
-%%PORTDOCS%%%%DOCSDIR%%/home.png
-%%PORTDOCS%%%%DOCSDIR%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/index.sgml
-%%PORTDOCS%%%%DOCSDIR%%/left.png
-%%PORTDOCS%%%%DOCSDIR%%/pangoxsl-pango-xsl-attributes.html
-%%PORTDOCS%%%%DOCSDIR%%/pangoxsl.devhelp
-%%PORTDOCS%%%%DOCSDIR%%/right.png
-%%PORTDOCS%%%%DOCSDIR%%/up.png