pkgsrc: add options.mk for optional encoders Changes: 3 Oct 2015 - 2.8 ================= - Updates to Sweedish, Norwegian, Russian, and Danish translations. - Fixed a couple of (unlikely) memory corruption bugs and some minor memory leaks. 26 Jan 2015 - 2.7 ================= - Added an option (enabled by default) to rip much faster. 24 Nov 2014 - 2.6 ================= - Added 64 translations generated by the OSTD ( http://littlesvr.ca/ostd ): Afrikaans, Amharic, Aragonese, Assamese, Azerbaijani, Belarusian, Bengali, Breton, Welsh, Dzongkha, Persian, Fulah, Faroese, Western, Irish, Gujarati, Hindi, Haitian, Armenian, Interlingua, Indonesian, Icelandic, Georgian, Kazakh, Centra, Korean, Kurdish, Kirghiz, Latin, Luxembourgish, Ganda, Lithuanian, Malagasy, Macedonian, Malayalam, Mongolian, Marathi, Malay, Burmese, Nepali, Occitan, Oriya, Panjabi, Pushto, Romanian, Kinyarwanda, Sinhala, Tamil, Telugu, Thai, Turkmen, Tagalog, Tatar, Uighur, Ukrainian, Urdu, Uzbek, Uzbek (Cyrillic), Vietnamese, Walloon, Wolof, Xhosa, Yiddish, and Zulu - Updated Simplified Chinese, Czeck, Italian, and Norwegean translations.
35 lines
817 B
Makefile
35 lines
817 B
Makefile
# $NetBSD: options.mk,v 1.1 2018/04/25 12:57:24 triaxx Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.asunder
|
|
PKG_SUPPORTED_OPTIONS= flac lame mac mpcenc opus vorbis wavpack
|
|
PKG_SUGGESTED_OPTIONS= flac lame
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mflac)
|
|
DEPENDS+= flac-[0-9]*:../../audio/flac
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mlame)
|
|
DEPENDS+= lame-[0-9]*:../../audio/lame
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmac)
|
|
DEPENDS+= mac-[0-9]*:../../audio/mac
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmpcenc)
|
|
DEPENDS+= musepack-[0-9]*:../../audio/musepack
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mopus)
|
|
DEPENDS+= opus-tools-[0-9]*:../../audio/opus-tools
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mvorbis)
|
|
DEPENDS+= vorbis-tools-[0-9]*:../../audio/vorbis-tools
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mwavpack)
|
|
DEPENDS+= wavpack-[0-9]*:../../audio/wavpack
|
|
.endif
|