diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-02-01 11:43:48 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-02-01 11:43:48 +0000 |
commit | 7cc2163b4339873e25ffe807774a4a9bf410845f (patch) | |
tree | 82bfd8648df0cd5d69fcaa31710b2dcce17174c0 /www/mozilla-headers-vendor/Makefile | |
parent | e933ce7df6545b7c2d588e683c98408e102fdd02 (diff) | |
download | FreeBSD-ports-7cc2163b4339873e25ffe807774a4a9bf410845f.zip FreeBSD-ports-7cc2163b4339873e25ffe807774a4a9bf410845f.tar.gz |
Split mozilla even more. This port is to provide set of Mozilla headers
required to compile Gecko-using software (nautilus, galeon etc).
Diffstat (limited to 'www/mozilla-headers-vendor/Makefile')
-rw-r--r-- | www/mozilla-headers-vendor/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/www/mozilla-headers-vendor/Makefile b/www/mozilla-headers-vendor/Makefile new file mode 100644 index 0000000..a395a21 --- /dev/null +++ b/www/mozilla-headers-vendor/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: mozilla-headers +# Date created: 1 February 2001 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= mozilla-headers +PORTVERSION= ${MAKE} -V PORTVERSION -f ${MAINDIR}/${MAKEFILE} +PORTREVISION= ${MAKE} -V PORTREVISION -f ${MAINDIR}/${MAKEFILE} +PORTEPOCH= ${MAKE} -V PORTEPOCH -f ${MAINDIR}/${MAKEFILE} +CATEGORIES= www +DISTFILES= + +MAINTAINER= sobomax@FreeBSD.org + +BUILD_DEPENDS= /nonexistent:${PORTSDIR}/www/mozilla:configure + +USE_X_PREFIX= yes + +MAINDIR= ${.CURDIR}/../mozilla +PORTVERSION!= ${PORTVERSION} +PORTREVISION!= ${PORTREVISION} +PORTEPOCH!= ${PORTEPOCH} +RUN_DEPENDS!= ${RUN_DEPENDS} +LIB_DEPENDS!= ${LIB_DEPENDS} +WRKSRC= ${WRKDIRPREFIX}${MAINDIR}/work/mozilla +USE_GMAKE= yes +ALL_TARGET= export + +do-install: + ${MKDIR} ${PREFIX}/include/mozilla + ${CHMOD} 755 ${PREFIX}/include/mozilla + cd ${WRKSRC}/dist/include && ${TAR} -chf - . | \ + ${TAR} --unlink -xf - -C ${PREFIX}/include/mozilla + +.include <bsd.port.mk> |