blob: 76c72f0540b1827138e83e74218aa4b83f642619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# New ports collection makefile for: XFree86
# Version required: 3.2
# Date created: 5 January 1995
# Whom: jmz
#
# $Id: Makefile,v 1.17 1996/02/15 00:53:15 jmz Exp $
#
#######################################################################
# #
# Configurable Section #
# #
#######################################################################
#
# Define FORCE_PACKAGE from the command line if you want to override
# this and build a package
NO_PACKAGE = yes
#######################################################################
DISTNAME = xc
PKGNAME = XFree86-3.2
CATEGORIES = x11
IS_INTERACTIVE = yes
PREFIX = /usr/X11R6
MAINTAINER= jmz@FreeBSD.ORG
do-build:
@(cd ${WRKSRC}; echo Good night...; make World 2>&1 | tee world.log)
@touch ${WRKDIR}/.build_done
do-install:
@(cd ${WRKSRC}; make install; make install.man)
@touch ${WRKDIR}/.install_done
.include "Makefile.ftp"
post-install:
ldconfig -m ${PREFIX}/lib
.include <bsd.port.mk>
|