diff options
author | cperciva <cperciva@FreeBSD.org> | 2005-09-18 06:30:28 +0800 |
---|---|---|
committer | cperciva <cperciva@FreeBSD.org> | 2005-09-18 06:30:28 +0800 |
commit | d8bae3361553c3a7cbfb23ea8a529eb6fa012700 (patch) | |
tree | a02dc7a0ab77b9c323c500f5c1a8df7c75736896 | |
parent | 0e5b4843f8aa2d537ff7dbf6c1f4cc2ce6a0bc61 (diff) | |
download | freebsd-ports-gnome-d8bae3361553c3a7cbfb23ea8a529eb6fa012700.tar.gz freebsd-ports-gnome-d8bae3361553c3a7cbfb23ea8a529eb6fa012700.tar.zst freebsd-ports-gnome-d8bae3361553c3a7cbfb23ea8a529eb6fa012700.zip |
Since MASTERDIR isn't autodefined by bsd.port.mk until after
bsd.port.pre.mk is included, move the block which uses it to be after
said inclusion. This makes timidity++ cease to depend upon itself,
and unbreaks portsnap's INDEX-building.
Approved by: linimon
-rw-r--r-- | audio/timidity++/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/audio/timidity++/Makefile b/audio/timidity++/Makefile index 4c9af985fd18..8e57877c4e40 100644 --- a/audio/timidity++/Makefile +++ b/audio/timidity++/Makefile @@ -31,14 +31,6 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS?=--enable-interface=ncurses,vt100,server CONFIGURE_ARGS+=--program-transform-name= --enable-network -.if ${.CURDIR} == ${MASTERDIR} -MANLANG= "" ja -MAN1= timidity.1 -MAN5= timidity.cfg.5 -.else -RUN_DEPENDS+= ${LOCALBASE}/bin/timidity:${PORTSDIR}/audio/timidity++ -.endif - PLIST_SUB= EUCJP_LOCALE=${EUCJP_LOCALE} TIMID_LIBDIR=${TIMID_LIBDIR} \ ELISPDIR=share/emacs/site-lisp @@ -49,6 +41,14 @@ TIMID_LIBDIR= lib/timidity .include <bsd.port.pre.mk> +.if ${.CURDIR} == ${MASTERDIR} +MANLANG= "" ja +MAN1= timidity.1 +MAN5= timidity.cfg.5 +.else +RUN_DEPENDS+= ${LOCALBASE}/bin/timidity:${PORTSDIR}/audio/timidity++ +.endif + .if defined(WITHOUT_X11) CONFIGURE_ARGS+=--without-x --disable-spectrogram --disable-wrd --disable-dynamic .else |