2000-09-18 00:46:13 +00:00
|
|
|
# New ports collection makefile for: SystemG
|
|
|
|
# Date created: 14 June 2000
|
|
|
|
# Whom: Mario S F Ferreira <lioux@linf.unb.br> et al.
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= systemg
|
|
|
|
PORTVERSION= 1.0.1
|
|
|
|
CATEGORIES= x11-fm
|
|
|
|
MASTER_SITES= ftp://ftp.newplanetsoftware.com/pub/systemg/source/
|
|
|
|
DISTNAME= SystemG_source-${PORTVERSION}
|
|
|
|
|
|
|
|
MAINTAINER= lioux@linf.unb.br
|
|
|
|
|
2000-10-03 05:00:35 +00:00
|
|
|
BUILD_DEPENDS= ${NONEXISTENT}:${JXPORT}:configure \
|
2000-09-18 00:46:13 +00:00
|
|
|
makemake:${JXPORT}
|
|
|
|
LIB_DEPENDS= jx-1_5_3.1:${JXPORT} \
|
|
|
|
jtoolbar-0_5_4.0:${PORTSDIR}/x11-toolkits/libjtoolbar \
|
|
|
|
jtree-1_1_7.1:${PORTSDIR}/x11-toolkits/libjtree
|
|
|
|
|
|
|
|
WRKSRC= ${WRKDIR}/JX-1.5.3
|
|
|
|
|
|
|
|
USE_XLIB= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
MAKE_ARGS= CC="${CC}" CXX="${CXX}" \
|
|
|
|
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
|
|
|
|
MAKE_ENV= JX_INSTALL_ROOT="${X11BASE}/bin" \
|
|
|
|
JX_LIB_ROOT="${X11BASE}/lib"
|
|
|
|
PLIST_SUB= PORTNAME="${PORTNAME}"
|
|
|
|
|
|
|
|
# Make environment
|
|
|
|
PORTINCLUDES= -I${X11BASE}/include/jx \
|
|
|
|
-I${X11BASE}/include/jcore \
|
|
|
|
-I${X11BASE}/include/jtoolbar \
|
|
|
|
-I${X11BASE}/include/jtree \
|
|
|
|
-I${X11BASE}/share/jx
|
|
|
|
|
|
|
|
# Installs dir with proper permissions
|
|
|
|
INSTALL_DATA_DIR= ${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m 755
|
|
|
|
# program files
|
|
|
|
PROGRAMFILES= systemg/systemg
|
|
|
|
# additional configuration and header files
|
|
|
|
EXTRALIB_PREFIX= ${X11BASE}/lib/jx
|
|
|
|
EXTRALIBFILES_MAKE_WRKSRC= include/make
|
|
|
|
# main jx distribution files needed for building
|
|
|
|
COPY_JXDIRS= include
|
|
|
|
COPY_JXFILES= Makefile
|
2000-10-03 05:00:35 +00:00
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2000-09-18 00:46:13 +00:00
|
|
|
# main jx distribution port wrksrc
|
|
|
|
JXPORT= ${PORTSDIR}/x11-toolkits/jx
|
2000-10-03 05:00:35 +00:00
|
|
|
JXPORT_WRKSRC!= cd ${JXPORT} && ${MAKE} -V WRKSRC
|
2000-09-18 00:46:13 +00:00
|
|
|
JX_MAKE_CONSTANTS= jtoolbar_constants jtree_constants
|
|
|
|
|
|
|
|
.if ${OSVERSION} >= 300000
|
|
|
|
ALL_TARGET= freebsd3.x
|
|
|
|
.else
|
|
|
|
ALL_TARGET= freebsd2.x
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(NOPORTDOCS)
|
|
|
|
PLIST_SUB+= PORTDOCS:="@comment "
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= PORTDOCS:=
|
|
|
|
.endif # !defined(NOPORTDOCS)
|
|
|
|
|
|
|
|
post-extract:
|
|
|
|
.for i in ${COPY_JXDIRS}
|
|
|
|
@${CP} -Rp ${JXPORT_WRKSRC}/${i} ${WRKSRC}
|
|
|
|
.endfor
|
|
|
|
.for i in ${COPY_JXFILES}
|
|
|
|
@${CP} -p ${JXPORT_WRKSRC}/${i} ${WRKSRC}
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
post-patch:
|
|
|
|
@${ECHO} "SEARCHDIRS += ${PORTINCLUDES}" >> \
|
|
|
|
${WRKSRC}/${EXTRALIBFILES_MAKE_WRKSRC}/jx_constants
|
|
|
|
|
|
|
|
pre-build:
|
|
|
|
.for i in ${JX_MAKE_CONSTANTS}
|
|
|
|
@${LN} -sf ${EXTRALIB_PREFIX}/make/${i} ${WRKSRC}/include/make
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
post-build:
|
|
|
|
@cd ${WRKSRC}/programs/${PORTNAME}; ${SETENV} ${MAKE_ENV} makemake; \
|
|
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \
|
|
|
|
${MAKEFILE} ${MAKE_ARGS}
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
# Install all programs
|
|
|
|
.for i in ${PROGRAMFILES}
|
|
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/programs/${i} ${PREFIX}/bin
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|