mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
bfac0f2f87
PR: ports/17827, ports/17828 Submitted by: Yoichi ASAI <yatt@msc.biglobe.ne.jp>
83 lines
2.1 KiB
Makefile
83 lines
2.1 KiB
Makefile
# New ports collection makefile for: TiMidity++
|
|
# Date created: 27 Feb 1999
|
|
# Whom: Yoichi Asai <yatt@msc.biglobe.ne.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= timidity++
|
|
PORTVERSION= 2.9.2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.goice.co.jp/member/mo/timidity/dist/
|
|
DISTNAME= TiMidity++-${PORTVERSION}
|
|
|
|
MAINTAINER= yatt@msc.biglobe.ne.jp
|
|
|
|
# If you don't have X11, type "make -DWITHOUT_X11" or uncomment this.
|
|
#WITHOUT_X11= yes
|
|
|
|
SLAVEDIRS= audio/timidity++-emacs
|
|
# rest are included by timidity++-emacs port
|
|
SLAVEDIRS+= audio/timidity++-gtk audio/timidity++-motif \
|
|
audio/timidity++-slang audio/timidity++-tcltk \
|
|
audio/timidity++-xaw audio/timidity++-xskin
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
.if !defined(WITHOUT_X11)
|
|
USE_XLIB= yes
|
|
LIB_DEPENDS+= png.3:${PORTSDIR}/graphics/png
|
|
.endif
|
|
|
|
DIST_SUBDIR= timidity
|
|
INSTALL_TARGET= install install.man
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
CONFIGURE_ARGS= --with-x --enable-ncurses --enable-vt100 \
|
|
--enable-dynamic --enable-server \
|
|
--enable-network --enable-spectrogram --enable-wrd
|
|
.else
|
|
CONFIGURE_ARGS= --enable-ncurses --enable-vt100 \
|
|
--enable-network --disable-spectrogram --disable-wrd
|
|
.endif
|
|
|
|
.if defined(WITH_ESOUND)
|
|
LIB_DEPENDS+= esd.2:${PORTSDIR}/audio/esound
|
|
CONFIGURE_ARGS+= --enable-audio=oss,esd
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-audio=oss
|
|
.endif
|
|
|
|
MAN1= timidity.1
|
|
MAN5= timidity.cfg.5
|
|
|
|
MANLANG= "" ja
|
|
DOCFILES= README.dl README.sf
|
|
DOCLANG= C ja_JP.ujis
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORTOBJFORMAT} == "elf"
|
|
CONFIGURE_ENV= LDFLAGS=-export-dynamic
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/ja_JP.ujis/timidity.1 \
|
|
${PREFIX}/man/ja/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/ja_JP.ujis/timidity.cfg.5 \
|
|
${PREFIX}/man/ja/man5
|
|
.if !defined(NOPORTDOCS)
|
|
.for lang in ${DOCLANG}
|
|
@${MKDIR} \
|
|
${PREFIX}/share/doc/timidity/`echo ${lang} | ${SED} 's/_JP.ujis//'`
|
|
for f in ${DOCFILES}; do \
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${lang}/$$f \
|
|
${PREFIX}/share/doc/timidity/`echo ${lang} | ${SED} 's/_JP.ujis//'`; \
|
|
done;
|
|
.endfor
|
|
.endif
|
|
${SETENV} PKG_PREFIX=${PREFIX} \
|
|
${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|