mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
38 lines
947 B
Makefile
38 lines
947 B
Makefile
# New ports collection makefile for: pager
|
|
# Date created: November 20 2002
|
|
# Whom: Michael Ebert <ebert@informatik.unibw-muenchen.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pager
|
|
PORTVERSION= 0.6
|
|
PORTREVISION= 9
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= http://freebsd.unixfreunde.de/sources/ \
|
|
http://mirror2.unixfreunde.de/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A pager for sawfish without GNOME
|
|
|
|
BUILD_DEPENDS= sawfish:${PORTSDIR}/x11-wm/sawfish
|
|
RUN_DEPENDS= sawfish:${PORTSDIR}/x11-wm/sawfish
|
|
|
|
USE_GMAKE= yes
|
|
MAKEFILE= GNUmakefile
|
|
USE_XORG= x11
|
|
|
|
SAWFISH_VERSION= `${LOCALBASE}/bin/sawfish --version 2>&1 | \
|
|
${SED} 's/^.*version[ ]*\([0-9.]*\).*/\1/'`
|
|
|
|
PLIST_SUB+= SAWFISH_VERSION="${SAWFISH_VERSION}"
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jl \
|
|
${PREFIX}/share/sawfish/${SAWFISH_VERSION}/lisp/sawfish/wm/ext
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|