diff options
author | trevor <trevor@FreeBSD.org> | 2003-08-22 18:47:57 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-08-22 18:47:57 +0800 |
commit | 9d4975142b01e3540b2ac0f5728e17a85a4ebefd (patch) | |
tree | f58b0cdca493dc2eff5513e4c039c0830a3e0f09 /x11-wm/pawm/Makefile | |
parent | c438445655bf1bef6b7de6c2fea4dd7ea6f5c556 (diff) | |
download | freebsd-ports-gnome-9d4975142b01e3540b2ac0f5728e17a85a4ebefd.tar.gz freebsd-ports-gnome-9d4975142b01e3540b2ac0f5728e17a85a4ebefd.tar.zst freebsd-ports-gnome-9d4975142b01e3540b2ac0f5728e17a85a4ebefd.zip |
new port of pawm, the Puto Amo Window Manager
(leopard hat, platform shoes and gold Cadillac not included)
Diffstat (limited to 'x11-wm/pawm/Makefile')
-rw-r--r-- | x11-wm/pawm/Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/x11-wm/pawm/Makefile b/x11-wm/pawm/Makefile new file mode 100644 index 000000000000..eec99c8ec1e9 --- /dev/null +++ b/x11-wm/pawm/Makefile @@ -0,0 +1,57 @@ +# New ports collection makefile for: pawm +# Date created: 2002-08-22 +# Whom: trevor +# +# $FreeBSD$ +# + +PORTNAME= pawm +PORTVERSION= 1.9.3 +CATEGORIES= x11-wm +MASTER_SITES= http://www.pleyades.net/pawm/files/ + +MAINTAINER= trevor@FreeBSD.org +COMMENT= The Puto Amo Window Manager + +BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash2 + +DOCS= AUTHORS Changelog GPL INSTALL README THANKS +PLIST= ${WRKDIR}/pkg-plist +USE_BZIP2= yes +USE_GMAKE= yes +USE_X_PREFIX= yes + +do-configure: + cd ${WRKSRC} && \ + bash ./0 --prefix=${PREFIX} --datadir=${PREFIX}/share/pawm + +pre-install: + ${ECHO_CMD} bin/pawm > ${PLIST} + ${ECHO_CMD} etc/pawm.conf >> ${PLIST} + for ii in `${LS} ${WRKSRC}/data/icons`; do \ + ${ECHO_CMD} share/pawm/icons/$$ii >> ${PLIST}; \ + done + ${ECHO_CMD} @dirrm share/pawm/icons >> ${PLIST} + ${ECHO_CMD} @dirrm share/pawm >> ${PLIST} +.if !defined(NOPORTDOCS) + ${ECHO_CMD} @dirrm share/doc/pawm >> ${PLIST} +.for ii in ${DOCS} + ${ECHO_CMD} share/doc/pawm/${ii} >> ${PLIST} +.endfor +.endif + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/pawm ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/conf/pawm.conf ${PREFIX}/etc/ + ${MKDIR} ${PREFIX}/share/pawm/icons + for ii in `${LS} ${WRKSRC}/data/icons/*`; do \ + ${INSTALL_DATA} $$ii ${PREFIX}/share/pawm/icons ; \ + done +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for ii in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |