diff options
Diffstat (limited to 'devel/apr2')
| -rw-r--r-- | devel/apr2/Makefile | 61 | ||||
| -rw-r--r-- | devel/apr2/distinfo | 2 | ||||
| -rw-r--r-- | devel/apr2/files/patch-apr-Makefile.in | 11 | ||||
| -rw-r--r-- | devel/apr2/files/patch-apr-misc-unix-getopt.c | 15 | ||||
| -rw-r--r-- | devel/apr2/pkg-comment | 1 | ||||
| -rw-r--r-- | devel/apr2/pkg-descr | 8 | ||||
| -rw-r--r-- | devel/apr2/pkg-install | 15 | ||||
| -rw-r--r-- | devel/apr2/pkg-plist | 69 |
8 files changed, 0 insertions, 182 deletions
diff --git a/devel/apr2/Makefile b/devel/apr2/Makefile deleted file mode 100644 index e8ac4b176f6a..000000000000 --- a/devel/apr2/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# New ports collection makefile for: apr -# Date created: 19 February 2002 -# Whom: Garrett Rooney <rooneg@electricjellyfish.net> -# -# $FreeBSD$ -# - -PORTNAME= apr -PORTVERSION= 20020725223645 -PORTREVISION= 1 -CATEGORIES= devel -MASTER_SITES= http://www.apache.org/dist/apr/not-released/ -DISTFILES= apr_${PORTVERSION}.tar.gz apr-util_20020725223700.tar.gz - -MAINTAINER= rooneg@electricjellyfish.net - -BUILD_DEPENDS+= libtool:${PORTSDIR}/devel/libtool -LIB_DEPENDS+= expat.4:${PORTSDIR}/textproc/expat2 \ - iconv.3:${PORTSDIR}/converters/libiconv - -WANT_AUTOCONF_VER= 253 - -USE_PERL5= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes - -WRKSRC= ${WRKDIR} - -APR_CONF_ENV= ${CONFIGURE_ENV} \ - CONFIG_SHELL=/bin/sh - -APR_UTIL_CONF_ENV=${CONFIGURE_ENV} \ - CONFIG_SHELL=/bin/sh \ - CPPFLAGS="-I${PREFIX}/include" \ - LDFLAGS="-L${PREFIX}/lib" - -APR_UTIL_CONF_ARGS= --with-apr=../apr/ --with-expat=${PREFIX} - -pre-fetch: - ${SH} pkg-install apr PRE-INSTALL - -pre-configure: - cd ${WRKDIR}/apr; ./buildconf - cd ${WRKDIR}/apr-util; ./buildconf - -do-configure: - cd ${WRKDIR}/apr; \ - ${SETENV} ${APR_CONF_ENV} ./configure ${CONFIGURE_ARGS} - cd ${WRKDIR}/apr-util; \ - ${SETENV} ${APR_UTIL_CONF_ENV} \ - ./configure ${CONFIGURE_ARGS} ${APR_UTIL_CONF_ARGS} - -do-build: - cd ${WRKDIR}/apr; ${SETENV} ${MAKE_ENV} make - cd ${WRKDIR}/apr-util; ${SETENV} ${MAKE_ENV} make - -do-install: - cd ${WRKDIR}/apr; ${SETENV} ${MAKE_ENV} make install - cd ${WRKDIR}/apr-util; ${SETENV} ${MAKE_ENV} make install - -.include <bsd.port.mk> diff --git a/devel/apr2/distinfo b/devel/apr2/distinfo deleted file mode 100644 index 4a51902da4a6..000000000000 --- a/devel/apr2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (apr_20020725223645.tar.gz) = e95ba59919ae9d6d36abc2b42575f743 -MD5 (apr-util_20020725223700.tar.gz) = 9098f2d1b6c502166cd83bff8f8b22cb diff --git a/devel/apr2/files/patch-apr-Makefile.in b/devel/apr2/files/patch-apr-Makefile.in deleted file mode 100644 index d56603894624..000000000000 --- a/devel/apr2/files/patch-apr-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- apr/Makefile.in.orig Mon Mar 18 20:14:35 2002 -+++ apr/Makefile.in Mon Mar 18 20:11:05 2002 -@@ -42,7 +42,7 @@ - includedir=@includedir@ - srcdir=@srcdir@ - top_srcdir=@top_srcdir@ --top_blddir=@top_builddir@ -+top_blddir=@apr_builddir@ - - EXPORT_FILES = $(top_srcdir)/include/*.h - diff --git a/devel/apr2/files/patch-apr-misc-unix-getopt.c b/devel/apr2/files/patch-apr-misc-unix-getopt.c deleted file mode 100644 index 2634000a14cd..000000000000 --- a/devel/apr2/files/patch-apr-misc-unix-getopt.c +++ /dev/null @@ -1,15 +0,0 @@ ---- apr/misc/unix/getopt.c.orig Thu Nov 29 06:19:51 2001 -+++ apr/misc/unix/getopt.c Sun Aug 11 11:29:01 2002 -@@ -237,10 +237,12 @@ - for (i = 0; ; i++) { - if (opts[i].optch == 0) /* No match */ - return serr(os, "invalid option", p - 2, APR_BADCH); -+ if (opts[i].name) { - len = strlen(opts[i].name); - if (strncmp(p, opts[i].name, len) == 0 - && (p[len] == '\0' || p[len] == '=')) - break; -+ } - } - *optch = opts[i].optch; - diff --git a/devel/apr2/pkg-comment b/devel/apr2/pkg-comment deleted file mode 100644 index d880042f52cc..000000000000 --- a/devel/apr2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The Apache Group's Portability Library diff --git a/devel/apr2/pkg-descr b/devel/apr2/pkg-descr deleted file mode 100644 index 171e56b08723..000000000000 --- a/devel/apr2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -The Apache Portable Runtime is a library of C data structures and routines, -forming a system portability layer that covers as many operating systems as -possible, including Unices, Win32, BeOS, and OS/2. - -This port also includes the APR-Util package, which contains some useful -utilities built on top of APR. - -WWW: http://apr.apache.org/ diff --git a/devel/apr2/pkg-install b/devel/apr2/pkg-install deleted file mode 100644 index 6ef9e11b1c75..000000000000 --- a/devel/apr2/pkg-install +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -pkg_info 'apache-2*' > /dev/null 2<&1 - -if [ $? = 0 ]; then - echo "apr cannot currently be installed alongside apache2. sorry." - exit 1 -fi - -exit 0 diff --git a/devel/apr2/pkg-plist b/devel/apr2/pkg-plist deleted file mode 100644 index 9bd99684be72..000000000000 --- a/devel/apr2/pkg-plist +++ /dev/null @@ -1,69 +0,0 @@ -bin/apr-config -bin/apu-config -include/apr.h -include/apr_allocator.h -include/apr_anylock.h -include/apr_atomic.h -include/apr_base64.h -include/apr_buckets.h -include/apr_compat.h -include/apr_date.h -include/apr_dbm.h -include/apr_dso.h -include/apr_errno.h -include/apr_file_info.h -include/apr_file_io.h -include/apr_fnmatch.h -include/apr_general.h -include/apr_getopt.h -include/apr_global_mutex.h -include/apr_hash.h -include/apr_hooks.h -include/apr_inherit.h -include/apr_ldap.h -include/apr_lib.h -include/apr_md4.h -include/apr_md5.h -include/apr_mmap.h -include/apr_network_io.h -include/apr_optional.h -include/apr_optional_hooks.h -include/apr_pools.h -include/apr_poll.h -include/apr_portable.h -include/apr_proc_mutex.h -include/apr_ring.h -include/apr_rmm.h -include/apr_sdbm.h -include/apr_sha1.h -include/apr_shm.h -include/apr_signal.h -include/apr_strings.h -include/apr_strmatch.h -include/apr_support.h -include/apr_tables.h -include/apr_thread_cond.h -include/apr_thread_mutex.h -include/apr_thread_proc.h -include/apr_thread_rwlock.h -include/apr_time.h -include/apr_uri.h -include/apr_user.h -include/apr_uuid.h -include/apr_version.h -include/apr_want.h -include/apr_xlate.h -include/apr_xml.h -include/apu.h -include/apu_compat.h -lib/APRVARS -lib/apr.exp -lib/aprutil.exp -lib/libapr.a -lib/libapr.la -lib/libapr.so -lib/libapr.so.0 -lib/libaprutil.a -lib/libaprutil.la -lib/libaprutil.so -lib/libaprutil.so.0 |
