diff options
author | Seiichirou Hiraoka <flathill@FreeBSD.org> | 1999-10-12 16:20:56 +0000 |
---|---|---|
committer | Seiichirou Hiraoka <flathill@FreeBSD.org> | 1999-10-12 16:20:56 +0000 |
commit | 653db0c826d89df60e0237d903482081fd7aa243 (patch) | |
tree | 39eb80249d0b3773fc0c810cdb935a24986fe0f8 /audio/timidity++-gtk/Makefile | |
parent | 03ced063cfce2c382da006cf856abf0b6c56e2e9 (diff) | |
download | ports-653db0c826d89df60e0237d903482081fd7aa243.tar.gz ports-653db0c826d89df60e0237d903482081fd7aa243.zip |
Notes
Diffstat (limited to 'audio/timidity++-gtk/Makefile')
-rw-r--r-- | audio/timidity++-gtk/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/audio/timidity++-gtk/Makefile b/audio/timidity++-gtk/Makefile new file mode 100644 index 000000000000..5f386f9df293 --- /dev/null +++ b/audio/timidity++-gtk/Makefile @@ -0,0 +1,48 @@ +# New ports collection makefile for: TiMidity++ +# Version required: 1.3.10 +# Date created: 27 Feb 1999 +# Whom: Yoichi Asai <yatt@msc.biglobe.ne.jp> +# +# $FreeBSD$ +# + +DISTNAME= TiMidity++-1.3.10 +PKGNAME= timidity++-gtk-1.3.10 +CATEGORIES= audio +MASTER_SITES= http://www.goice.co.jp/member/mo/timidity/dist/ + +MAINTAINER= yatt@msc.biglobe.ne.jp + +RUN_DEPENDS= ${PREFIX}/bin/timidity:${PORTSDIR}/audio/timidity++ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +USE_XLIB= yes +USE_AUTOCONF= yes + +FILESDIR= ${.CURDIR}/../../audio/timidity++/files + +DIST_SUBDIR= timidity + +.include <bsd.port.pre.mk> + +CONFIGURE_ARGS= --prefix=${PREFIX} --with-x \ + --disable-ncurses --disable-vt100 --disable-tcltk \ + --disable-emacs --disable-xaw --disable-xskin \ + --disable-motif --disable-slang --enable-gtk=dynamic \ + --enable-network --enable-spectrogram --enable-wrd +CONFIGURE_ENV= GTK_CONFIG=${X11BASE}/bin/gtk12-config SHLD="gcc -shared" +.if ${PORTOBJFORMAT} == "elf" +CONFIGURE_ENV+= LDFLAGS=-export-dynamic +.endif + +TIMID_DIR= ${PREFIX}/lib/timidity +LINK= gtkmidi + +do-build: + cd ${WRKSRC}/interface; ${MAKE} + +do-install: + cd ${WRKSRC}/interface; ${MAKE} ${INSTALL_TARGET} + ${LN} -sf ${PREFIX}/bin/timidity ${PREFIX}/bin/${LINK} + +.include <bsd.port.post.mk> |