summaryrefslogtreecommitdiffstats
path: root/devel/libunicode
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-10-14 18:33:48 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-10-14 18:33:48 +0800
commit1b3327761c8bcb98d89b529daeae9600844b4361 (patch)
tree0be1cd4eb5fec6661da4798906b0d9bd522e794f /devel/libunicode
parenta65aedbb59fd9dfb33a4633611777da99ec4dcd5 (diff)
downloadmarcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar
marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.gz
marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.bz2
marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.lz
marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.xz
marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.zst
marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.zip
Clean out MarcusCom after the big import into ports.
Next stop, GNOME 2.17. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7799 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/libunicode')
-rw-r--r--devel/libunicode/Makefile29
-rw-r--r--devel/libunicode/distinfo3
-rw-r--r--devel/libunicode/files/patch-aa11
-rw-r--r--devel/libunicode/files/patch-iso8859.c11
-rw-r--r--devel/libunicode/files/patch-latin1.c11
-rw-r--r--devel/libunicode/pkg-descr5
-rw-r--r--devel/libunicode/pkg-plist7
7 files changed, 0 insertions, 77 deletions
diff --git a/devel/libunicode/Makefile b/devel/libunicode/Makefile
deleted file mode 100644
index 0ebdcf976..000000000
--- a/devel/libunicode/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-# New ports collection makefile for: libunicode
-# Date created: 28th June 2000
-# Whom: Ade Lovett <ade@FreeBSD.org>
-#
-# $FreeBSD$
-# $MCom: ports/devel/libunicode/Makefile,v 1.1 2006/07/18 12:34:54 ahze Exp $
-
-PORTNAME= libunicode
-PORTVERSION= 0.4
-PORTREVISION= 6
-CATEGORIES= devel gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/libunicode/0.4
-DISTNAME= ${PORTNAME}-${PORTVERSION}.gnome
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= A library for manipulating Unicode characters and strings
-
-USE_GMAKE= yes
-USE_XLIB= yes
-GNU_CONFIGURE= yes
-USE_LDCONFIG= yes
-CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
- --datadir=${PREFIX}/share/gnome
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LIBS="-L${LOCALBASE}/lib"
-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
-
-.include <bsd.port.mk>
diff --git a/devel/libunicode/distinfo b/devel/libunicode/distinfo
deleted file mode 100644
index 7c8767c9a..000000000
--- a/devel/libunicode/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (libunicode-0.4.gnome.tar.gz) = 78bca1168d7f180e9cc8a3388bf7374e
-SHA256 (libunicode-0.4.gnome.tar.gz) = a4466a63c6501aa3137fdf309dc044bbb48186136ab86ea87c09653789ebcffd
-SIZE (libunicode-0.4.gnome.tar.gz) = 211622
diff --git a/devel/libunicode/files/patch-aa b/devel/libunicode/files/patch-aa
deleted file mode 100644
index 2c39e59e3..000000000
--- a/devel/libunicode/files/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in.orig Wed Sep 20 17:44:12 2000
-+++ Makefile.in Thu Sep 21 10:54:20 2000
-@@ -94,7 +94,7 @@
- EXTRA_DIST = libunicode.spec.in unicodeConf.sh.in
-
-
--confexecdir = $(libdir)
-+confexecdir = $(sysconfdir)
- confexec_DATA = unicodeConf.sh
-
- CLEAN_FILES = unicodeConf.sh
diff --git a/devel/libunicode/files/patch-iso8859.c b/devel/libunicode/files/patch-iso8859.c
deleted file mode 100644
index afe3101c5..000000000
--- a/devel/libunicode/files/patch-iso8859.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- iso8859.c.orig Fri Oct 29 15:15:19 1999
-+++ iso8859.c Wed Jun 5 02:43:26 2002
-@@ -271,6 +271,8 @@
- #define ISO_DEFINE(Num) \
- static char * n ## Num [] = { "8859-" # Num, \
- "ISO-8859-" # Num, \
-+ "ISO_8859-1" # Num, \
-+ "ISO8859-" # Num, \
- NULL }; \
- unicode_encoding_t P3 (unicode_iso8859_, Num, _encoding) = \
- { \
diff --git a/devel/libunicode/files/patch-latin1.c b/devel/libunicode/files/patch-latin1.c
deleted file mode 100644
index 5196870a1..000000000
--- a/devel/libunicode/files/patch-latin1.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- latin1.c.orig Wed Jun 5 02:41:15 2002
-+++ latin1.c Wed Jun 5 02:41:34 2002
-@@ -89,7 +89,7 @@
- }
-
- /* The encoding descriptor for Latin1. */
--static char *l1n[] = { "8859-1", "ISO-8859-1", NULL };
-+static char *l1n[] = { "8859-1", "ISO8859-1", "ISO_8859-1", "ISO-8859-1", NULL };
- unicode_encoding_t unicode_latin1_encoding =
- {
- l1n,
diff --git a/devel/libunicode/pkg-descr b/devel/libunicode/pkg-descr
deleted file mode 100644
index b27a4d6b0..000000000
--- a/devel/libunicode/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-libunicode is a library for manipulating Unicode characters and
-strings. It understands both the UTF-8 and UCS-2 encodings, and has a
-framework for adding support for new encodings.
-
-WWW: http://www.gnome.org/
diff --git a/devel/libunicode/pkg-plist b/devel/libunicode/pkg-plist
deleted file mode 100644
index ea1954412..000000000
--- a/devel/libunicode/pkg-plist
+++ /dev/null
@@ -1,7 +0,0 @@
-bin/unicode-config
-etc/unicodeConf.sh
-include/unicode.h
-lib/libunicode.a
-lib/libunicode.la
-lib/libunicode.so
-lib/libunicode.so.0