mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
d16f7bfb92
PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1] PR: 87985 [1]
66 lines
1.7 KiB
Makefile
66 lines
1.7 KiB
Makefile
# New ports collection makefile for: maketool
|
|
# Date created: 2002-10-15
|
|
# Whom: trevor
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= maketool
|
|
PORTVERSION= 0.8.4
|
|
PORTREVISION= 5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.alphalink.com.au/~gnb/maketool/downloads/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GUI interface for make or gmake
|
|
|
|
LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \
|
|
freetype.9:${PORTSDIR}/print/freetype2
|
|
|
|
DOCS= COPYING COPYRIGHT ChangeLog TODO
|
|
GNU_CONFIGURE= yes
|
|
MAN1= maketool.1
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_GNOME= atk glib20 gtk20 pango
|
|
USE_X_PREFIX= yes
|
|
|
|
pre-install:
|
|
${ECHO_CMD} bin/maketool > ${PLIST}
|
|
.for ii in make maketool_client
|
|
${ECHO_CMD} libexec/maketool/${ii} >> ${PLIST}
|
|
.endfor
|
|
${ECHO_CMD} @dirrm libexec/maketool >> ${PLIST}
|
|
.if !defined(NOPORTDOCS)
|
|
.for ii in ${DOCS}
|
|
${ECHO_CMD} share/doc/maketool/${ii} >> ${PLIST}
|
|
.endfor
|
|
${ECHO_CMD} @dirrm share/doc/maketool >> ${PLIST}
|
|
.endif
|
|
cd ${WRKSRC}/doc/help/C/help && ${LS} | ${SED} -e \
|
|
"s:^:share/maketool/help/C/:g" >> ${PLIST}
|
|
cd ${WRKSRC}/doc/help/C && ${LS} *dat *gif | ${SED} -e \
|
|
"s:^:share/maketool/help/C/:g" >> ${PLIST}
|
|
.for ii in autoconf-dist autoconf-maint automake imake
|
|
${ECHO_CMD} share/maketool/${ii}.mk >> ${PLIST}
|
|
.endfor
|
|
.for ii in /help/C /help /
|
|
${ECHO_CMD} @dirrm share/maketool${ii} >> ${PLIST}
|
|
.endfor
|
|
${ECHO_CMD} lib/charset.alias >> ${PLIST}
|
|
${ECHO_CMD} share/locale/locale.alias >> ${PLIST}
|
|
.for ii in cs ja
|
|
${ECHO_CMD} share/locale/${ii}/LC_MESSAGES/maketool.mo >> ${PLIST}
|
|
.endfor
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for ii in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|