mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +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
719 B
Makefile
34 lines
719 B
Makefile
# New ports collection makefile for: kmp
|
|
# Date created: Apr 2, 2004
|
|
# Whom: Mark Reidel <ports@mark.reidel.info>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kmp
|
|
PORTVERSION= 0.01
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://mercury.chem.pitt.edu/~shank/ \
|
|
http://www.threadbox.net/files/
|
|
|
|
MAINTAINER= ports@mark.reidel.info
|
|
COMMENT= A graphical interface to musicpd written with Qt
|
|
|
|
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
|
|
|
|
USE_BZIP2= true
|
|
USE_QT_VER= 3
|
|
MAKE_ENV= QTDIR="${QT_PREFIX}"
|
|
|
|
PLIST_FILES= bin/kmp
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} qmake \
|
|
-spec ${LOCALBASE}/share/qt/mkspecs/freebsd-g++ kmp.pro
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/kmp ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|