If somebody is removed who actually wants maintainer and either didn't receive the mail, or didn't bother to reply to it, they are free to send a diff to reinstate. ok sthen@, jca@
32 lines
728 B
Makefile
32 lines
728 B
Makefile
# $OpenBSD: Makefile,v 1.11 2019/07/17 14:39:44 danj Exp $
|
|
|
|
COMMENT= dockable program launcher
|
|
|
|
DISTNAME= mterm-0.4.2b
|
|
CATEGORIES= x11
|
|
REVISION= 0
|
|
|
|
HOMEPAGE= http://mterm.sourceforge.net/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE= Yes
|
|
WANTLIB= X11 Xext Xpm c
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mterm/}
|
|
|
|
NO_TEST= Yes
|
|
|
|
ALL_TARGET= mterm
|
|
MAKE_FLAGS= CC="${CC}" FLAGS="${CFLAGS}" \
|
|
INCLUDES="-I${X11BASE}/include" \
|
|
LIB_DIRS="-L${X11BASE}/lib"
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/mterm ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/mterm.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mterm
|
|
${INSTALL_DATA} ${WRKSRC}/mtermrc.example \
|
|
${PREFIX}/share/examples/mterm/dot.mtermrc
|
|
|
|
.include <bsd.port.mk>
|