summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2001-10-08 16:25:53 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2001-10-08 16:25:53 +0000
commit8c2edddff87e950aaf9bd3cf49913bc653dc5882 (patch)
treee57c9c861216dc60ea10c7a7cf8fe9bd3328899a /devel
parentRemove whitespace and add WWW (diff)
add libafterbase
AfterStep basic functionality library
Notes
Notes: svn path=/head/; revision=48568
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/libafterbase/Makefile27
-rw-r--r--devel/libafterbase/distinfo1
-rw-r--r--devel/libafterbase/files/patch-audit.c59
-rw-r--r--devel/libafterbase/pkg-comment1
-rw-r--r--devel/libafterbase/pkg-descr1
-rw-r--r--devel/libafterbase/pkg-plist22
7 files changed, 112 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 1218cdc1e5f5..a20107e74c03 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -199,6 +199,7 @@
SUBDIR += leoarg
SUBDIR += libPropList
SUBDIR += libU77
+ SUBDIR += libafterbase
SUBDIR += libast
SUBDIR += libavl
SUBDIR += libcache
diff --git a/devel/libafterbase/Makefile b/devel/libafterbase/Makefile
new file mode 100644
index 000000000000..87ea151a9304
--- /dev/null
+++ b/devel/libafterbase/Makefile
@@ -0,0 +1,27 @@
+# ex:ts=8
+# New ports collection makefile for: libAfterBase
+# Date created: Oct 7, 2001
+# Whom: ijliao
+#
+# $FreeBSD$
+#
+
+PORTNAME= libafterbase
+PORTVERSION= 0.81
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= afterstep
+DISTNAME= libAfterBase-${PORTVERSION}
+
+MAINTAINER= ports@FreeBSD.org
+
+USE_X_PREFIX= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --enable-sharedlibs --with-x
+WRKSRC= ${WRKDIR}/libAfterBase
+INSTALLS_SHLIB= yes
+
+post-install:
+ @${MV} -f ${PREFIX}/lib/libAfterBase.so.0.81 ${PREFIX}/lib/libAfterBase.so.0
+
+.include <bsd.port.mk>
diff --git a/devel/libafterbase/distinfo b/devel/libafterbase/distinfo
new file mode 100644
index 000000000000..aea18e17c224
--- /dev/null
+++ b/devel/libafterbase/distinfo
@@ -0,0 +1 @@
+MD5 (libAfterBase-0.81.tar.gz) = a79b1769b977df94d77daa96262f7452
diff --git a/devel/libafterbase/files/patch-audit.c b/devel/libafterbase/files/patch-audit.c
new file mode 100644
index 000000000000..1ab4d26c3d77
--- /dev/null
+++ b/devel/libafterbase/files/patch-audit.c
@@ -0,0 +1,59 @@
+--- audit.c.orig Sun Oct 7 22:16:37 2001
++++ audit.c Sun Oct 7 22:19:10 2001
+@@ -427,7 +427,7 @@
+ m1->line = line;
+ #else
+ safefree (m->ptr);
+- mem_destroy( (ASHashableValue)NULL, m );
++ mem_destroy( (ASHashableValue)(void*)NULL, m );
+ #endif
+ }
+
+@@ -714,7 +714,7 @@
+ */
+
+ XFreePixmap (display, pmap);
+- mem_destroy( (ASHashableValue)NULL, m );
++ mem_destroy( (ASHashableValue)(void*)NULL, m );
+ return Success;
+ }
+
+@@ -750,7 +750,7 @@
+ }
+
+ XFreeGC (display, gc);
+- mem_destroy( (ASHashableValue)NULL, m );
++ mem_destroy( (ASHashableValue)(void*)NULL, m );
+ return Success;
+ }
+
+@@ -830,17 +830,17 @@
+ /* can also be of C_MEM type if we allocated it ourselvs */
+ m = count_find_and_extract (fname, line, (void *)image, C_MEM);
+ if (m)
+- mem_destroy( (ASHashableValue)NULL, m );
++ mem_destroy( (ASHashableValue)(void*)NULL, m );
+
+ /* find and free the image->data pointer if it is in our list */
+ if( image_data )
+ if ((m = count_find_and_extract (fname, line, image_data, C_MEM)) != NULL)
+- mem_destroy( (ASHashableValue)NULL, m );
++ mem_destroy( (ASHashableValue)(void*)NULL, m );
+
+ /* find and free the image->obdata pointer if it is in our list */
+ if( image_obdata )
+ if ((m = count_find_and_extract (fname, line, image_obdata, C_MEM)) != NULL)
+- mem_destroy( (ASHashableValue)NULL, m );
++ mem_destroy( (ASHashableValue)(void*)NULL, m );
+
+ return Success;
+ }
+@@ -1025,7 +1025,7 @@
+ }
+
+ XFree (data);
+- mem_destroy( (ASHashableValue)NULL, m );
++ mem_destroy( (ASHashableValue)(void*)NULL, m );
+ return Success;
+ }
+
diff --git a/devel/libafterbase/pkg-comment b/devel/libafterbase/pkg-comment
new file mode 100644
index 000000000000..2ca7a15a6d37
--- /dev/null
+++ b/devel/libafterbase/pkg-comment
@@ -0,0 +1 @@
+AfterStep basic functionality library
diff --git a/devel/libafterbase/pkg-descr b/devel/libafterbase/pkg-descr
new file mode 100644
index 000000000000..2ca7a15a6d37
--- /dev/null
+++ b/devel/libafterbase/pkg-descr
@@ -0,0 +1 @@
+AfterStep basic functionality library
diff --git a/devel/libafterbase/pkg-plist b/devel/libafterbase/pkg-plist
new file mode 100644
index 000000000000..8603d4e3a107
--- /dev/null
+++ b/devel/libafterbase/pkg-plist
@@ -0,0 +1,22 @@
+include/libAfterBase/ashash.h
+include/libAfterBase/astypes.h
+include/libAfterBase/asvector.h
+include/libAfterBase/audit.h
+include/libAfterBase/fs.h
+include/libAfterBase/mystring.h
+include/libAfterBase/os.h
+include/libAfterBase/output.h
+include/libAfterBase/parse.h
+include/libAfterBase/regexp.h
+include/libAfterBase/safemalloc.h
+include/libAfterBase/selfdiag.h
+include/libAfterBase/sleep.h
+include/libAfterBase/socket.h
+include/libAfterBase/timer.h
+include/libAfterBase/trace.h
+include/libAfterBase/xprop.h
+include/libAfterBase/xwrap.h
+@dirrm include/libAfterBase
+lib/libAfterBase.a
+lib/libAfterBase.so
+lib/libAfterBase.so.0