diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2013-05-07 22:20:56 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2013-05-07 22:20:56 +0800 |
commit | 55de504330bb1dfa245e002d8421cf5dc7c2d8f4 (patch) | |
tree | e81232938ede13c262a5a9f86ea11e66d91b90ec /audio | |
parent | 5cb6bb15af27e6115c148ad7dc93bb4a1ddeafd7 (diff) | |
download | freebsd-ports-gnome-55de504330bb1dfa245e002d8421cf5dc7c2d8f4.tar.gz freebsd-ports-gnome-55de504330bb1dfa245e002d8421cf5dc7c2d8f4.tar.zst freebsd-ports-gnome-55de504330bb1dfa245e002d8421cf5dc7c2d8f4.zip |
- Use new options framework
- Trim header
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mikmod/Makefile | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/audio/mikmod/Makefile b/audio/mikmod/Makefile index 6655e9ec765f..44b68b1637ae 100644 --- a/audio/mikmod/Makefile +++ b/audio/mikmod/Makefile @@ -1,9 +1,5 @@ -# ports collection makefile for: mikmod304 -# Date created: 16 November 1998 -# Whom: yoshiaki Uchikawa -# +# Created by: Yoshiaki Uchikawa # $FreeBSD$ -# PORTNAME= mikmod PORTVERSION= 3.2.1 @@ -17,19 +13,27 @@ COMMENT= Mod player which plays MTM, STM, XM, MOD, S3M, ULT, UNI, and IT mods LICENSE= GPLv2 -LIB_DEPENDS= mikmod.2:${PORTSDIR}/audio/libmikmod +LIB_DEPENDS= mikmod:${PORTSDIR}/audio/libmikmod USE_GMAKE= yes GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes -.ifdef (WITH_COLOR) -CONFIGURE_ARGS+= --enable-color-interface -.endif - MAN1= mikmod.1 PLIST_FILES= bin/mikmod PORTSCOUT= skipv:3.3.0 +OPTIONS_DEFINE= COLOR + +COLOR_DESC= Build with color support + +OPTIONS_DEFAULT=COLOR + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MCOLOR} +CONFIGURE_ARGS+= --enable-color-interface +.endif + .include <bsd.port.mk> |