blob: 91b6edf1d4ddd86ae481e32b9ab2a4d5d69d1e20 (
plain) (
blame)
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
|
# New ports collection makefile for: g2
# Version required: 0.30
# Date created: 16 July 1998
# Whom: Bill Fumerola <billf@chc-chimes.com>
#
# $Id: Makefile,v 1.2 1998/11/09 01:17:11 steve Exp $
#
DISTNAME= g2-0.30
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= libs/graphics
MAINTAINER= billf@chc-chimes.com
BUILD_DEPENDS= ${PREFIX}/lib/libgd.a:${PORTSDIR}/graphics/gd
USE_XLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${PREFIX}/include/gd"
post-patch:
${MV} ${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.in.pre_sed
${CAT} ${WRKSRC}/Makefile.in.pre_sed | \
${SED} -e 's#DIR = /usr#DIR = ${PREFIX}#g' \
>> ${WRKSRC}/Makefile.in
do-build:
cd ${WRKSRC} ; make depend ; make
.include <bsd.port.mk>
|