mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
dc7fa8d39c
Note you _CANNOT_ use ${SED} and ${AWK} in "!=" lines. I wish people would STOP running `portlint' on this Makefile and blindly accpeting its output w/o understanding it. To quote Henry Spencer: I Thou shalt run lint frequently and study its pronouncements with care, for verily its perception and judgement oft exceed thine. ..snip.. ``Study'' doth not mean mindless zeal to eradicate every byte of lint output--if for no other reason, because thou just canst not shut it up about some things--but that thou should know the cause of its unhappiness and understand what worrisome sign it tries to speak of. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
64 lines
1.6 KiB
Makefile
64 lines
1.6 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: ddd
|
|
# Date created: Tue Jan 28, 1997
|
|
# Whom: David O'Brien (obrien@NUXI.com)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ddd
|
|
PORTVERSION= 3.2.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ddd
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-motif-libraries="${LIBXMDIR}" \
|
|
--with-readline-libraries=/usr/lib
|
|
USE_GMAKE= yes
|
|
USE_XPM= yes
|
|
REQUIRES_MOTIF= yes
|
|
|
|
MAN1= ddd.1
|
|
|
|
.if defined(MOTIFLIB)
|
|
.if defined(MOTIF_STATIC)
|
|
LIBXMDIR!= ${ECHO} ${MOTIFLIB} | sed -e 's/\/libXm\.a//g' | awk '{print $$1}'
|
|
.else
|
|
LIBXMDIR!= ${ECHO} ${MOTIFLIB} | sed -e 's/-L//g' | awk '{print $$1}'
|
|
.endif
|
|
.else
|
|
LIBXMDIR= ${X11BASE}
|
|
.endif
|
|
|
|
pre-configure:
|
|
@/usr/bin/find ${WRKSRC} -name configure | /usr/bin/xargs \
|
|
${PERL} -pi -e "s|-O2|-g|"
|
|
|
|
post-configure:
|
|
${ECHO} "LIBXM = ${MOTIFLIB}" >> ${WRKSRC}/ddd/Makefile
|
|
|
|
pre-build:
|
|
@${RM} -f ${WRKSRC}/doc/ddd.info*
|
|
|
|
post-install:
|
|
/usr/bin/install-info ${PREFIX}/info/ddd.info ${PREFIX}/info/dir
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/ddd
|
|
${INSTALL_DATA} ${WRKSRC}/PROBLEMS ${PREFIX}/share/doc/ddd
|
|
${INSTALL_DATA} ${WRKSRC}/doc/README ${PREFIX}/share/doc/ddd
|
|
${INSTALL_DATA} ${WRKSRC}/doc/ddd-paper.ps ${PREFIX}/share/doc/ddd
|
|
${INSTALL_DATA} ${WRKSRC}/doc/ddd.ps ${PREFIX}/share/doc/ddd
|
|
${INSTALL_DATA} ${WRKSRC}/doc/sample.dddinit ${PREFIX}/share/doc/ddd
|
|
${GZIP_CMD} ${PREFIX}/share/doc/ddd/ddd-paper.ps
|
|
${GZIP_CMD} ${PREFIX}/share/doc/ddd/ddd.ps
|
|
.endif
|
|
|
|
check:
|
|
(cd ${WRKSRC} ; ${GMAKE} check)
|
|
|
|
.include <bsd.port.mk>
|