diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-08-29 07:08:39 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-08-29 07:08:39 +0000 |
commit | 18f8b446780c0a4cfed7ce8ca790036e35253b87 (patch) | |
tree | 8e01a38de1bd4a0eafd77ce2bfbb21f64c1e4d8a | |
parent | Add aero to SUBDIRs (diff) |
(1) Take out x11 from CATEGORIES, we don't put it there just because it
uses X.
(2) libfwf is a static library, so take it out of LIB_DEPENDS.
(3) Add the version number to "Xpm:..." in the other LIB_DEPENDS.
(4) Reorder variables, we have a standard for these things now.
Notes
Notes:
svn path=/head/; revision=2127
-rw-r--r-- | graphics/aero/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/graphics/aero/Makefile b/graphics/aero/Makefile index fd74e6073c7a..f0dd4ba6cdfa 100644 --- a/graphics/aero/Makefile +++ b/graphics/aero/Makefile @@ -3,20 +3,21 @@ # Date created: Mon Aug 28 13:35:31 CDT 1995 # Whom: erich@rrnet.com # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1995/08/28 14:50:51 jkh Exp $ # DISTNAME= aero_1.5.2_src PKGNAME= aero-1.5.2 -CATEGORIES+= x11 CATEGORIES+= graphics MASTER_SITES= ftp://ftp.povray.org/pub/povray/modellers/aero/ -USE_X11= yes -WRKSRC= work/aero/src - -LIB_DEPENDS= fwf:${PORTSDIR}/x11/FWF \ - Xpm:${PORTSDIR}/graphics/xpm +LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm EXEC_DEPENDS= povray:${PORTSDIR}/graphics/povray +.if !exists(${X11BASE}/lib/libfwf.a) +DEPENDS= ${PORTSDIR}/x11/FWF +.endif + +USE_X11= yes +WRKSRC= work/aero/src .include <bsd.port.mk> |