39 lines
804 B
Makefile
39 lines
804 B
Makefile
# $OpenBSD: Makefile,v 1.4 2002/12/29 19:29:57 fgsch Exp $
|
|
|
|
COMMENT= 'wm-dockapp; audio mixer'
|
|
|
|
DISTNAME= wmix-3.0
|
|
CATEGORIES= audio x11 x11/windowmaker
|
|
|
|
HOMEPAGE= http://www.ne.jp/asahi/linux/timecop/
|
|
|
|
MAINTAINER= Han Boetes <han@mijncomputer.nl>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}software/
|
|
|
|
MAKE_ENV= CC="${CC}"
|
|
USE_X11= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
ALL_TARGET= wmix
|
|
|
|
DOCS= README
|
|
DOCDIR= ${PREFIX}/share/doc/wmix
|
|
SAMPLES= sample.wmixrc
|
|
SAMPLE_DIR= ${PREFIX}/share/examples/wmix
|
|
SUBST_VARS+= SAMPLE_DIR
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR} ${SAMPLE_DIR}
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} ${DOCS} ${DOCDIR} && \
|
|
${INSTALL_DATA} ${SAMPLES} ${SAMPLE_DIR}
|
|
|
|
.include <bsd.port.mk>
|