1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

New port of apr-devel:

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.

There is no apr port as it is still in development.

Submitted by:	Garrett Rooney <rooneg@electricjellyfish.net>
This commit is contained in:
Ollivier Robert 2002-03-14 16:39:26 +00:00
parent d7db143eea
commit beafdedff5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=56090
31 changed files with 666 additions and 0 deletions

View File

@ -21,6 +21,7 @@
SUBDIR += allegro
SUBDIR += amulet
SUBDIR += anjuta
SUBDIR += apr-devel
SUBDIR += arch
SUBDIR += arm-aout-binutils
SUBDIR += arm-aout-gcc295

43
devel/apr-devel/Makefile Normal file
View File

@ -0,0 +1,43 @@
# New ports collection makefile for: apr-snapshot
# Date created: 19 February 2002
# Whom: Garrett Rooney <rooneg@electricjellyfish.net>
#
# $FreeBSD$
#
PORTNAME= apr-devel
PORTVERSION= 20020309172416
CATEGORIES= devel
MASTER_SITES= http://www.apache.org/dist/apr/not-released/
DISTFILES= apr_20020309172416.tar.gz apr-util_20020309172426.tar.gz
MAINTAINER= rooneg@electricjellyfish.net
BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf \
libtool:${PORTSDIR}/devel/libtool
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}
pre-fetch:
${SH} pkg-install apr-devel PRE-INSTALL
pre-configure:
(cd ${WRKDIR}/apr/ && ./buildconf)
(cd ${WRKDIR}/apr-util/ && ./buildconf)
do-configure:
(cd ${WRKDIR}/apr/ && ./configure --prefix=${PREFIX})
(cd ${WRKDIR}/apr-util/ && ./configure --prefix=${PREFIX} --with-apr=../apr/ --with-expat=${PREFIX})
do-build:
(cd ${WRKDIR}/apr/ && make)
(cd ${WRKDIR}/apr-util/ && make)
do-install:
(cd ${WRKDIR}/apr/ && make install)
(cd ${WRKDIR}/apr-util/ && make install)
.include <bsd.port.mk>

2
devel/apr-devel/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (apr_20020309172416.tar.gz) = fcb5fa3a2ea700619588699a6e69f9e3
MD5 (apr-util_20020309172426.tar.gz) = e7d418d7144b790ab6941984e20d2ac2

View File

@ -0,0 +1 @@
The Apache Group's Portability Library

View File

@ -0,0 +1,8 @@
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/

View File

@ -0,0 +1,15 @@
#!/bin/sh
# $FreeBSD$
if [ "$2" != "PRE-INSTALL" ]; then
exit 0
fi
pkg_info 'apache-2*' > /dev/null 2<&1
if [ $? = 0 ]; then
echo "apr-devel cannot currently be installed alongside apache2. sorry."
exit 1
fi
exit 0

64
devel/apr-devel/pkg-plist Normal file
View File

@ -0,0 +1,64 @@
bin/apr-config
bin/apu-config
include/apr.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_lock.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_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_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/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

43
devel/apr/Makefile Normal file
View File

@ -0,0 +1,43 @@
# New ports collection makefile for: apr-snapshot
# Date created: 19 February 2002
# Whom: Garrett Rooney <rooneg@electricjellyfish.net>
#
# $FreeBSD$
#
PORTNAME= apr-devel
PORTVERSION= 20020309172416
CATEGORIES= devel
MASTER_SITES= http://www.apache.org/dist/apr/not-released/
DISTFILES= apr_20020309172416.tar.gz apr-util_20020309172426.tar.gz
MAINTAINER= rooneg@electricjellyfish.net
BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf \
libtool:${PORTSDIR}/devel/libtool
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}
pre-fetch:
${SH} pkg-install apr-devel PRE-INSTALL
pre-configure:
(cd ${WRKDIR}/apr/ && ./buildconf)
(cd ${WRKDIR}/apr-util/ && ./buildconf)
do-configure:
(cd ${WRKDIR}/apr/ && ./configure --prefix=${PREFIX})
(cd ${WRKDIR}/apr-util/ && ./configure --prefix=${PREFIX} --with-apr=../apr/ --with-expat=${PREFIX})
do-build:
(cd ${WRKDIR}/apr/ && make)
(cd ${WRKDIR}/apr-util/ && make)
do-install:
(cd ${WRKDIR}/apr/ && make install)
(cd ${WRKDIR}/apr-util/ && make install)
.include <bsd.port.mk>

2
devel/apr/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (apr_20020309172416.tar.gz) = fcb5fa3a2ea700619588699a6e69f9e3
MD5 (apr-util_20020309172426.tar.gz) = e7d418d7144b790ab6941984e20d2ac2

1
devel/apr/pkg-comment Normal file
View File

@ -0,0 +1 @@
The Apache Group's Portability Library

8
devel/apr/pkg-descr Normal file
View File

@ -0,0 +1,8 @@
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/

15
devel/apr/pkg-install Normal file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# $FreeBSD$
if [ "$2" != "PRE-INSTALL" ]; then
exit 0
fi
pkg_info 'apache-2*' > /dev/null 2<&1
if [ $? = 0 ]; then
echo "apr-devel cannot currently be installed alongside apache2. sorry."
exit 1
fi
exit 0

64
devel/apr/pkg-plist Normal file
View File

@ -0,0 +1,64 @@
bin/apr-config
bin/apu-config
include/apr.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_lock.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_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_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/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

43
devel/apr0/Makefile Normal file
View File

@ -0,0 +1,43 @@
# New ports collection makefile for: apr-snapshot
# Date created: 19 February 2002
# Whom: Garrett Rooney <rooneg@electricjellyfish.net>
#
# $FreeBSD$
#
PORTNAME= apr-devel
PORTVERSION= 20020309172416
CATEGORIES= devel
MASTER_SITES= http://www.apache.org/dist/apr/not-released/
DISTFILES= apr_20020309172416.tar.gz apr-util_20020309172426.tar.gz
MAINTAINER= rooneg@electricjellyfish.net
BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf \
libtool:${PORTSDIR}/devel/libtool
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}
pre-fetch:
${SH} pkg-install apr-devel PRE-INSTALL
pre-configure:
(cd ${WRKDIR}/apr/ && ./buildconf)
(cd ${WRKDIR}/apr-util/ && ./buildconf)
do-configure:
(cd ${WRKDIR}/apr/ && ./configure --prefix=${PREFIX})
(cd ${WRKDIR}/apr-util/ && ./configure --prefix=${PREFIX} --with-apr=../apr/ --with-expat=${PREFIX})
do-build:
(cd ${WRKDIR}/apr/ && make)
(cd ${WRKDIR}/apr-util/ && make)
do-install:
(cd ${WRKDIR}/apr/ && make install)
(cd ${WRKDIR}/apr-util/ && make install)
.include <bsd.port.mk>

2
devel/apr0/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (apr_20020309172416.tar.gz) = fcb5fa3a2ea700619588699a6e69f9e3
MD5 (apr-util_20020309172426.tar.gz) = e7d418d7144b790ab6941984e20d2ac2

1
devel/apr0/pkg-comment Normal file
View File

@ -0,0 +1 @@
The Apache Group's Portability Library

8
devel/apr0/pkg-descr Normal file
View File

@ -0,0 +1,8 @@
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/

15
devel/apr0/pkg-install Normal file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# $FreeBSD$
if [ "$2" != "PRE-INSTALL" ]; then
exit 0
fi
pkg_info 'apache-2*' > /dev/null 2<&1
if [ $? = 0 ]; then
echo "apr-devel cannot currently be installed alongside apache2. sorry."
exit 1
fi
exit 0

64
devel/apr0/pkg-plist Normal file
View File

@ -0,0 +1,64 @@
bin/apr-config
bin/apu-config
include/apr.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_lock.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_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_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/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

43
devel/apr1/Makefile Normal file
View File

@ -0,0 +1,43 @@
# New ports collection makefile for: apr-snapshot
# Date created: 19 February 2002
# Whom: Garrett Rooney <rooneg@electricjellyfish.net>
#
# $FreeBSD$
#
PORTNAME= apr-devel
PORTVERSION= 20020309172416
CATEGORIES= devel
MASTER_SITES= http://www.apache.org/dist/apr/not-released/
DISTFILES= apr_20020309172416.tar.gz apr-util_20020309172426.tar.gz
MAINTAINER= rooneg@electricjellyfish.net
BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf \
libtool:${PORTSDIR}/devel/libtool
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}
pre-fetch:
${SH} pkg-install apr-devel PRE-INSTALL
pre-configure:
(cd ${WRKDIR}/apr/ && ./buildconf)
(cd ${WRKDIR}/apr-util/ && ./buildconf)
do-configure:
(cd ${WRKDIR}/apr/ && ./configure --prefix=${PREFIX})
(cd ${WRKDIR}/apr-util/ && ./configure --prefix=${PREFIX} --with-apr=../apr/ --with-expat=${PREFIX})
do-build:
(cd ${WRKDIR}/apr/ && make)
(cd ${WRKDIR}/apr-util/ && make)
do-install:
(cd ${WRKDIR}/apr/ && make install)
(cd ${WRKDIR}/apr-util/ && make install)
.include <bsd.port.mk>

2
devel/apr1/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (apr_20020309172416.tar.gz) = fcb5fa3a2ea700619588699a6e69f9e3
MD5 (apr-util_20020309172426.tar.gz) = e7d418d7144b790ab6941984e20d2ac2

1
devel/apr1/pkg-comment Normal file
View File

@ -0,0 +1 @@
The Apache Group's Portability Library

8
devel/apr1/pkg-descr Normal file
View File

@ -0,0 +1,8 @@
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/

15
devel/apr1/pkg-install Normal file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# $FreeBSD$
if [ "$2" != "PRE-INSTALL" ]; then
exit 0
fi
pkg_info 'apache-2*' > /dev/null 2<&1
if [ $? = 0 ]; then
echo "apr-devel cannot currently be installed alongside apache2. sorry."
exit 1
fi
exit 0

64
devel/apr1/pkg-plist Normal file
View File

@ -0,0 +1,64 @@
bin/apr-config
bin/apu-config
include/apr.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_lock.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_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_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/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

43
devel/apr2/Makefile Normal file
View File

@ -0,0 +1,43 @@
# New ports collection makefile for: apr-snapshot
# Date created: 19 February 2002
# Whom: Garrett Rooney <rooneg@electricjellyfish.net>
#
# $FreeBSD$
#
PORTNAME= apr-devel
PORTVERSION= 20020309172416
CATEGORIES= devel
MASTER_SITES= http://www.apache.org/dist/apr/not-released/
DISTFILES= apr_20020309172416.tar.gz apr-util_20020309172426.tar.gz
MAINTAINER= rooneg@electricjellyfish.net
BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf \
libtool:${PORTSDIR}/devel/libtool
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}
pre-fetch:
${SH} pkg-install apr-devel PRE-INSTALL
pre-configure:
(cd ${WRKDIR}/apr/ && ./buildconf)
(cd ${WRKDIR}/apr-util/ && ./buildconf)
do-configure:
(cd ${WRKDIR}/apr/ && ./configure --prefix=${PREFIX})
(cd ${WRKDIR}/apr-util/ && ./configure --prefix=${PREFIX} --with-apr=../apr/ --with-expat=${PREFIX})
do-build:
(cd ${WRKDIR}/apr/ && make)
(cd ${WRKDIR}/apr-util/ && make)
do-install:
(cd ${WRKDIR}/apr/ && make install)
(cd ${WRKDIR}/apr-util/ && make install)
.include <bsd.port.mk>

2
devel/apr2/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (apr_20020309172416.tar.gz) = fcb5fa3a2ea700619588699a6e69f9e3
MD5 (apr-util_20020309172426.tar.gz) = e7d418d7144b790ab6941984e20d2ac2

1
devel/apr2/pkg-comment Normal file
View File

@ -0,0 +1 @@
The Apache Group's Portability Library

8
devel/apr2/pkg-descr Normal file
View File

@ -0,0 +1,8 @@
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/

15
devel/apr2/pkg-install Normal file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# $FreeBSD$
if [ "$2" != "PRE-INSTALL" ]; then
exit 0
fi
pkg_info 'apache-2*' > /dev/null 2<&1
if [ $? = 0 ]; then
echo "apr-devel cannot currently be installed alongside apache2. sorry."
exit 1
fi
exit 0

64
devel/apr2/pkg-plist Normal file
View File

@ -0,0 +1,64 @@
bin/apr-config
bin/apu-config
include/apr.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_lock.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_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_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/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