mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +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]
89 lines
2.3 KiB
Makefile
89 lines
2.3 KiB
Makefile
# New ports collection makefile for: blwm
|
|
# Date created: 2002-03-15
|
|
# Whom: trevor
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= blwm
|
|
PORTVERSION= 1.0.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-wm portuguese
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= trevor
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Portuguese derivative of qvwm, simplified to conserve resources
|
|
|
|
RUN_DEPENDS= xsetbg:${PORTSDIR}/x11/xloadimage
|
|
|
|
USE_AUTOTOOLS= automake:14 autoconf:213
|
|
USE_PERL5_BUILD=yes
|
|
GNU_CONFIGURE= yes
|
|
MAN1= blwm.1x
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
USE_GMAKE= yes
|
|
USE_X_PREFIX= yes
|
|
USE_XPM= yes
|
|
DOCS= AUTHORS BUGS COPYING CREDITS FreeBSD INSTALAR LEIAME TODO
|
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX}
|
|
|
|
do-patch:
|
|
${PERL} -pi -e "s:wmsetbg:xsetbg:g ; \
|
|
s:/usr/local/lib/blwm:${PREFIX}/lib/blwm:g" \
|
|
${WRKSRC}/rc/*
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && \
|
|
${ACLOCAL} && \
|
|
${AUTOHEADER} && \
|
|
${AUTOCONF} && \
|
|
${AUTOMAKE}
|
|
|
|
pre-install:
|
|
${ECHO_CMD} bin/blwm > ${PLIST}
|
|
.if !defined(NOPORTDOCS)
|
|
.for ii in ${DOCS} ChangeLog INSTALL README
|
|
${ECHO_CMD} share/doc/blwm/${ii} >> ${PLIST}
|
|
.endfor
|
|
${ECHO_CMD} @dirrm share/doc/blwm >> ${PLIST}
|
|
.endif
|
|
for ii in `${LS} ${WRKSRC}/images | ${GREP} xpm`; do \
|
|
${ECHO_CMD} lib/blwm/images/$$ii >> ${PLIST}; \
|
|
done
|
|
for ii in `${LS} ${WRKSRC}/themes | ${GREP} -v Makefile`; do \
|
|
${ECHO_CMD} lib/blwm/themes/$$ii >> ${PLIST}; \
|
|
done
|
|
for ii in `${LS} ${WRKSRC}/rc | ${GREP} -v Makefile`; do \
|
|
${ECHO_CMD} lib/blwm/conf/$$ii >> ${PLIST}; \
|
|
done
|
|
.for ii in /conf /images /themes /
|
|
${ECHO_CMD} @dirrm lib/blwm${ii} >> ${PLIST}
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/blwm ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for ii in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${ii} ${DOCSDIR}
|
|
.endfor
|
|
.for ii in ChangeLog INSTALL README
|
|
${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
${MKDIR} ${PREFIX}/lib/blwm/conf \
|
|
${PREFIX}/lib/blwm/images \
|
|
${PREFIX}/lib/blwm/themes
|
|
${INSTALL_DATA} ${WRKSRC}/images/*xpm ${PREFIX}/lib/blwm/images
|
|
for i in `${LS} ${WRKSRC}/rc/* | ${GREP} -v Makefile`; do \
|
|
${INSTALL_DATA} $$i ${PREFIX}/lib/blwm/conf ; \
|
|
done
|
|
for i in `${LS} ${WRKSRC}/themes/* | ${GREP} -v Makefile`; do \
|
|
${INSTALL_DATA} $$i ${PREFIX}/lib/blwm/themes ; \
|
|
done
|
|
${INSTALL_MAN} ${WRKSRC}/man/blwm.1x ${MANPREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|