1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00
freebsd-ports/x11/sterm/Makefile
Ganael LAPLANCHE 7ca355a9ce Add st, a minimalistic X terminal.
PR:		ports/156100
Submitted by:	Matthew Donovan <kitchetech at gmail.com>
2011-04-08 06:25:19 +00:00

55 lines
1.3 KiB
Makefile

# New ports collection makefile for: sterm
# Date created: April 01, 2011
# Whom: Matthew Donovan <kitchetech@gmail.com>
#
# $FreeBSD$
#
PORTNAME= sterm
PORTVERSION= 0.0.20110401
CATEGORIES= x11
MASTER_SITES= http://kitchetech.com/port/distfile/ \
LOCAL/martymac
MAINTAINER= kitchetech@gmail.com
COMMENT= A simple X terminal
RUN_DEPENDS= ${LOCALBASE}/share/misc/terminfo.db:${PORTSDIR}/devel/ncurses
LICENSE= BSD
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_XORG= x11
MAN1= st.1
PLIST_FILES= bin/st
PORTDOCS= README
pre-everything::
@${ECHO_MSG} "You can build st with your own config.h using the ST_CONF knob:"
@${ECHO_MSG} "make ST_CONF=/path/to/st/config.h install clean"
post-patch:
.if defined(ST_CONF)
@${ECHO_MSG} "creating config.h from ${ST_CONF}"
@${CP} ${ST_CONF} ${WRKSRC}/config.h
.endif
@${REINPLACE_CMD} -e 's|^VERSION = .*|VERSION = ${PORTVERSION}|' \
-e 's|^PREFIX = .*|PREFIX = ${PREFIX}|' \
-e 's|^LOCALBASE = .*|LOCALBASE = ${LOCALBASE}|' \
-e "s|^MANPREFIX = .*|MANPREFIX = ${MANPREFIX}/man|" \
-e "s|^X11INC = .*|X11INC = ${LOCALBASE}/include|" \
-e "s|^X11LIB = .*|X11LIB = ${LOCALBASE}/lib|" \
${WRKSRC}/config.mk
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>