mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
6527ef2070
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)
34 lines
602 B
Makefile
34 lines
602 B
Makefile
# New ports collection makefile for: cplay
|
|
# Date created: 1 November 2001
|
|
# Whom: Jochem Kossen
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cplay
|
|
PORTVERSION= 1.49
|
|
PORTREVISION= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ftp://ftp.SpringDaemons.com/soft/
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= A curses based front-end for various audio players
|
|
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
USE_PYTHON= yes
|
|
MAN1= cplay.1
|
|
|
|
MAKE_ARGS+= PREFIX="${PREFIX}"
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|