diff options
Diffstat (limited to 'devel/libdispatch')
-rw-r--r-- | devel/libdispatch/Makefile | 24 | ||||
-rw-r--r-- | devel/libdispatch/distinfo | 2 | ||||
-rw-r--r-- | devel/libdispatch/files/patch-configure.ac | 22 | ||||
-rw-r--r-- | devel/libdispatch/files/patch-src_shims_time.h | 13 | ||||
-rw-r--r-- | devel/libdispatch/pkg-descr | 13 | ||||
-rw-r--r-- | devel/libdispatch/pkg-plist | 66 |
6 files changed, 0 insertions, 140 deletions
diff --git a/devel/libdispatch/Makefile b/devel/libdispatch/Makefile deleted file mode 100644 index 1e1f5633d599..000000000000 --- a/devel/libdispatch/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# Created by: stas -# $FreeBSD$ - -PORTNAME= libdispatch -PORTVERSION= 210 -PORTREVISION= 2 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.SpringDaemons.com/soft/ - -MAINTAINER= brooks@FreeBSD.org -COMMENT= Grand Central Dispatch API support library - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 - -LICENSE= APACHE20 - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-static -USES= libtool tar:bzip2 -USE_LDCONFIG= yes - -.include <bsd.port.mk> diff --git a/devel/libdispatch/distinfo b/devel/libdispatch/distinfo deleted file mode 100644 index 27b20ee5fb15..000000000000 --- a/devel/libdispatch/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (libdispatch-210.tar.bz2) = cc9be9b318ae0ee2414d5082d9f9a66d1afb304fd17dcc506383066d45efda4a -SIZE (libdispatch-210.tar.bz2) = 350329 diff --git a/devel/libdispatch/files/patch-configure.ac b/devel/libdispatch/files/patch-configure.ac deleted file mode 100644 index cea80713c323..000000000000 --- a/devel/libdispatch/files/patch-configure.ac +++ /dev/null @@ -1,22 +0,0 @@ ---- configure.ac.orig 2011-09-08 23:48:16.000000000 -0700 -+++ configure.ac 2011-09-08 23:48:28.000000000 -0700 -@@ -137,7 +137,18 @@ - # Find libraries we will need - # - AC_SEARCH_LIBS(clock_gettime, rt) --AC_SEARCH_LIBS(pthread_create, pthread) -+ -+# -+# Find how to enable threads -+# -+case $host in -+*freebsd*) -+ LIBS="${LIBS} -pthread" -+ ;; -+*) -+ AC_SEARCH_LIBS(pthread_create, pthread) -+ ;; -+esac - - # - # Prefer native kqueue(2); otherwise use libkqueue if present. diff --git a/devel/libdispatch/files/patch-src_shims_time.h b/devel/libdispatch/files/patch-src_shims_time.h deleted file mode 100644 index f012effd0b58..000000000000 --- a/devel/libdispatch/files/patch-src_shims_time.h +++ /dev/null @@ -1,13 +0,0 @@ ---- src/shims/time.h.orig 2011-09-08 23:49:45.000000000 -0700 -+++ src/shims/time.h 2011-09-08 23:49:56.000000000 -0700 -@@ -52,8 +52,8 @@ - bool ratio_1_to_1; - dispatch_once_t pred; - } _dispatch_host_time_data_s; --__private_extern__ _dispatch_host_time_data_s _dispatch_host_time_data; --__private_extern__ void _dispatch_get_host_time_init(void *context); -+extern _dispatch_host_time_data_s _dispatch_host_time_data; -+extern void _dispatch_get_host_time_init(void *context); - - static inline uint64_t - _dispatch_time_mach2nano(uint64_t machtime) diff --git a/devel/libdispatch/pkg-descr b/devel/libdispatch/pkg-descr deleted file mode 100644 index 17fda813c342..000000000000 --- a/devel/libdispatch/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -This port contains the userland implementation of Grand Central Dispatch -technology. - -The central insight of GCD is shifting the responsibility for managing threads -and their execution from applications to the operating system. As a result, -programmers can write less code to deal with concurrent operations in their -applications, and the system can perform more efficiently on single-processor -machines, large multiprocessor servers, and everything in between. Without a -pervasive approach such as GCD, even the best-written application cannot -deliver the best possible performance, because it doesn'tt have full insight -into everything else happening in the system. - -WWW: http://libdispatch.macosforge.org/ diff --git a/devel/libdispatch/pkg-plist b/devel/libdispatch/pkg-plist deleted file mode 100644 index 4f6f08d7c58e..000000000000 --- a/devel/libdispatch/pkg-plist +++ /dev/null @@ -1,66 +0,0 @@ -include/dispatch/base.h -include/dispatch/dispatch.h -include/dispatch/group.h -include/dispatch/object.h -include/dispatch/once.h -include/dispatch/queue.h -include/dispatch/semaphore.h -include/dispatch/source.h -include/dispatch/time.h -lib/libdispatch.so -lib/libdispatch.so.0 -lib/libdispatch.so.0.0.0 -man/man3/dispatch.3.gz -man/man3/dispatch_after.3.gz -man/man3/dispatch_after_f.3.gz -man/man3/dispatch_api.3.gz -man/man3/dispatch_apply.3.gz -man/man3/dispatch_apply_f.3.gz -man/man3/dispatch_async.3.gz -man/man3/dispatch_async_f.3.gz -man/man3/dispatch_benchmark.3.gz -man/man3/dispatch_benchmark_f.3.gz -man/man3/dispatch_get_context.3.gz -man/man3/dispatch_get_current_queue.3.gz -man/man3/dispatch_get_global_queue.3.gz -man/man3/dispatch_get_main_queue.3.gz -man/man3/dispatch_group_async.3.gz -man/man3/dispatch_group_async_f.3.gz -man/man3/dispatch_group_create.3.gz -man/man3/dispatch_group_enter.3.gz -man/man3/dispatch_group_leave.3.gz -man/man3/dispatch_group_notify.3.gz -man/man3/dispatch_group_notify_f.3.gz -man/man3/dispatch_group_wait.3.gz -man/man3/dispatch_main.3.gz -man/man3/dispatch_object.3.gz -man/man3/dispatch_once.3.gz -man/man3/dispatch_once_f.3.gz -man/man3/dispatch_queue_create.3.gz -man/man3/dispatch_queue_get_label.3.gz -man/man3/dispatch_release.3.gz -man/man3/dispatch_resume.3.gz -man/man3/dispatch_retain.3.gz -man/man3/dispatch_semaphore_create.3.gz -man/man3/dispatch_semaphore_signal.3.gz -man/man3/dispatch_semaphore_wait.3.gz -man/man3/dispatch_set_context.3.gz -man/man3/dispatch_set_finalizer_f.3.gz -man/man3/dispatch_set_target_queue.3.gz -man/man3/dispatch_source_cancel.3.gz -man/man3/dispatch_source_create.3.gz -man/man3/dispatch_source_get_data.3.gz -man/man3/dispatch_source_get_handle.3.gz -man/man3/dispatch_source_get_mask.3.gz -man/man3/dispatch_source_merge_data.3.gz -man/man3/dispatch_source_set_cancel_handler.3.gz -man/man3/dispatch_source_set_cancel_handler_f.3.gz -man/man3/dispatch_source_set_event_handler.3.gz -man/man3/dispatch_source_set_event_handler_f.3.gz -man/man3/dispatch_source_set_timer.3.gz -man/man3/dispatch_source_testcancel.3.gz -man/man3/dispatch_suspend.3.gz -man/man3/dispatch_sync.3.gz -man/man3/dispatch_sync_f.3.gz -man/man3/dispatch_time.3.gz -man/man3/dispatch_walltime.3.gz |