diff options
author | miwi <miwi@058c260c-8361-11dd-a0ac-aa2bafec7d09> | 2012-04-22 16:36:22 +0800 |
---|---|---|
committer | miwi <miwi@058c260c-8361-11dd-a0ac-aa2bafec7d09> | 2012-04-22 16:36:22 +0800 |
commit | fd3e71b38e5fa7bf53b72942f4cf4be8eb2e4cec (patch) | |
tree | 3c7e0215308296a7eeea412b0438a2c97285da07 /x11/xorg/Makefile | |
parent | f0214fdce07e06b021df8a53b7ebc438a35335b4 (diff) | |
download | xorg-devel-ports-fd3e71b38e5fa7bf53b72942f4cf4be8eb2e4cec.tar xorg-devel-ports-fd3e71b38e5fa7bf53b72942f4cf4be8eb2e4cec.tar.gz xorg-devel-ports-fd3e71b38e5fa7bf53b72942f4cf4be8eb2e4cec.tar.bz2 xorg-devel-ports-fd3e71b38e5fa7bf53b72942f4cf4be8eb2e4cec.tar.lz xorg-devel-ports-fd3e71b38e5fa7bf53b72942f4cf4be8eb2e4cec.tar.xz xorg-devel-ports-fd3e71b38e5fa7bf53b72942f4cf4be8eb2e4cec.tar.zst xorg-devel-ports-fd3e71b38e5fa7bf53b72942f4cf4be8eb2e4cec.zip |
- Update meta port to 7.7 rc1
git-svn-id: https://trillian.chruetertee.ch/svn/ports/trunk@469 058c260c-8361-11dd-a0ac-aa2bafec7d09
Diffstat (limited to 'x11/xorg/Makefile')
-rw-r--r-- | x11/xorg/Makefile | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/x11/xorg/Makefile b/x11/xorg/Makefile new file mode 100644 index 0000000..209ce04 --- /dev/null +++ b/x11/xorg/Makefile @@ -0,0 +1,64 @@ +# New ports collection makefile for: xorg +# Date created: 18 Jun 2004 +# Whom: anholt +# +# $FreeBSD$ +# + +PORTNAME= xorg +PORTVERSION= 1.6.99.901 +CATEGORIES= x11 +MASTER_SITES= # none +DISTFILES= # none +EXTRACT_ONLY= # none + +MAINTAINER= x11@FreeBSD.org +COMMENT= X.Org complete distribution metaport + +NO_BUILD= yes + +RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/dri.pc:${PORTSDIR}/graphics/dri + +# data +RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/xbitmaps.pc:${PORTSDIR}/x11/xbitmaps \ + ${LOCALBASE}/lib/X11/icons/handhelds/cursors/X_cursor:${PORTSDIR}/x11-themes/xcursor-themes + +# doc +.if !defined(NOPORTDOCS) +RUN_DEPENDS+= ${LOCALBASE}/share/doc/xorg-docs/README.xml:${PORTSDIR}/x11/xorg-docs +.endif + +# app, lib, font, driver +RUN_DEPENDS+= ${LOCALBASE}/libdata/xorg/apps:${PORTSDIR}/x11/xorg-apps \ + ${LOCALBASE}/libdata/xorg/libraries:${PORTSDIR}/x11/xorg-libraries \ + ${LOCALBASE}/libdata/xorg/fonts:${PORTSDIR}/x11-fonts/xorg-fonts \ + ${LOCALBASE}/libdata/xorg/drivers:${PORTSDIR}/x11-drivers/xorg-drivers + +.if defined(XORG_COMPLETE) +RUN_DEPENDS+= Xnest:${PORTSDIR}/x11-servers/xorg-nestserver \ + Xdmx:${PORTSDIR}/x11-servers/xorg-dmx \ + Xvfb:${PORTSDIR}/x11-servers/xorg-vfbserver +.endif + +do-install: # empty + +pre-everything:: + @${ECHO_MSG} "This is a meta-port, meaning that it just depends on its subparts of the port." + @${ECHO_MSG} "It won't build and install all the parts until you have typed make install" + @${ECHO_MSG} "This port does not ensure things are upgraded; use portupgrade if you want to" + @${ECHO_MSG} "upgrade X.Org. If you simply type 'make install' it may use over 2GB to build" + @${ECHO_MSG} "all of the subports. You can install the ports singly if you are low on space." + +.include <bsd.port.pre.mk> + +.if make(package) +.if !defined(DEPENDS_TARGET:Mpackage) || empty(DEPENDS_TARGET:Mpackage) +DEPENDS_TARGET="package" +.endif +.endif + +.if ${ARCH} != "alpha" +RUN_DEPENDS+= ${LOCALBASE}/bin/Xorg:${PORTSDIR}/x11-servers/xorg-server +.endif + +.include <bsd.port.post.mk> |