mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
079a18698c
- Install documentation - Assign maintership to submitter PR: ports/69056 Submitted by: Roman Bogorodskiy
38 lines
843 B
Makefile
38 lines
843 B
Makefile
# New ports collection makefile for: wmix
|
|
# Date created: 2 April 2001
|
|
# Whom: Konstantinos Konstantinidis <kkonstan@daemon.gr>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wmix
|
|
PORTVERSION= 3.1
|
|
CATEGORIES= audio windowmaker
|
|
MASTER_SITES= http://www.ne.jp/asahi/linux/timecop/software/
|
|
|
|
MAINTAINER= bogorodskiy@inbox.ru
|
|
COMMENT= An audio mixer for the WindowMaker dock with TV-like OSD
|
|
|
|
USE_REINPLACE= yes
|
|
PLIST_FILES= bin/wmix
|
|
ALL_TARGET= ${PORTNAME}
|
|
USE_XPM= yes
|
|
USE_X_PREFIX= yes
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I${X11BASE}/include" \
|
|
LDFLAGS="${LDFLAGS} -L${X11BASE}/lib"
|
|
|
|
PORTDOCS= AUTHORS BUGS INSTALL NEWS README
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wmix ${PREFIX}/bin
|
|
|
|
post-install:
|
|
.ifndef (NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|