diff options
author | roberto <roberto@FreeBSD.org> | 2002-03-15 00:39:26 +0800 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2002-03-15 00:39:26 +0800 |
commit | c83d377e24746cae30e5f2455cea1a80eff47f01 (patch) | |
tree | 1b4d0e9a4af4a5842a3125b87bf971df868eaaf5 /devel/apr/Makefile | |
parent | c2fa7189e74b5f20e1342b79f838219d1aef9bff (diff) | |
download | freebsd-ports-gnome-c83d377e24746cae30e5f2455cea1a80eff47f01.tar.gz freebsd-ports-gnome-c83d377e24746cae30e5f2455cea1a80eff47f01.tar.zst freebsd-ports-gnome-c83d377e24746cae30e5f2455cea1a80eff47f01.zip |
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>
Diffstat (limited to 'devel/apr/Makefile')
-rw-r--r-- | devel/apr/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/devel/apr/Makefile b/devel/apr/Makefile new file mode 100644 index 000000000000..ba2ecba26526 --- /dev/null +++ b/devel/apr/Makefile @@ -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> |