Don't use ${FLAVOR:L}, we only support lower-case flavours now.
OK ajacoutot@ espie@
This commit is contained in:
parent
6ecc81e38f
commit
f5a323c546
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.41 2013/02/07 19:06:55 kurt Exp $
|
||||
# $OpenBSD: Makefile,v 1.42 2013/02/09 14:49:50 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
ONLY_FOR_ARCHS= amd64 i386
|
||||
@ -77,7 +77,7 @@ BUILD_DEPENDS= archivers/zip \
|
||||
MODULES= converters/libiconv
|
||||
WANTLIB= X11 Xext Xi Xtst c freetype m pthread sndio stdc++ z
|
||||
|
||||
.if ${FLAVOR:L:Mnative_bootstrap}
|
||||
.if ${FLAVOR:Mnative_bootstrap}
|
||||
INSTALLED!= (pkg_info -e "jdk->=1.6,<1.7" -q && echo yes) || echo no
|
||||
.if ${INSTALLED:L} != "yes"
|
||||
ERRORS += "Fatal: This flavor requires an installed 1.6 jdk package"
|
||||
@ -125,7 +125,7 @@ MAKE_ENV+= ALT_BOOTDIR=${ALT_BOOTDIR} \
|
||||
WARNINGS_ARE_ERRORS="" \
|
||||
HOTSPOT_BUILD_JOBS=${HOTSPOT_BUILD_JOBS}
|
||||
|
||||
.if !${FLAVOR:L:Mwith_ipv6}
|
||||
.if !${FLAVOR:Mwith_ipv6}
|
||||
MAKE_ENV+= DONT_ENABLE_IPV6=YES
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.58 2013/02/07 19:06:56 kurt Exp $
|
||||
# $OpenBSD: Makefile,v 1.59 2013/02/09 14:49:50 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
ONLY_FOR_ARCHS= i386 amd64
|
||||
@ -50,7 +50,7 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
USE_GROFF = Yes
|
||||
NO_REGRESS= Yes
|
||||
|
||||
.if ${FLAVOR:L:Mnative_bootstrap}
|
||||
.if ${FLAVOR:Mnative_bootstrap}
|
||||
INSTALLED!= (pkg_info -qe "jdk->=1.7.0.00v0,<1.8v0" && echo yes) || echo no
|
||||
.if ${INSTALLED:L} != "yes"
|
||||
ERRORS += "Fatal: This flavor requires an installed 1.7.0.00v0 or greater jdk package"
|
||||
@ -96,7 +96,7 @@ MAKE_ENV= ALT_BOOTDIR=${ALT_BOOTDIR} \
|
||||
|
||||
#ALL_TARGET= debug_build
|
||||
|
||||
.if !${FLAVOR:L:Mwith_ipv6}
|
||||
.if !${FLAVOR:Mwith_ipv6}
|
||||
MAKE_ENV+= DONT_ENABLE_IPV6="YES"
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.21 2013/02/05 10:39:29 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.22 2013/02/09 14:49:50 sthen Exp $
|
||||
|
||||
COMMENT= discovery-based unittest extension
|
||||
|
||||
@ -26,7 +26,7 @@ MODULES= lang/python
|
||||
FLAVORS= python3
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mpython3}
|
||||
.if ${FLAVOR:Mpython3}
|
||||
NO_REGRESS= Yes
|
||||
.else
|
||||
REGRESS_DEPENDS= devel/py-nose \
|
||||
@ -51,7 +51,7 @@ post-install:
|
||||
find . ! -type d -exec ${INSTALL_DATA} {} \
|
||||
${PREFIX}/share/examples/${MODPY_PY_PREFIX}nose/{} \;
|
||||
rm ${PREFIX}/bin/nosetests-${MODPY_VERSION}
|
||||
.if ${FLAVOR:L:Mpython3}
|
||||
.if ${FLAVOR:Mpython3}
|
||||
mv ${PREFIX}/bin/nosetests \
|
||||
${PREFIX}/bin/nosetests${MODPY_BIN_SUFFIX}
|
||||
mv ${PREFIX}/man/man1/nosetests.1 \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.2 2012/06/27 19:19:46 rpointel Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2013/02/09 14:49:50 sthen Exp $
|
||||
|
||||
COMMENT= cross-project testing tool for Python
|
||||
|
||||
@ -36,7 +36,7 @@ REGRESS_DEPENDS= devel/py-test${MODPY_FLAVOR}
|
||||
do-regress:
|
||||
cd ${WRKSRC} && ${LOCALBASE}/bin/py.test${MODPY_BIN_SUFFIX} testing
|
||||
|
||||
.if ${FLAVOR:L:Mpython3}
|
||||
.if ${FLAVOR:Mpython3}
|
||||
post-install:
|
||||
mv ${PREFIX}/bin/py.test ${PREFIX}/bin/py.test${MODPY_BIN_SUFFIX}
|
||||
.endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.23 2011/09/16 09:24:56 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.24 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= unit testing framework for Python
|
||||
|
||||
@ -23,7 +23,7 @@ FLAVOR?=
|
||||
|
||||
MODULES= lang/python
|
||||
|
||||
.if !${FLAVOR:L:Mno_x11}
|
||||
.if !${FLAVOR:Mno_x11}
|
||||
BUILD_DEPENDS= ${MODPY_TKINTER_DEPENDS}
|
||||
RUN_DEPENDS= ${MODPY_TKINTER_DEPENDS}
|
||||
.endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.89 2013/01/16 01:49:02 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.90 2013/02/09 14:49:50 sthen Exp $
|
||||
|
||||
# requires ELF visibility support when on a shared arch
|
||||
ONLY_FOR_ARCHS= ${GCC3_ARCHS} ${GCC4_ARCHS} ${NO_SHARED_ARCHS}
|
||||
@ -52,13 +52,13 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
CONFIGURE_ENV+= ac_cv_lib_usb_hid_init=no \
|
||||
ac_cv_header_usb_h=no
|
||||
|
||||
.if ${FLAVOR:L:Maa}
|
||||
.if ${FLAVOR:Maa}
|
||||
WANTLIB+= aa
|
||||
LIB_DEPENDS+= graphics/aalib
|
||||
CONFIGURE_ARGS+= --enable-video-aalib
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS+= --without-x \
|
||||
--disable-video-x11
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2012/10/29 15:19:03 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT = fixed width fonts especially for long hacking sessions
|
||||
|
||||
@ -30,7 +30,7 @@ USE_GMAKE = Yes
|
||||
FLAVORS = symquotes
|
||||
FLAVOR ?=
|
||||
|
||||
.if ${FLAVOR:L:Msymquotes}
|
||||
.if ${FLAVOR:Msymquotes}
|
||||
post-patch:
|
||||
${PATCH} -d ${WRKSRC} < ${WRKSRC}/alt/gq2.diff
|
||||
.endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.86 2013/02/08 17:12:31 bcallah Exp $
|
||||
# $OpenBSD: Makefile,v 1.87 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -126,7 +126,7 @@ CONFIGURE_ARGS+= --disable$s
|
||||
post-install:
|
||||
# This will fail if no_nautilus is found in FLAVOR, so make sure we don't
|
||||
# do it if it is.
|
||||
.if !${FLAVOR:L:Mno_nautilus}
|
||||
.if !${FLAVOR:Mno_nautilus}
|
||||
rm ${PREFIX}/lib/nautilus/extensions-${MAJ_V}/*.la
|
||||
.endif
|
||||
rm ${PREFIX}/lib/evince/4/backends/*.la
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.28 2012/03/17 23:01:09 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.29 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT-canna= X input method for Japanese, canna support
|
||||
COMMENT-canna-wnn= X input method for Japanese, canna and wnn support
|
||||
@ -40,10 +40,10 @@ PORT_DOCDIR=${PREFIX}/share/doc/kinput2
|
||||
pre-configure:
|
||||
mv -f ${WRKSRC}/Kinput2.conf ${WRKSRC}/Kinput2.conf.org
|
||||
cp ${FILESDIR}/Kinput2.conf ${WRKSRC}/Kinput2.conf
|
||||
.if ${FLAVOR:L:Mwnn}
|
||||
.if ${FLAVOR:Mwnn}
|
||||
echo "#define UseWnn" >>${WRKSRC}/Kinput2.conf
|
||||
.endif
|
||||
.if ${FLAVOR:L:Mcanna}
|
||||
.if ${FLAVOR:Mcanna}
|
||||
echo "#define UseCanna" >>${WRKSRC}/Kinput2.conf
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.22 2010/11/17 08:05:17 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.23 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT-main= programming language with generators, X11 and more
|
||||
COMMENT-main-no_x11= programming language with generators
|
||||
@ -42,7 +42,7 @@ LIBDIR=${TRUEPREFIX}/lib/icon
|
||||
WANTLIB-compiler= c
|
||||
WANTLIB-main= c m pthread
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_TARGET= Configure
|
||||
.else
|
||||
CONFIGURE_TARGET= X-Configure
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: lua.port.mk,v 1.24 2012/12/11 22:12:12 sthen Exp $
|
||||
# $OpenBSD: lua.port.mk,v 1.25 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
CATEGORIES+= lang/lua
|
||||
|
||||
@ -21,7 +21,7 @@ FLAVORS+= lua52
|
||||
FLAVOR?= # empty
|
||||
|
||||
# without a flavor, assume ${MODLUA_DEFAULT_VERSION}
|
||||
.if ${FLAVOR:L:Mlua52}
|
||||
.if ${FLAVOR:Mlua52}
|
||||
MODLUA_VERSION= 5.2
|
||||
.else
|
||||
MODLUA_VERSION?= ${MODLUA_DEFAULT_VERSION}
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.35 2012/11/30 12:56:02 sthen Exp $
|
||||
# $OpenBSD: Makefile.inc,v 1.36 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
# This port currently only works with archs supporting dynamic loading
|
||||
# and has Apache that supports DSO's.
|
||||
@ -74,7 +74,7 @@ CONFIGURE_ARGS+= --enable-shared \
|
||||
--with-pdo-sqlite \
|
||||
--enable-sqlite-utf8
|
||||
|
||||
.if ${FLAVOR:L:Map2}
|
||||
.if ${FLAVOR:Map2}
|
||||
CONFIGURE_ARGS+= --with-apxs2=${LOCALBASE}/sbin/apxs2
|
||||
BUILD_DEPENDS= www/apache-httpd
|
||||
.else
|
||||
@ -316,7 +316,7 @@ RUN_DEPENDS-main= ${MODGETTEXT_RUN_DEPENDS} \
|
||||
mail/femail,-chroot
|
||||
LIB_DEPENDS-fastcgi= ${LIB_DEPENDS-main}
|
||||
|
||||
.if ${FLAVOR:L:Mno_suhosin}
|
||||
.if ${FLAVOR:Mno_suhosin}
|
||||
SUPDISTFILES= suhosin-${SUHOSIN_V}.tgz:0 \
|
||||
suhosin-patch-${SUHOSIN_PHPV}-${SUHOSIN_P_V}.patch.gz:0
|
||||
.else
|
||||
@ -341,7 +341,7 @@ pre-configure:
|
||||
${WRKSRC}/scripts/phpize.in \
|
||||
${WRKSRC}/scripts/php-config.in
|
||||
|
||||
.if ${FLAVOR:L:Map2}
|
||||
.if ${FLAVOR:Map2}
|
||||
MULTI_PACKAGES := ${MULTI_PACKAGES:N-fpm:N-fastcgi}
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: python.port.mk,v 1.57 2012/12/21 18:19:38 fgsch Exp $
|
||||
# $OpenBSD: python.port.mk,v 1.58 2013/02/09 14:49:51 sthen Exp $
|
||||
#
|
||||
# python.port.mk - Xavier Santolaria <xavier@santolaria.net>
|
||||
# This file is in the public domain.
|
||||
@ -13,7 +13,7 @@ MODPY_DEFAULT_VERSION_3 = 3.2
|
||||
|
||||
FLAVOR ?=
|
||||
|
||||
. if ${FLAVOR:L:Mpython3}
|
||||
. if ${FLAVOR:Mpython3}
|
||||
# define default version 3
|
||||
MODPY_VERSION ?= ${MODPY_DEFAULT_VERSION_3}
|
||||
. else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: ruby.port.mk,v 1.54 2013/01/26 17:57:51 jeremy Exp $
|
||||
# $OpenBSD: ruby.port.mk,v 1.55 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
# ruby module
|
||||
|
||||
@ -53,8 +53,8 @@ FLAVOR = ruby19
|
||||
|
||||
# Check for conflicting FLAVORs and set MODRUBY_REV appropriately based
|
||||
# on the FLAVOR.
|
||||
. if ${FLAVOR:L:Mruby18}
|
||||
. if ${FLAVOR:L:Mruby19} || ${FLAVOR:L:Mjruby} || ${FLAVOR:L:Mrbx}
|
||||
. if ${FLAVOR:Mruby18}
|
||||
. if ${FLAVOR:Mruby19} || ${FLAVOR:Mjruby} || ${FLAVOR:Mrbx}
|
||||
ERRORS+= "Fatal: Conflicting flavors used: ${FLAVOR}"
|
||||
. endif
|
||||
MODRUBY_REV= 1.8
|
||||
@ -64,20 +64,20 @@ MODRUBY_REV= 1.8
|
||||
SUBST_VARS+= PKGPATH
|
||||
PKG_ARGS+= -f ${PORTSDIR}/lang/ruby/ruby18.PLIST
|
||||
|
||||
. elif ${FLAVOR:L:Mruby19}
|
||||
. if ${FLAVOR:L:Mruby18} || ${FLAVOR:L:Mjruby} || ${FLAVOR:L:Mrbx}
|
||||
. elif ${FLAVOR:Mruby19}
|
||||
. if ${FLAVOR:Mruby18} || ${FLAVOR:Mjruby} || ${FLAVOR:Mrbx}
|
||||
ERRORS+= "Fatal: Conflicting flavors used: ${FLAVOR}"
|
||||
. endif
|
||||
MODRUBY_REV= 1.9
|
||||
|
||||
. elif ${FLAVOR:L:Mjruby}
|
||||
. if ${FLAVOR:L:Mruby18} || ${FLAVOR:L:Mruby19} || ${FLAVOR:L:Mrbx}
|
||||
. elif ${FLAVOR:Mjruby}
|
||||
. if ${FLAVOR:Mruby18} || ${FLAVOR:Mruby19} || ${FLAVOR:Mrbx}
|
||||
ERRORS+= "Fatal: Conflicting flavors used: ${FLAVOR}"
|
||||
. endif
|
||||
MODRUBY_REV= jruby
|
||||
|
||||
. elif ${FLAVOR:L:Mrbx}
|
||||
. if ${FLAVOR:L:Mruby18} || ${FLAVOR:L:Mruby19} || ${FLAVOR:L:Mjruby}
|
||||
. elif ${FLAVOR:Mrbx}
|
||||
. if ${FLAVOR:Mruby18} || ${FLAVOR:Mruby19} || ${FLAVOR:Mjruby}
|
||||
ERRORS+= "Fatal: Conflicting flavors used: ${FLAVOR}"
|
||||
. endif
|
||||
MODRUBY_REV= rbx
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.200 2013/02/08 16:33:23 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.201 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -76,15 +76,15 @@ FLAVOR+= no_ldap no_mysql no_postgresql
|
||||
MULTI_PACKAGES= -server
|
||||
SUBPACKAGE?= -server
|
||||
|
||||
.if !${FLAVOR:L:Mno_ldap}
|
||||
.if !${FLAVOR:Mno_ldap}
|
||||
MULTI_PACKAGES+=-ldap
|
||||
.endif
|
||||
|
||||
.if !${FLAVOR:L:Mno_mysql}
|
||||
.if !${FLAVOR:Mno_mysql}
|
||||
MULTI_PACKAGES+=-mysql
|
||||
.endif
|
||||
|
||||
.if !${FLAVOR:L:Mno_postgresql}
|
||||
.if !${FLAVOR:Mno_postgresql}
|
||||
MULTI_PACKAGES+=-postgresql
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.31 2010/11/19 07:23:06 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.32 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= generate a cross-referenced HTML mail archive
|
||||
|
||||
@ -34,7 +34,7 @@ USE_GROFF = Yes
|
||||
FLAVORS= gdbm
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L} == "gdbm"
|
||||
.if ${FLAVOR} == "gdbm"
|
||||
CONFIGURE_ARGS +=--with-gdbm=${LOCALBASE}
|
||||
LIB_DEPENDS += databases/gdbm
|
||||
WANTLIB += gdbm
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.21 2011/03/02 16:01:59 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.22 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= emacs interface to PGP and GnuPG
|
||||
|
||||
@ -21,15 +21,15 @@ FLAVOR?= gnupg
|
||||
|
||||
BUILD_DEPENDS= emacs->=21,<22:editors/emacs21
|
||||
|
||||
.if ${FLAVOR:L:Mgnupg}
|
||||
.if ${FLAVOR:Mgnupg}
|
||||
RUN_DEPENDS= security/gnupg
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mpgp}
|
||||
.if ${FLAVOR:Mpgp}
|
||||
RUN_DEPENDS= pgp->=2,<3:security/pgp
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mpgp5}
|
||||
.if ${FLAVOR:Mpgp5}
|
||||
RUN_DEPENDS= pgp->=5,<6:security/pgp5
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.42 2012/09/04 11:33:35 gonzalo Exp $
|
||||
# $OpenBSD: Makefile,v 1.43 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT-main= mail delivery agent with filtering abilities
|
||||
COMMENT-utils= quota tools for the Courier mail suite
|
||||
@ -62,7 +62,7 @@ DOCFILES= ${WRKSRC}/README \
|
||||
${WRKSRC}/maildir/quotawarnmsg
|
||||
|
||||
|
||||
.if ${FLAVOR:L:Mpostfix}
|
||||
.if ${FLAVOR:Mpostfix}
|
||||
CONFIGURE_ARGS+= --enable-sendmail=/usr/local/sbin/sendmail
|
||||
CONFIGURE_ARGS+= --enable-trusted-users="root _courier _postfix"
|
||||
CONFIGURE_ARGS+= --enable-trusted-groups="wheel _courier _postdrop"
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.74 2012/02/16 22:27:56 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.75 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= mailing list manager with web interface
|
||||
|
||||
@ -44,7 +44,7 @@ CONFIGURE_ARGS+= --prefix='${MMHOME}' \
|
||||
|
||||
FLAVORS= postfix
|
||||
FLAVOR?=
|
||||
.if ${FLAVOR:L:Mpostfix}
|
||||
.if ${FLAVOR:Mpostfix}
|
||||
CONFIGURE_ARGS+=--with-mail-gid=_mailman
|
||||
.else
|
||||
CONFIGURE_ARGS+=--with-mail-gid=daemon
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.165 2013/01/11 23:06:36 landry Exp $
|
||||
# $OpenBSD: Makefile,v 1.166 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT-main = Mozilla e-mail, rss and usenet client
|
||||
COMMENT-lightning = Mozilla Thunderbird calendar extension
|
||||
@ -33,7 +33,7 @@ SO_VERSION = 27.0
|
||||
|
||||
MOZILLA_LIBS = ldap60 ldif60 mozalloc mozgnome prldap60 xpcom xul calbasecomps \
|
||||
enigmime-${XPCOM_ABI}-gcc3 subprocess-${XPCOM_ABI}-gcc3
|
||||
#.if ${FLAVOR:L:Mdebug}
|
||||
#.if ${FLAVOR:Mdebug}
|
||||
#MOZILLA_LIBS += addrbook bayesflt fts3tok mailview mime mimeemitter msgbase \
|
||||
# msgcompose msgdb msgimap msglocal msgmdn msgnews vcard msgbaseutil
|
||||
#.endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.37 2011/05/04 07:49:40 sthen Exp $
|
||||
# $OpenBSD: Makefile.inc,v 1.38 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
CATEGORIES= mail
|
||||
|
||||
@ -51,7 +51,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib" \
|
||||
ISPELL="${LOCALBASE}/bin/ispell"
|
||||
|
||||
.if ${FLAVOR:L:Mslang}
|
||||
.if ${FLAVOR:Mslang}
|
||||
LIB_DEPENDS+= devel/libslang
|
||||
CONFIGURE_ARGS+= --with-slang="${PREFIX}"
|
||||
WANTLIB+= m termlib slang>=14
|
||||
@ -62,7 +62,7 @@ WANTLIB+= ncurses
|
||||
|
||||
# compressed folder support
|
||||
DIST_COMPRESSED?= patch-${VERSION}.rr.compressed.1.gz:0
|
||||
.if ${FLAVOR:L:Mcompressed}
|
||||
.if ${FLAVOR:Mcompressed}
|
||||
PATCHFILES+= ${DIST_COMPRESSED}
|
||||
PATCH_DIST_STRIP= -p1
|
||||
CONFIGURE_ARGS+= --enable-compressed
|
||||
@ -70,12 +70,12 @@ CONFIGURE_ARGS+= --enable-compressed
|
||||
SUPDISTFILES+= ${DIST_COMPRESSED}
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mmixmaster}
|
||||
.if ${FLAVOR:Mmixmaster}
|
||||
CONFIGURE_ARGS+= --with-mixmaster="${LOCALBASE}/sbin/mixmaster"
|
||||
RUN_DEPENDS+= mail/mixmaster
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Midn}
|
||||
.if ${FLAVOR:Midn}
|
||||
CONFIGURE_ARGS+= --with-idn
|
||||
LIB_DEPENDS+= devel/libidn
|
||||
WANTLIB+= idn>=16
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.71 2012/09/27 17:26:05 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.72 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= tty-based e-mail client, development version
|
||||
|
||||
@ -21,7 +21,7 @@ CONFIGURE_ARGS= --enable-hcache \
|
||||
LIB_DEPENDS= databases/qdbm
|
||||
BUILD_DEPENDS+= textproc/docbook-xsl
|
||||
|
||||
.if ${FLAVOR:L:Msasl}
|
||||
.if ${FLAVOR:Msasl}
|
||||
CONFIGURE_ARGS+= --with-sasl=${LOCALBASE}
|
||||
LIB_DEPENDS+= security/cyrus-sasl2
|
||||
WANTLIB+= sasl2
|
||||
@ -32,7 +32,7 @@ MUTTRCDIR= doc/
|
||||
DIST_COMPRESSED=compressed-5302767aa6aa.gz:2
|
||||
DIST_SIDEBAR= sidebar-5302767aa6aa.gz:2
|
||||
|
||||
.if ${FLAVOR:L:Msidebar}
|
||||
.if ${FLAVOR:Msidebar}
|
||||
PATCHFILES+= ${DIST_SIDEBAR}
|
||||
PATCH_DIST_STRIP= -p1
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.34 2013/01/02 04:19:54 william Exp $
|
||||
# $OpenBSD: Makefile,v 1.35 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= new MH mail handling program
|
||||
|
||||
@ -37,7 +37,7 @@ FLAVOR?=
|
||||
CONFIGURE_ENV+= ac_cv_header_db_h=no
|
||||
USE_GROFF = Yes
|
||||
|
||||
.if ${FLAVOR:L:Msasl}
|
||||
.if ${FLAVOR:Msasl}
|
||||
MODULES += converters/libiconv
|
||||
WANTLIB += sasl2
|
||||
LIB_DEPENDS+= security/cyrus-sasl2
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.14 2012/04/28 10:52:08 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.15 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT-main= fully featured POP3 and IMAP4 proxy server
|
||||
COMMENT-ldap= LDAP backend for perdition mail proxy
|
||||
@ -66,7 +66,7 @@ LIB_DEPENDS-main= databases/db/v4 \
|
||||
devel/vanessa/socket \
|
||||
devel/popt
|
||||
|
||||
.if ${FLAVOR:L:Mno_ldap}
|
||||
.if ${FLAVOR:Mno_ldap}
|
||||
CONFIGURE_ARGS+= --disable-ldap
|
||||
.else
|
||||
SHARED_LIBS += perditiondb_ldap 0.0 # .0.0
|
||||
@ -80,7 +80,7 @@ WANTLIB-ldap= asn1 com_err crypto gssapi krb5 ssl util sasl2 \
|
||||
ldap>=2 lber>=2
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mno_mysql}
|
||||
.if ${FLAVOR:Mno_mysql}
|
||||
CONFIGURE_ARGS+= --disable-mysql
|
||||
.else
|
||||
SHARED_LIBS += perditiondb_mysql 0.0 # .0.0
|
||||
@ -94,7 +94,7 @@ WANTLIB-mysql= crypto ssl util m z lib/mysql/mysqlclient>=10 \
|
||||
vanessa_adt>=0.3 vanessa_logger>=0.3
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mno_pgsql}
|
||||
.if ${FLAVOR:Mno_pgsql}
|
||||
CONFIGURE_ARGS+= --disable-pg
|
||||
.else
|
||||
SHARED_LIBS += perditiondb_postgresql 0.0 # .0.0
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.85 2012/05/16 14:40:08 sthen Exp $
|
||||
# $OpenBSD: Makefile.inc,v 1.86 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= fast, secure sendmail replacement
|
||||
|
||||
@ -46,35 +46,35 @@ NO_REGRESS= Yes
|
||||
FLAVORS+= sasl2 ldap mysql pgsql db4
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Msasl2}
|
||||
.if ${FLAVOR:Msasl2}
|
||||
LIB_DEPENDS+= security/cyrus-sasl2
|
||||
WANTLIB+= sasl2
|
||||
MAKE_CCARGS+= -DUSE_CYRUS_SASL -I${LOCALBASE}/include -I${LOCALBASE}/include/sasl
|
||||
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lsasl2
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mldap}
|
||||
.if ${FLAVOR:Mldap}
|
||||
LIB_DEPENDS+= databases/openldap>=2,<3
|
||||
WANTLIB+= ldap>=2 lber
|
||||
MAKE_CCARGS+= -DHAS_LDAP -I${LOCALBASE}/include
|
||||
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lldap -llber
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mmysql}
|
||||
.if ${FLAVOR:Mmysql}
|
||||
LIB_DEPENDS+= databases/mysql
|
||||
WANTLIB+= lib/mysql/mysqlclient>=10
|
||||
MAKE_CCARGS+= -DHAS_MYSQL -I${LOCALBASE}/include/mysql
|
||||
MAKE_AUXLIBS+= -L${LOCALBASE}/lib/mysql -lmysqlclient
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mpgsql}
|
||||
.if ${FLAVOR:Mpgsql}
|
||||
LIB_DEPENDS+= databases/postgresql
|
||||
WANTLIB+= pq>=3
|
||||
MAKE_CCARGS+= -DHAS_PGSQL -I${LOCALBASE}/include/postgresql
|
||||
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lpq
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mdb4}
|
||||
.if ${FLAVOR:Mdb4}
|
||||
LIB_DEPENDS+= databases/db/v4>=4,<5
|
||||
WANTLIB+= lib/db4/db>=4
|
||||
MAKE_CCARGS+= -I${LOCALBASE}/include/db4
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.37 2012/03/17 10:47:19 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.38 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= filtering local mail delivery agent
|
||||
|
||||
@ -27,7 +27,7 @@ FLAVORS= lmtp
|
||||
FLAVOR?=
|
||||
|
||||
USE_GROFF = Yes
|
||||
.if ${FLAVOR:L:Mlmtp}
|
||||
.if ${FLAVOR:Mlmtp}
|
||||
CFLAGS+= -DLMTP
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.49 2011/09/16 10:31:22 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.50 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= sendmail milter to scan messages for viruses and spam
|
||||
|
||||
@ -27,7 +27,7 @@ NO_REGRESS= Yes
|
||||
FLAVORS= ldap
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mldap}
|
||||
.if ${FLAVOR:Mldap}
|
||||
MAKE_FLAGS+= -DENABLE_LDAP
|
||||
LIB_DEPENDS+= databases/openldap
|
||||
WANTLIB += ldap_r lber
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.25 2012/04/28 10:51:44 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.26 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= flexible POP3 server
|
||||
|
||||
@ -31,7 +31,7 @@ USE_GROFF = Yes
|
||||
NO_REGRESS= Yes
|
||||
|
||||
# enable support for APOP authentication.
|
||||
.if ${FLAVOR:L:Mapop}
|
||||
.if ${FLAVOR:Mapop}
|
||||
CONFIGURE_ARGS+= --enable-userconfig --enable-apop
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-userconfig --disable-apop
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.98 2012/07/12 20:17:45 rpointel Exp $
|
||||
# $OpenBSD: Makefile,v 1.99 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT = lightweight and user-friendly e-mail client
|
||||
|
||||
@ -49,7 +49,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
FLAVORS= compface
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mcompface}
|
||||
.if ${FLAVOR:Mcompface}
|
||||
LIB_DEPENDS+= mail/faces
|
||||
WANTLIB+= compface
|
||||
CONFIGURE_ARGS += --enable-compface
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.37 2011/09/16 10:31:22 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.38 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= GRaphing, Advanced Computation and Exploration of data
|
||||
|
||||
@ -39,10 +39,10 @@ WANTLIB += jpeg>=62 png>=2 t1>=5 tiff>=35 pdf>=2
|
||||
FLAVORS= no_x11 fftw netcdf xmhtml
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS+= --without-x
|
||||
NO_REGRESS= Yes
|
||||
. if ${FLAVOR:L:Mxmhtml}
|
||||
. if ${FLAVOR:Mxmhtml}
|
||||
ERRORS+= "Fatal: Flavors 'no_x11' and 'xmhtml' are mutually exclusive."
|
||||
. endif
|
||||
.else
|
||||
@ -50,7 +50,7 @@ REGRESS_IS_INTERACTIVE= x11
|
||||
LIB_DEPENDS+= x11/openmotif
|
||||
WANTLIB+= ICE SM X11 Xext Xmu Xpm Xt Xm
|
||||
MAKE_ENV+=MOTIFLIB='-L${LOCALBASE}/lib -lXm'
|
||||
. if ${FLAVOR:L:Mxmhtml}
|
||||
. if ${FLAVOR:Mxmhtml}
|
||||
LIB_DEPENDS += www/xmhtml
|
||||
WANTLIB += XmHTML>=1
|
||||
CONFIGURE_ARGS+= --enable-xmhtml
|
||||
@ -60,7 +60,7 @@ CONFIGURE_ARGS+= --disable-xmhtml
|
||||
CONFIGURE_ENV= LDFLAGS=-lm
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mfftw}
|
||||
.if ${FLAVOR:Mfftw}
|
||||
LIB_DEPENDS += math/fftw
|
||||
WANTLIB += fftw>=2
|
||||
CONFIGURE_ARGS+= --with-fftw
|
||||
@ -68,7 +68,7 @@ CONFIGURE_ARGS+= --with-fftw
|
||||
CONFIGURE_ARGS+= --without-fftw
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mnetcdf}
|
||||
.if ${FLAVOR:Mnetcdf}
|
||||
LIB_DEPENDS += math/netcdf
|
||||
WANTLIB += netcdf>=1
|
||||
CONFIGURE_ARGS+= --enable-netcdf
|
||||
@ -78,7 +78,7 @@ CONFIGURE_ARGS+= --disable-netcdf
|
||||
|
||||
GRACE_DIR=${TRUEPREFIX}/grace
|
||||
post-install:
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
ln -sf ${GRACE_DIR}/bin/grace ${PREFIX}/bin/grace
|
||||
ln -sf ${GRACE_DIR}/bin/grace ${PREFIX}/bin/gracebat
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.26 2013/01/04 14:05:41 edd Exp $
|
||||
# $OpenBSD: Makefile,v 1.27 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= GPL computer algebra system based on DOE Macsyma
|
||||
|
||||
@ -32,7 +32,7 @@ USE_GROFF = Yes
|
||||
FLAVORS= no_x11
|
||||
FLAVOR?=
|
||||
|
||||
.if !${FLAVOR:L:Mno_x11}
|
||||
.if !${FLAVOR:Mno_x11}
|
||||
MODULES+= x11/tk
|
||||
RUN_DEPENDS += ${MODTK_RUN_DEPENDS} \
|
||||
math/gnuplot
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.41 2012/04/28 10:52:08 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.42 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT-main= network-capable tape backup (client and tape server)
|
||||
COMMENT-client= network-capable tape backup (client only)
|
||||
@ -70,14 +70,14 @@ USE_GROFF = Yes
|
||||
|
||||
# Use this flavor to speed things up if you have large AMANDA
|
||||
# databases.
|
||||
.if ${FLAVOR:L:Mdb}
|
||||
.if ${FLAVOR:Mdb}
|
||||
WANTLIB+= lib/db4/db
|
||||
LIB_DEPENDS+= databases/db/v4
|
||||
CONFIGURE_ARGS+= --with-db=db
|
||||
CFLAGS+= -L${LOCALBASE}/lib
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mgpg}
|
||||
.if ${FLAVOR:Mgpg}
|
||||
BUILD_DEPENDS+= security/gnupg
|
||||
CONFIGURE_ENV+= GZIP=${LOCALBASE}/bin/gpgzip
|
||||
.endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.34 2012/07/04 07:46:56 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.35 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= write audio/data CD-Rs in disk-at-once mode
|
||||
|
||||
@ -27,7 +27,7 @@ MAKE_ENV= CCOM="${CC}"
|
||||
FLAVORS= audio
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Maudio}
|
||||
.if ${FLAVOR:Maudio}
|
||||
CONFIGURE_ARGS+= --with-lame-lib=${LOCALBASE}/lib \
|
||||
--with-lame-include=${LOCALBASE}/include
|
||||
BUILD_DEPENDS+= audio/libmad
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.50 2012/12/21 13:04:27 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.51 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT-main= service daemon that monitors one or more GPSes
|
||||
COMMENT-x11= GUI test apps using gpsd
|
||||
@ -49,7 +49,7 @@ BUILD_DEPENDS= textproc/docbook-xsl
|
||||
RUN_DEPENDS-main= ${MODPY_RUN_DEPENDS}
|
||||
LIB_DEPENDS-main= devel/libusb1
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS+= --without-x
|
||||
CONFIGURE_ENV += LDFLAGS="-lm -pthread -lutil"
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.46 2013/01/02 07:18:46 shadchin Exp $
|
||||
# $OpenBSD: Makefile,v 1.47 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= free Norton Commander clone with many useful features
|
||||
|
||||
@ -25,7 +25,7 @@ USE_GROFF= Yes
|
||||
FLAVORS= no_x11
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS+= --without-x
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.63 2013/02/05 14:51:16 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.64 2013/02/09 14:49:51 sthen Exp $
|
||||
# Please adjust www/faq/faq15.html if updating.
|
||||
|
||||
COMMENT= multi-screen window manager
|
||||
@ -28,12 +28,12 @@ USE_GROFF = Yes
|
||||
FLAVORS= static shm
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L} == "static"
|
||||
.if ${FLAVOR} == "static"
|
||||
CONFIGURE_ENV= LDFLAGS="-static"
|
||||
.else
|
||||
WANTLIB= c curses util
|
||||
.endif
|
||||
.if ${FLAVOR:L} == "shm"
|
||||
.if ${FLAVOR} == "shm"
|
||||
PATCH_LIST= patch-* shmpatch-*
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2012/08/06 12:21:05 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= analyze terminal control sequences
|
||||
|
||||
@ -25,7 +25,7 @@ WANTLIB= c
|
||||
CONFIGURE_STYLE=gnu
|
||||
MAKE_FLAGS= AM_CFLAGS=""
|
||||
|
||||
.if ${FLAVOR:L:Mregress}
|
||||
.if ${FLAVOR:Mregress}
|
||||
BUILD_DEPENDS= devel/check
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.31 2012/09/05 16:31:36 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.32 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= tools to edit/modify/encode video streams
|
||||
|
||||
@ -52,11 +52,11 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
FLAVORS= quicktime optimized
|
||||
FLAVOR?=
|
||||
|
||||
.if !${FLAVOR:L:Moptimized}
|
||||
.if !${FLAVOR:Moptimized}
|
||||
CONFIGURE_ARGS+= --disable-simd-accel
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mquicktime}
|
||||
.if ${FLAVOR:Mquicktime}
|
||||
LIB_DEPENDS += multimedia/libquicktime
|
||||
WANTLIB+= quicktime>=2
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.28 2012/03/08 12:13:01 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.29 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT = create, alter and inspect Matroska files
|
||||
|
||||
@ -54,7 +54,7 @@ USE_GROFF = Yes
|
||||
FLAVORS = no_x11
|
||||
FLAVOR ?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS += --disable-gui --disable-wxwidgets
|
||||
.else
|
||||
LIB_DEPENDS += x11/wxWidgets>=2.8.10
|
||||
@ -76,7 +76,7 @@ do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/man/ja/$i.1 ${PREFIX}/man/ja.po
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/man/zh_CN/$i.1 ${PREFIX}/man/zh_CN.po
|
||||
.endfor
|
||||
.if !${FLAVOR:L:Mno_x11}
|
||||
.if !${FLAVOR:Mno_x11}
|
||||
${INSTALL_PROGRAM} ${WRKBUILD}/src/mmg/mmg ${PREFIX}/bin
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/man/mmg.1 ${PREFIX}/man/man1
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/mkvtoolnix/images
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.53 2013/01/19 08:42:35 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.54 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -98,7 +98,7 @@ CONFIGURE_ARGS+=--enable-a52 \
|
||||
CONFIGURE_ENV+= CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib"
|
||||
|
||||
.if ${FLAVOR:L:Mlzo}
|
||||
.if ${FLAVOR:Mlzo}
|
||||
CONFIGURE_ARGS+=--enable-lzo
|
||||
WANTLIB += lzo2
|
||||
LIB_DEPENDS+= archivers/lzo2
|
||||
@ -107,7 +107,7 @@ PKG_ARGS+= -Dlzo=1
|
||||
PKG_ARGS+= -Dlzo=0
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mmjpegtools}
|
||||
.if ${FLAVOR:Mmjpegtools}
|
||||
CONFIGURE_ARGS+=--enable-mjpegtools
|
||||
WANTLIB += mjpegutils-1.9
|
||||
LIB_DEPENDS+= multimedia/mjpegtools
|
||||
@ -117,7 +117,7 @@ PKG_ARGS+= -Dmjpegtools=1
|
||||
PKG_ARGS+= -Dmjpegtools=0
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mquicktime}
|
||||
.if ${FLAVOR:Mquicktime}
|
||||
CONFIGURE_ARGS+=--enable-libquicktime
|
||||
LIB_DEPENDS+= multimedia/libquicktime
|
||||
WANTLIB += quicktime
|
||||
@ -127,7 +127,7 @@ PKG_ARGS+= -Dquicktime=1
|
||||
PKG_ARGS+= -Dquicktime=0
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Maltivec}
|
||||
.if ${FLAVOR:Maltivec}
|
||||
ONLY_FOR_ARCHS= powerpc
|
||||
CONFIGURE_ARGS+=--enable-altivec
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.25 2013/01/24 10:04:15 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.26 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT-main= BIRD internet routing daemon
|
||||
COMMENT-doc= BIRD internet routing daemon (documentation)
|
||||
@ -33,7 +33,7 @@ FLAVORS= v6
|
||||
FLAVOR?=
|
||||
SUBST_VARS+= SIX
|
||||
|
||||
.if ${FLAVOR:L:Mv6}
|
||||
.if ${FLAVOR:Mv6}
|
||||
FULLPKGNAME-main= bird-v6-$V
|
||||
FULLPKGPATH-main= net/bird,-main,v6
|
||||
SIX= 6
|
||||
@ -51,7 +51,7 @@ FAKE_FLAGS= sysconfdir=${TRUEPREFIX}/share/examples/bird
|
||||
USE_GMAKE= Yes
|
||||
CONFIGURE_STYLE=gnu
|
||||
|
||||
.if ${FLAVOR:L:Mv6}
|
||||
.if ${FLAVOR:Mv6}
|
||||
CONFIGURE_ARGS+=--enable-ipv6
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.47 2013/01/30 21:45:42 okan Exp $
|
||||
# $OpenBSD: Makefile,v 1.48 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= IRC proxy to connect to AIM, ICQ, Jabber, MSN and Yahoo
|
||||
|
||||
@ -45,12 +45,12 @@ SUBST_VARS= DB_DIR
|
||||
FLAVORS = libpurple otr
|
||||
FLAVOR ?=
|
||||
|
||||
.if ${FLAVOR:L:Mlibpurple}
|
||||
.if ${FLAVOR:Mlibpurple}
|
||||
CONFIGURE_ARGS += --purple=1
|
||||
LIB_DEPENDS += net/pidgin,-libpurple
|
||||
WANTLIB += purple
|
||||
.endif
|
||||
.if ${FLAVOR:L:Motr}
|
||||
.if ${FLAVOR:Motr}
|
||||
CONFIGURE_ARGS += --otr=1
|
||||
LIB_DEPENDS += security/libotr security/libgcrypt
|
||||
WANTLIB += gcrypt otr
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.24 2010/11/19 22:31:32 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.25 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
ONLY_FOR_ARCHS= i386
|
||||
COMMENT-main= network file distribution system
|
||||
@ -37,7 +37,7 @@ FLAVOR?=
|
||||
|
||||
M3FLAGS= -DPREFIX=${PREFIX} -DX11BASE=${X11BASE}
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
M3FLAGS+= -DNOGUI
|
||||
.else
|
||||
WANTLIB-main= ${WANTLIB} ICE SM X11 Xaw Xext Xmu Xt pthread-stubs xcb
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.59 2013/02/03 23:07:02 nigel Exp $
|
||||
# $OpenBSD: Makefile,v 1.60 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -43,7 +43,7 @@ CFLAGS+= -DNS_IN6ADDRSZ=16 -DNS_INT16SZ=2
|
||||
CONFIGURE_ARGS+= -DCMAKE_C_FLAGS="${CFLAGS} -I${LOCALBASE}/include" \
|
||||
-DMAN_INSTALLDIR="${TRUEPREFIX}/man"
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS+= -DENABLE_GTK=off
|
||||
.else
|
||||
LIB_DEPENDS+= x11/gtk+2
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.27 2012/04/28 10:51:44 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.28 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
SHARED_LIBS += ft 0.0 # .0.0
|
||||
|
||||
@ -34,7 +34,7 @@ CONFIGURE_STYLE= gnu
|
||||
SEPARATE_BUILD= Yes
|
||||
SYSCONFDIR= ${BASESYSCONFDIR}/flow-tools
|
||||
|
||||
.if !${FLAVOR:L:Mpgsql}
|
||||
.if !${FLAVOR:Mpgsql}
|
||||
CONFIGURE_ARGS+= --without-postgresql
|
||||
.else
|
||||
WANTLIB += pq
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.43 2012/09/16 12:44:02 pea Exp $
|
||||
# $OpenBSD: Makefile,v 1.44 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
SHARED_LIBS += freeradius-radius 4.1 # .0.0
|
||||
@ -84,7 +84,7 @@ WANTLIB-main= ${WANTLIB} c com_err krb5 pcap pthread readline \
|
||||
PSEUDO_FLAVORS= no_ldap no_mysql no_pgsql no_iodbc
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_iodbc}
|
||||
.if ${FLAVOR:Mno_iodbc}
|
||||
CONFIGURE_ARGS+= --without-rlm_sql_iodbc
|
||||
.else
|
||||
MULTI_PACKAGES+= -iodbc
|
||||
@ -94,7 +94,7 @@ LIB_DEPENDS-iodbc= databases/iodbc
|
||||
WANTLIB-iodbc= iodbc>=2 pthread
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mno_ldap}
|
||||
.if ${FLAVOR:Mno_ldap}
|
||||
CONFIGURE_ARGS+= --without-rlm_ldap
|
||||
.else
|
||||
MULTI_PACKAGES+= -ldap
|
||||
@ -105,7 +105,7 @@ WANTLIB-ldap= ${WANTLIB} sasl2 asn1 com_err gssapi krb5 \
|
||||
lber>=8 ldap_r>=8 freeradius-radius>=1 pthread
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mno_mysql}
|
||||
.if ${FLAVOR:Mno_mysql}
|
||||
CONFIGURE_ARGS+= --without-rlm_sql_mysql
|
||||
.else
|
||||
MULTI_PACKAGES+= -mysql
|
||||
@ -114,7 +114,7 @@ LIB_DEPENDS-mysql= databases/mysql
|
||||
WANTLIB-mysql= ${WANTLIB} m pthread z mysqlclient_r>=16
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mno_pgsql}
|
||||
.if ${FLAVOR:Mno_pgsql}
|
||||
CONFIGURE_ARGS+= --without-rlm_sql_postgresql
|
||||
.else
|
||||
MULTI_PACKAGES+= -pgsql
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.25 2012/03/29 13:38:48 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.26 2013/02/09 14:49:51 sthen Exp $
|
||||
|
||||
COMMENT= icecast source for streaming MP3
|
||||
|
||||
@ -37,7 +37,7 @@ LIB_DEPENDS= audio/lame \
|
||||
FLAVORS= python mp4
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mpython}
|
||||
.if ${FLAVOR:Mpython}
|
||||
MODULES+= lang/python
|
||||
CONFIGURE_ARGS+=--with-python=${MODPY_BIN}
|
||||
LIB_DEPENDS+= ${MODPY_LIB_DEPENDS}
|
||||
@ -45,7 +45,7 @@ LIB_DEPENDS+= ${MODPY_LIB_DEPENDS}
|
||||
CONFIGURE_ARGS+=--without-python
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mmp4}
|
||||
.if ${FLAVOR:Mmp4}
|
||||
CONFIGURE_ARGS+=--with-faad=${LOCALBASE}
|
||||
LIB_DEPENDS+= audio/faad \
|
||||
multimedia/libmp4v2
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.12 2011/11/16 00:10:31 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.13 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= tool to monitor interface bandwidth usage
|
||||
|
||||
@ -28,7 +28,7 @@ NO_REGRESS= Yes
|
||||
FLAVORS= snmp
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L} == "snmp"
|
||||
.if ${FLAVOR} == "snmp"
|
||||
WANTLIB += netsnmp
|
||||
LIB_DEPENDS= net/net-snmp
|
||||
CONFIGURE_ARGS+= --with-snmp=${LOCALBASE}
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.34 2013/01/18 20:54:44 gsoares Exp $
|
||||
# $OpenBSD: Makefile,v 1.35 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= internet relay chat (irc) server
|
||||
|
||||
@ -32,7 +32,7 @@ USE_GROFF = Yes
|
||||
FLAVORS= ipv6 hub
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mipv6}
|
||||
.if ${FLAVOR:Mipv6}
|
||||
CONFIGURE_ARGS+= --enable-ip6
|
||||
.endif
|
||||
|
||||
@ -46,7 +46,7 @@ WRKBUILD= ${WRKSRC}/support
|
||||
SUBST_VARS= CONFDIR
|
||||
|
||||
pre-configure:
|
||||
.if ${FLAVOR:L:Mhub}
|
||||
.if ${FLAVOR:Mhub}
|
||||
@perl -pi -e 's,^/\* #define\tHUB \*/,#define\tHUB,g' ${WRKSRC}/support/config.h.dist
|
||||
.endif
|
||||
@cp $(WRKSRC)/support/config.h.dist $(WRKSRC)/support/config.h
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.52 2012/09/01 14:36:58 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.53 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -38,7 +38,7 @@ CONFIGURE_ARGS+=--with-pic \
|
||||
FLAVORS= socks
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Msocks}
|
||||
.if ${FLAVOR:Msocks}
|
||||
CONFIGURE_ARGS+= --with-socks
|
||||
BUILD_DEPENDS+= security/dante
|
||||
.endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.8 2013/01/04 13:34:51 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= Berkeley Internet Name Daemon
|
||||
|
||||
@ -33,7 +33,7 @@ MASTER_SITES0= http://ss.vix.com/~vixie/
|
||||
FLAVORS= ratelimit
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mratelimit}
|
||||
.if ${FLAVOR:Mratelimit}
|
||||
PATCHFILES+= rl-${RV}.patch:0
|
||||
.else
|
||||
SUPDISTFILES+= rl-${RV}.patch:0
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.43 2012/08/24 07:24:12 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.44 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= jabber server
|
||||
DISTNAME= jabberd-2.0s11
|
||||
@ -43,7 +43,7 @@ CONFIGURE_ARGS= --enable-debug \
|
||||
EXTRA_INCLUDE_PATH= ${LOCALBASE}/include
|
||||
EXTRA_LIBRARY_PATH= ${LOCALBASE}/lib
|
||||
|
||||
.if ${FLAVOR:L:Mmysql}
|
||||
.if ${FLAVOR:Mmysql}
|
||||
LIB_DEPENDS+= databases/mysql
|
||||
WANTLIB += lib/mysql/mysqlclient>=10
|
||||
CONFIGURE_ARGS+= --enable-mysql
|
||||
@ -51,7 +51,7 @@ CONFIGURE_ARGS+= --enable-mysql
|
||||
CONFIGURE_ARGS+= --disable-mysql
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mpostgresql}
|
||||
.if ${FLAVOR:Mpostgresql}
|
||||
LIB_DEPENDS+= databases/postgresql
|
||||
WANTLIB += pq>=4
|
||||
CONFIGURE_ARGS+= --enable-pgsql
|
||||
@ -59,7 +59,7 @@ CONFIGURE_ARGS+= --enable-pgsql
|
||||
CONFIGURE_ARGS+= --disable-pgsql
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mdb}
|
||||
.if ${FLAVOR:Mdb}
|
||||
LIB_DEPENDS+= databases/db/v4
|
||||
WANTLIB += lib/db4/db>=4
|
||||
CONFIGURE_ARGS+= --enable-db
|
||||
@ -68,7 +68,7 @@ EXTRA_INCLUDE_PATH:= ${EXTRA_INCLUDE_PATH}:${LOCALBASE}/include/db4
|
||||
CONFIGURE_ARGS+= --disable-db
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mldap}
|
||||
.if ${FLAVOR:Mldap}
|
||||
LIB_DEPENDS+= databases/openldap>=2.3
|
||||
WANTLIB += ldap>=8 lber>=8
|
||||
CONFIGURE_ARGS+= --enable-ldap
|
||||
@ -78,7 +78,7 @@ CONFIGURE_ARGS+= --disable-ldap
|
||||
.endif
|
||||
|
||||
.for s in ${STORAGES}
|
||||
. if ${FLAVOR:L:M$s}
|
||||
. if ${FLAVOR:M$s}
|
||||
storage_flag=1
|
||||
. endif
|
||||
.endfor
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.28 2012/06/19 12:58:24 okan Exp $
|
||||
# $OpenBSD: Makefile,v 1.29 2013/02/09 14:49:52 sthen Exp $
|
||||
# Much help came from Alexandre Anriot, Robert Nagy, Bernd Ahlers,
|
||||
# and, last but not least, Pedro la Peu.
|
||||
|
||||
@ -59,7 +59,7 @@ WANTLIB-gpsmap= c expat m pthread stdc++ z \
|
||||
LIB_DEPENDS-gpsmap= graphics/ImageMagick \
|
||||
devel/gmp
|
||||
|
||||
.if !${FLAVOR:L:Mno_gpsmap}
|
||||
.if !${FLAVOR:Mno_gpsmap}
|
||||
MULTI_PACKAGES+= -gpsmap
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-gpsmap
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.32 2012/11/16 17:05:13 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.33 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT-main= portable low-level networking library
|
||||
COMMENT-python= python interface to libdnet
|
||||
@ -39,7 +39,7 @@ USE_GROFF = Yes
|
||||
RUN_DEPENDS-main=
|
||||
|
||||
CONFIGURE_ARGS += --without-check
|
||||
.if ${FLAVOR:L:Mno_python}
|
||||
.if ${FLAVOR:Mno_python}
|
||||
CONFIGURE_ARGS+= --without-python
|
||||
.else
|
||||
MODULES+= lang/python
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.31 2012/11/27 12:16:07 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.32 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -87,7 +87,7 @@ CONFIGURE_ARGS= -DCMAKE_C_FLAGS="${CFLAGS}" \
|
||||
-DWITH_NM:BOOL=OFF \
|
||||
-DBIPR:BOOL=OFF
|
||||
|
||||
.if ${FLAVOR:L:Mmozilla}
|
||||
.if ${FLAVOR:Mmozilla}
|
||||
BUILD_DEPENDS += devel/xulrunner/1.9,-devel>=1.9.1
|
||||
MULTI_PACKAGES += -mozilla
|
||||
CONFIGURE_ARGS += -DWITH_MOZJS:BOOL=ON
|
||||
@ -95,7 +95,7 @@ CONFIGURE_ARGS += -DWITH_MOZJS:BOOL=ON
|
||||
CONFIGURE_ARGS += -DWITH_MOZJS:BOOL=OFF
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mwebkit}
|
||||
.if ${FLAVOR:Mwebkit}
|
||||
MULTI_PACKAGES += -webkit
|
||||
CONFIGURE_ARGS += -DWITH_WEBKIT3:BOOL=ON
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.7 2011/05/11 12:03:19 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.8 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT = IRC-friendly instant messaging client
|
||||
|
||||
@ -29,7 +29,7 @@ NO_REGRESS = Yes
|
||||
#FLAVORS = full
|
||||
#FLAVOR ?=
|
||||
#
|
||||
#.if ${FLAVOR:L:Mfull}
|
||||
#.if ${FLAVOR:Mfull}
|
||||
#LIB_DEPENDS= net/pidgin,-libpurple,audio \
|
||||
# multimedia/gstreamer-0.10/core \
|
||||
# net/farsight2 \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.50 2012/10/15 10:13:00 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.51 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= Matt's traceroute - network diagnostic tool#'
|
||||
|
||||
@ -24,7 +24,7 @@ CONFIGURE_STYLE=gnu
|
||||
FLAVORS= gtk
|
||||
|
||||
FLAVOR?=
|
||||
.if ${FLAVOR:L} == "gtk"
|
||||
.if ${FLAVOR} == "gtk"
|
||||
BROKEN= fails at runtime with "No nameservers defined"
|
||||
MODULES+= devel/gettext
|
||||
CONFIGURE_ARGS+= --with-gtk-prefix=${LOCALBASE}
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.55 2013/01/14 12:14:21 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.56 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT-main= host and service monitor
|
||||
COMMENT-web= cgis and webpages for nagios
|
||||
@ -50,7 +50,7 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
FLAVORS= chroot
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mchroot}
|
||||
.if ${FLAVOR:Mchroot}
|
||||
CHROOT= /var/www
|
||||
PATCH_LIST= patch-* chroot-*
|
||||
.else
|
||||
@ -61,7 +61,7 @@ WANTLIB= c m
|
||||
|
||||
PREFIX-web= /var/www
|
||||
# overwrite RUN_DEPENDS in order to only depend on the base package
|
||||
.if ${FLAVOR:L:Mchroot}
|
||||
.if ${FLAVOR:Mchroot}
|
||||
WANTLIB-web=
|
||||
LIB_DEPENDS-web=
|
||||
RUN_DEPENDS-web= nagios-${V}-chroot:net/nagios/nagios,chroot
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.33 2012/06/28 23:10:48 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.34 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT-main= nagios base plugins
|
||||
COMMENT-fping= fping plugin
|
||||
@ -59,7 +59,7 @@ FLAVOR?=
|
||||
|
||||
MULTI_PACKAGES= -main -fping -game
|
||||
|
||||
.if ! ${FLAVOR:L:Mno_db}
|
||||
.if ! ${FLAVOR:Mno_db}
|
||||
MULTI_PACKAGES+=-ldap -mysql -pgsql
|
||||
CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} \
|
||||
--with-pgsql=${LOCALBASE}
|
||||
@ -68,17 +68,17 @@ CFLAGS+= -DLDAP_DEPRECATED
|
||||
CONFIGURE_ARGS+=--without-mysql --without-pgsql
|
||||
.endif
|
||||
|
||||
.if ! ${FLAVOR:L:Mno_ntp}
|
||||
.if ! ${FLAVOR:Mno_ntp}
|
||||
MULTI_PACKAGES+=-ntp
|
||||
BUILD_DEPENDS+= net/ntp
|
||||
.endif
|
||||
|
||||
.if ! ${FLAVOR:L:Mno_samba}
|
||||
.if ! ${FLAVOR:Mno_samba}
|
||||
MULTI_PACKAGES+=-samba
|
||||
BUILD_DEPENDS+= net/samba
|
||||
.endif
|
||||
|
||||
.if ! ${FLAVOR:L:Mno_snmp}
|
||||
.if ! ${FLAVOR:Mno_snmp}
|
||||
MULTI_PACKAGES+=-snmp
|
||||
BUILD_DEPENDS+= net/p5-Net-SNMP \
|
||||
net/net-snmp
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.45 2013/01/09 23:06:24 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.46 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -42,7 +42,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
FLAVORS= avahi
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mavahi}
|
||||
.if ${FLAVOR:Mavahi}
|
||||
WANTLIB+= avahi-client avahi-common dbus-1
|
||||
LIB_DEPENDS+= net/avahi
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.11 2013/02/05 14:51:16 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.12 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= performs consistency checks on BIND files
|
||||
|
||||
@ -18,7 +18,7 @@ MASTER_SITES= ftp://ftp.ee.lbl.gov/old/
|
||||
FLAVORS= static
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L} == "static"
|
||||
.if ${FLAVOR} == "static"
|
||||
CONFIGURE_ENV+= LDFLAGS=-static
|
||||
.else
|
||||
WANTLIB= c
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.44 2013/02/01 17:15:01 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.45 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
ONLY_FOR_ARCHS= i386
|
||||
|
||||
@ -68,7 +68,7 @@ post-install:
|
||||
${PREFIX}/sbin/openafs-setup
|
||||
chmod u+x ${PREFIX}/sbin/openafs-setup
|
||||
|
||||
.if ${FLAVOR:L:Mdebug}
|
||||
.if ${FLAVOR:Mdebug}
|
||||
CONFIGURE_ARGS+= --enable-debug
|
||||
CONFIGURE_ARGS+= --enable-debug-lwp
|
||||
.endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.26 2012/06/26 10:14:10 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.27 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= tool to mirror contents of HTTP and FTP servers
|
||||
|
||||
@ -30,7 +30,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
USE_GROFF = Yes
|
||||
|
||||
.if !${FLAVOR:L:Mno_x11}
|
||||
.if !${FLAVOR:Mno_x11}
|
||||
LIB_DEPENDS+= x11/gtk+2
|
||||
WANTLIB += X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
|
||||
WANTLIB += Xi Xinerama Xmu Xrandr Xrender atk-1.0 cairo expat
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.113 2013/02/06 14:23:06 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.114 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -106,7 +106,7 @@ FLAVOR?=
|
||||
|
||||
MULTI_PACKAGES= -main -finch -libpurple
|
||||
|
||||
.if ${FLAVOR:L:Maudio}
|
||||
.if ${FLAVOR:Maudio}
|
||||
LIB_DEPENDS+= multimedia/gstreamer-0.10/core>=0.10,<=0.11 \
|
||||
multimedia/gstreamer-0.10/plugins-base
|
||||
WANTLIB+= gstreamer-0.10 gstinterfaces-0.10
|
||||
@ -118,12 +118,12 @@ LIB_DEPENDS-main+= libpurple-${VERSION}:${BUILD_PKGPATH},-libpurple
|
||||
LIB_DEPENDS-finch+= libpurple-${VERSION}:${BUILD_PKGPATH},-libpurple
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mdebug}
|
||||
.if ${FLAVOR:Mdebug}
|
||||
CONFIGURE_ARGS+= --enable-debug
|
||||
DEBUG= -O0 -g
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mgtkspell}
|
||||
.if ${FLAVOR:Mgtkspell}
|
||||
LIB_DEPENDS-main+= textproc/gtkspell
|
||||
WANTLIB-main+= enchant gtkspell
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.24 2012/05/17 21:39:44 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.25 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -42,7 +42,7 @@ FLAVOR?=
|
||||
BACKENDS= gsqlite3
|
||||
|
||||
# MySQL
|
||||
.if ${FLAVOR:L:Mno_mysql}
|
||||
.if ${FLAVOR:Mno_mysql}
|
||||
CONFIGURE_ARGS+= --without-mysql
|
||||
.else
|
||||
MULTI_PACKAGES+= -mysql
|
||||
@ -54,7 +54,7 @@ BACKENDS+= gmysql
|
||||
.endif
|
||||
|
||||
# PostgreSQL
|
||||
.if ${FLAVOR:L:Mno_pgsql}
|
||||
.if ${FLAVOR:Mno_pgsql}
|
||||
CONFIGURE_ARGS+= --without-pgsql
|
||||
.else
|
||||
MULTI_PACKAGES+= -pgsql
|
||||
@ -67,7 +67,7 @@ BACKENDS+= gpgsql
|
||||
.endif
|
||||
|
||||
# LDAP
|
||||
.if ${FLAVOR:L:Mno_ldap}
|
||||
.if ${FLAVOR:Mno_ldap}
|
||||
CONFIGURE_ARGS+= --without-ldap
|
||||
.else
|
||||
MULTI_PACKAGES+= -ldap
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.61 2012/10/30 14:18:25 giovanni Exp $
|
||||
# $OpenBSD: Makefile,v 1.62 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= small, easy to set up, fast and very secure FTP server
|
||||
|
||||
@ -34,7 +34,7 @@ MODULES= converters/libiconv
|
||||
FLAVORS= ldap mysql postgresql virtual_chroot
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mldap}
|
||||
.if ${FLAVOR:Mldap}
|
||||
LIB_DEPENDS+= openldap-client->=2,<3:databases/openldap
|
||||
WANTLIB += ldap>=2 lber
|
||||
CONFIGURE_ARGS+= --with-ldap="${LOCALBASE}"
|
||||
@ -42,7 +42,7 @@ DOCS+= README.LDAP pureftpd.schema
|
||||
CONF_FILE+= pureftpd-ldap.conf
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mmysql}
|
||||
.if ${FLAVOR:Mmysql}
|
||||
LIB_DEPENDS+= databases/mysql
|
||||
WANTLIB += lib/mysql/mysqlclient>=10
|
||||
CONFIGURE_ARGS+= --with-mysql="${LOCALBASE}"
|
||||
@ -51,7 +51,7 @@ CONF_FILE+= pureftpd-mysql.conf
|
||||
WANTLIB+= m z
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mpostgresql}
|
||||
.if ${FLAVOR:Mpostgresql}
|
||||
LIB_DEPENDS+= databases/postgresql
|
||||
WANTLIB += pq>=2
|
||||
CONFIGURE_ARGS+= --with-pgsql="${LOCALBASE}"
|
||||
@ -60,7 +60,7 @@ CONF_FILE+= pureftpd-pgsql.conf
|
||||
WANTLIB+= m z
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mvirtual_chroot}
|
||||
.if ${FLAVOR:Mvirtual_chroot}
|
||||
CONFIGURE_ARGS+= --with-virtualchroot
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.32 2013/01/04 00:24:10 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.33 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= multi-threaded routing daemon
|
||||
|
||||
@ -47,7 +47,7 @@ FAKE_FLAGS= exampledir='${PREFIX}/share/examples/quagga' \
|
||||
FLAVORS= snmp
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Msnmp}
|
||||
.if ${FLAVOR:Msnmp}
|
||||
LIB_DEPENDS= net/net-snmp
|
||||
WANTLIB+= crypto netsnmp
|
||||
CONFIGURE_ARGS+= --enable-snmp
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.68 2012/09/18 11:28:23 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.69 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT = mirroring/synchronization over low bandwidth links
|
||||
|
||||
@ -32,7 +32,7 @@ CONFIGURE_ARGS =--with-included-popt \
|
||||
--with-rsh="ssh -T" \
|
||||
--with-nobody-group=_rsync
|
||||
|
||||
.if ${FLAVOR:L:Miconv}
|
||||
.if ${FLAVOR:Miconv}
|
||||
CONFIGURE_ENV += CPPFLAGS='-I${LOCALBASE}/include' \
|
||||
LDFLAGS='-L${LOCALBASE}/lib'
|
||||
MODULES += converters/libiconv
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.176 2013/01/30 23:22:05 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.177 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -94,18 +94,18 @@ FLAVOR?=
|
||||
|
||||
MULTI_PACKAGES= -main -docs
|
||||
|
||||
.if ${FLAVOR:L:Mldap} && ${FLAVOR:L:Mads}
|
||||
.if ${FLAVOR:Mldap} && ${FLAVOR:Mads}
|
||||
ERRORS+= "Fatal: ldap and ads flavors conflict"
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mldap} || ${FLAVOR:L:Mads}
|
||||
.if ${FLAVOR:Mldap} || ${FLAVOR:Mads}
|
||||
LIB_DEPENDS+= databases/openldap
|
||||
WANTLIB += ldap lber
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-ldap
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mads}
|
||||
.if ${FLAVOR:Mads}
|
||||
CONFIGURE_ARGS+= --with-krb5="${WRKDIR}/usr"
|
||||
|
||||
# Merged build cruft needs loads of work. Disable until ready.
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.65 2012/03/08 12:13:01 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.66 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= Secure Internet Live Conferencing (SILC) server
|
||||
|
||||
@ -31,7 +31,7 @@ BUILD_DEPENDS+= devel/yasm
|
||||
FLAVORS= operops
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Moperops}
|
||||
.if ${FLAVOR:Moperops}
|
||||
PATCH_LIST+= patch-* operops-*
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.20 2012/11/30 19:38:09 chrisz Exp $
|
||||
# $OpenBSD: Makefile.inc,v 1.21 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
DISTNAME= unison-$V
|
||||
CATEGORIES= net
|
||||
@ -22,7 +22,7 @@ USE_GMAKE= Yes
|
||||
FLAVORS= no_x11
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
MAKE_FLAGS= UISTYLE=text
|
||||
.else
|
||||
MODULES += devel/gettext
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.29 2012/12/08 14:24:37 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.30 2013/02/09 14:49:52 sthen Exp $
|
||||
COMMENT= enhanced talk that allows for multiple parties
|
||||
|
||||
DISTNAME= ytalk-3.1.1
|
||||
@ -21,7 +21,7 @@ CONFIGURE_STYLE= autoconf dest
|
||||
FLAVORS= no_x11
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS+= --without-x
|
||||
.else
|
||||
WANTLIB+= ICE SM X11 pthread-stubs xcb
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.18 2012/03/29 13:38:49 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.19 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= shell (clone of plan9 shell)
|
||||
|
||||
@ -35,17 +35,17 @@ FLAVOR+=readline
|
||||
FLAVOR+=editline
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L} == "readline"
|
||||
.if ${FLAVOR} == "readline"
|
||||
CONFIGURE_ARGS+= --with-readline
|
||||
WANTLIB+= readline termcap
|
||||
.elif ${FLAVOR:L} == "editline"
|
||||
.elif ${FLAVOR} == "editline"
|
||||
DISTFILES= ${DISTNAME}.tar.gz editline-1.5.tar.gz:0
|
||||
EDITLINE= ${WRKSRC}/../editline
|
||||
CONFIGURE_ARGS+= --with-editline
|
||||
CONFIGURE_ENV= LIBS="-L${EDITLINE}"
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L} == "editline"
|
||||
.if ${FLAVOR} == "editline"
|
||||
pre-configure:
|
||||
@echo "===> Compiling editline"
|
||||
@cd ${EDITLINE} && ${MAKE_PROGRAM}
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.51 2013/02/07 07:39:04 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.52 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= format files for printing on PostScript printers
|
||||
|
||||
@ -35,7 +35,7 @@ BUILD_DEPENDS= devel/gperf
|
||||
FLAVORS= a4
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L} == "a4"
|
||||
.if ${FLAVOR} == "a4"
|
||||
PAPERSIZE= A4
|
||||
BUILD_DEPENDS+= print/psutils,a4
|
||||
RUN_DEPENDS+= psutils-*-a4:print/psutils,a4
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.28 2010/11/20 09:48:39 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.29 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= convert ASCII files to PostScript
|
||||
|
||||
@ -27,7 +27,7 @@ CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ARGS= --disable-nls
|
||||
USE_GROFF = Yes
|
||||
|
||||
.if !${FLAVOR:L:Ma4}
|
||||
.if !${FLAVOR:Ma4}
|
||||
CONFIGURE_ARGS+= --with-media=Letter
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.29 2012/02/18 09:08:16 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.30 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= print multiple pages per sheet on PostScript printer
|
||||
|
||||
@ -25,7 +25,7 @@ ALL_TARGET= default
|
||||
MAKE_FLAGS= CC='${CC}' CFLAGS='${CFLAGS} $${DEFS}' PREFIX='${PREFIX}'
|
||||
USE_GROFF = Yes
|
||||
|
||||
.if ${FLAVOR:L} == "a4"
|
||||
.if ${FLAVOR} == "a4"
|
||||
MAKE_FLAGS+= PAGESIZE=A4
|
||||
.else
|
||||
MAKE_FLAGS+= PAGESIZE=Letter
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.7 2012/03/29 13:38:49 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.8 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= intelligent n-up printing
|
||||
|
||||
@ -32,7 +32,7 @@ SEPARATE_BUILD= Yes
|
||||
FLAVORS= a4
|
||||
FLAVOR?=
|
||||
|
||||
.if defined(FLAVOR) && ${FLAVOR:L} == "a4"
|
||||
.if defined(FLAVOR) && ${FLAVOR} == "a4"
|
||||
CONFIGURE_ARGS+= --enable-a4
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.35 2012/04/28 12:16:29 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.36 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= utilities for manipulating PostScript documents
|
||||
|
||||
@ -30,7 +30,7 @@ USE_GROFF = Yes
|
||||
FLAVORS= a4
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L} == a4
|
||||
.if ${FLAVOR} == a4
|
||||
PAPERSIZE= a4
|
||||
.else
|
||||
PAPERSIZE= letter
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.45 2012/10/28 12:08:52 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.46 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -55,7 +55,7 @@ CONFIGURE_ARGS += -DCMAKE_SKIP_RPATH:BOOL=1 \
|
||||
-DCMAKE_CXX_FLAGS="${CXXFLAGS}" \
|
||||
-DCMAKE_C_FLAGS="${CFLAGS}"
|
||||
|
||||
.if ${FLAVOR:L:Mdebug}
|
||||
.if ${FLAVOR:Mdebug}
|
||||
CONFIGURE_ARGS+=-DWANT_DEBUG=1
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.38 2010/11/20 09:48:40 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.39 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= tools to convert Xfig's .fig files
|
||||
|
||||
@ -29,7 +29,7 @@ FLAVORS= a4
|
||||
FLAVOR?=
|
||||
WANTLIB= X11 Xpm c m z png>=2
|
||||
|
||||
.if ${FLAVOR:L:Ma4}
|
||||
.if ${FLAVOR:Ma4}
|
||||
PATCH_LIST= patch-* a4-*
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.68 2013/01/07 19:35:20 matthieu Exp $
|
||||
# $OpenBSD: Makefile,v 1.69 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= RFC 2222 SASL (Simple Authentication and Security Layer)
|
||||
|
||||
@ -48,7 +48,7 @@ FLAVOR?=
|
||||
BRKFLAVORMSG= choose either mysql, pgsql or sqlite3
|
||||
PKG_ARGS?= -Dsql=0
|
||||
|
||||
.if ${FLAVOR:L:Mdb4}
|
||||
.if ${FLAVOR:Mdb4}
|
||||
CONFIGURE_ARGS+=--with-dblib=berkeley \
|
||||
--with-bdb-libdir="${LOCALBASE}/lib/db4" \
|
||||
--with-bdb-incdir="${LOCALBASE}/include/db4"
|
||||
@ -60,7 +60,7 @@ CONFIGURE_ARGS+=--with-dblib=ndbm \
|
||||
--without-bdb-incdir
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mldap}
|
||||
.if ${FLAVOR:Mldap}
|
||||
WANTLIB+= ssl
|
||||
LIB_DEPENDS+= openldap-client->=2,<3:databases/openldap
|
||||
CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} \
|
||||
@ -70,8 +70,8 @@ WANTLIB += lber lber-2.4 ldap ldap-2.4
|
||||
CONFIGURE_ARGS+=--without-ldap
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mmysql}
|
||||
.if ${FLAVOR:L:Mpgsql} || ${FLAVOR:L:Msqlite3}
|
||||
.if ${FLAVOR:Mmysql}
|
||||
.if ${FLAVOR:Mpgsql} || ${FLAVOR:Msqlite3}
|
||||
ERRORS+= ${BRKFLAVORMSG}
|
||||
.endif
|
||||
PKG_ARGS= -Dsql=1
|
||||
@ -83,8 +83,8 @@ CONFIGURE_ARGS+=--enable-sql \
|
||||
--without-sqlite3
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mpgsql}
|
||||
.if ${FLAVOR:L:Mmysql} || ${FLAVOR:L:Msqlite3}
|
||||
.if ${FLAVOR:Mpgsql}
|
||||
.if ${FLAVOR:Mmysql} || ${FLAVOR:Msqlite3}
|
||||
ERRORS+= ${BRKFLAVORMSG}
|
||||
.endif
|
||||
PKG_ARGS= -Dsql=1
|
||||
@ -97,8 +97,8 @@ CONFIGURE_ARGS+=--enable-sql \
|
||||
CFLAGS+= -I${LOCALBASE}/include/postgresql
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Msqlite3}
|
||||
.if ${FLAVOR:L:Mmysql} || ${FLAVOR:L:Mpgsql}
|
||||
.if ${FLAVOR:Msqlite3}
|
||||
.if ${FLAVOR:Mmysql} || ${FLAVOR:Mpgsql}
|
||||
ERRORS+= ${BRKFLAVORMSG}
|
||||
.endif
|
||||
PKG_ARGS= -Dsql=1
|
||||
@ -120,11 +120,11 @@ post-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cyrus-sasl
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/{*.html,*.txt} ${PREFIX}/share/doc/cyrus-sasl
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cyrus-sasl
|
||||
.if ${FLAVOR:L:Mmysql} || ${FLAVOR:L:Mpgsql} || ${FLAVOR:L:Msqlite3}
|
||||
.if ${FLAVOR:Mmysql} || ${FLAVOR:Mpgsql} || ${FLAVOR:Msqlite3}
|
||||
${INSTALL_DATA} ${FILESDIR}/Sendmail.conf-sql \
|
||||
${PREFIX}/share/examples/cyrus-sasl
|
||||
.endif
|
||||
.if ${FLAVOR:L:Mldap}
|
||||
.if ${FLAVOR:Mldap}
|
||||
${INSTALL_DATA} ${WRKSRC}/saslauthd/LDAP_SASLAUTHD \
|
||||
${PREFIX}/share/doc/cyrus-sasl
|
||||
${SUBST_CMD} -o ${SHAREOWN} -g ${SHAREGRP} -c ${FILESDIR}/saslauthd.conf \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.57 2011/09/25 14:42:51 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.58 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= sniffing tools for penetration testing
|
||||
|
||||
@ -30,7 +30,7 @@ USE_GROFF = Yes
|
||||
FLAVORS= no_x11
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L} == "no_x11"
|
||||
.if ${FLAVOR} == "no_x11"
|
||||
CONFIGURE_ARGS+= --without-x
|
||||
.else
|
||||
WANTLIB+= ICE SM X11 Xmu
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.83 2012/12/31 16:34:35 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.84 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= GNU privacy guard - a free PGP replacement
|
||||
|
||||
@ -46,14 +46,14 @@ MAKE_FLAGS= LIBINTL="-L${LOCALBASE}/lib -lintl -liconv" \
|
||||
FLAVORS= card ldap
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mcard}
|
||||
.if ${FLAVOR:Mcard}
|
||||
LIB_DEPENDS+= devel/libusb-compat
|
||||
WANTLIB += usb pthread
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-card-support --without-libusb
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mldap}
|
||||
.if ${FLAVOR:Mldap}
|
||||
CONFIGURE_ARGS+= --enable-ldap
|
||||
LIB_DEPENDS+= databases/openldap
|
||||
WANTLIB += ldap>=8
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.22 2012/10/31 10:26:12 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.23 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT = gnu privacy guard - a free PGP replacement
|
||||
|
||||
@ -44,7 +44,7 @@ LIB_DEPENDS = archivers/bzip2 \
|
||||
net/curl \
|
||||
devel/pth
|
||||
|
||||
.if ${FLAVOR:L:Mldap}
|
||||
.if ${FLAVOR:Mldap}
|
||||
CONFIGURE_ARGS += --enable-ldap
|
||||
WANTLIB += ldap
|
||||
LIB_DEPENDS += databases/openldap
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.48 2012/10/15 15:18:33 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.49 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT-main= parallelized login hacker
|
||||
COMMENT-gui= GTK frontend for hydra
|
||||
@ -35,7 +35,7 @@ NO_REGRESS= Yes
|
||||
MAKE_FLAGS= CC=${CC}
|
||||
CFLAGS += -I${LOCALBASE}/include
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
ALL_TARGET= hydra pw-inspector
|
||||
|
||||
do-install:
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.31 2012/06/29 08:33:20 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.32 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= network security scanner
|
||||
DISTNAME= nessus-core-${V}
|
||||
@ -13,7 +13,7 @@ LIB_DEPENDS= security/nessus/libnasl
|
||||
BUILD_DEPENDS= devel/bison
|
||||
USE_GROFF = Yes
|
||||
|
||||
.if empty(FLAVOR:L:Mno_x11)
|
||||
.if empty(FLAVOR:Mno_x11)
|
||||
MODULES= devel/gettext
|
||||
WANTLIB += X11 Xcomposite Xcursor Xdamage Xext Xfixes
|
||||
WANTLIB += Xi Xinerama Xrandr Xrender atk-1.0 cairo expat fontconfig
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.7 2012/04/28 08:28:22 benoit Exp $
|
||||
# $OpenBSD: Makefile,v 1.8 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT = password cracker based on rainbow tables
|
||||
|
||||
@ -32,7 +32,7 @@ AUTOCONF_VERSION = 2.59
|
||||
FLAVORS = gui
|
||||
FLAVOR ?=
|
||||
|
||||
.if ${FLAVOR:L:Mgui}
|
||||
.if ${FLAVOR:Mgui}
|
||||
WANTLIB += ICE SM X11 Xext Xi Xinerama Xrender expat fontconfig
|
||||
WANTLIB += freetype glib-2.0 gobject-2.0 gthread-2.0 png
|
||||
WANTLIB += pthread-stubs stdc++ xcb z
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.22 2010/12/03 11:46:47 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.23 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
COMMENT= perl module to create/verify PGP signatures
|
||||
|
||||
@ -17,7 +17,7 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
FLAVORS= pgp
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mpgp}
|
||||
.if ${FLAVOR:Mpgp}
|
||||
RUN_DEPENDS= pgp->=5,<6:security/pgp5
|
||||
CONFIGURE_ARGS= PGPV="${LOCALBASE}/bin/pgpv" PGPS="${LOCALBASE}/bin/pgps" PGPSTYLE="PGP5"
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.28 2012/07/02 16:36:33 mpi Exp $
|
||||
# $OpenBSD: Makefile,v 1.29 2013/02/09 14:49:52 sthen Exp $
|
||||
|
||||
SHARED_ONLY = Yes
|
||||
|
||||
@ -51,7 +51,7 @@ do-configure:
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
.if ${FLAVOR:L:Mpython3}
|
||||
.if ${FLAVOR:Mpython3}
|
||||
mv ${PREFIX}/share/doc/py-crypto ${PREFIX}/share/doc/py3-crypto
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.16 2013/02/05 14:51:16 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.17 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT= generates or checks digests or mac
|
||||
|
||||
@ -24,7 +24,7 @@ USE_GROFF = Yes
|
||||
FLAVORS= static
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mstatic}
|
||||
.if ${FLAVOR:Mstatic}
|
||||
BUILD_DEPENDS+= security/mhash
|
||||
CONFIGURE_ARGS+= --enable-static-link
|
||||
.else
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2011/03/07 17:44:16 rpointel Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT= protect against brute force attacks on sshd and others
|
||||
|
||||
@ -24,7 +24,7 @@ NO_REGRESS= Yes
|
||||
FLAVORS = tcpd
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mtcpd}
|
||||
.if ${FLAVOR:Mtcpd}
|
||||
CONFIGURE_ARGS = --with-firewall=hosts
|
||||
.else
|
||||
CONFIGURE_ARGS = --with-firewall=pf
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.16 2010/11/22 09:34:10 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.17 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT= portable, encrypted, compressed tunnel
|
||||
|
||||
@ -30,7 +30,7 @@ USE_GROFF = Yes
|
||||
|
||||
BUILD_DEPENDS= archivers/bzip2
|
||||
|
||||
.if ${FLAVOR:L:Mudp_spoof}
|
||||
.if ${FLAVOR:Mudp_spoof}
|
||||
WANTLIB += lib/libnet-1.0/net=0
|
||||
LIB_DEPENDS+= libnet->=1.0,<1.1:net/libnet/1.0
|
||||
LIBNET_DEFS= `libnet-config-1.0 --defines`
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.49 2013/02/05 14:51:16 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.50 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT= extended C-shell with many useful features
|
||||
|
||||
@ -23,7 +23,7 @@ WANTLIB= c termlib
|
||||
FLAVORS= static
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L} == "static"
|
||||
.if ${FLAVOR} == "static"
|
||||
CONFIGURE_ENV= LDFLAGS="-static"
|
||||
.endif
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.16 2012/08/27 13:39:59 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.17 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT-main = daemon for controlling APC UPSes
|
||||
COMMENT-cgi = CGI scripts for web monitoring
|
||||
@ -60,7 +60,7 @@ WANTLIB-cgi = c pthread gd
|
||||
LIB_DEPENDS-cgi = graphics/gd
|
||||
RUN_DEPENDS-cgi =
|
||||
|
||||
.if !${FLAVOR:L:Mno_x11}
|
||||
.if !${FLAVOR:Mno_x11}
|
||||
MULTI_PACKAGES += -x11
|
||||
CONFIGURE_ARGS += --enable-gapcmon
|
||||
LIB_DEPENDS-x11 = devel/gconf2 \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.11 2012/10/29 15:19:03 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.12 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT= suite of clustering tools based on IBM's PSSP
|
||||
|
||||
@ -29,7 +29,7 @@ FLAVOR?=
|
||||
X11_SUBDIRS= dvt rvt
|
||||
USE_GROFF = Yes
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS= --without-x11
|
||||
.else
|
||||
WANTLIB+= X11 pthread-stubs util xcb
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.36 2012/12/31 09:36:38 chrisz Exp $
|
||||
# $OpenBSD: Makefile,v 1.37 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
ONLY_FOR_ARCHS= ${APM_ARCHS}
|
||||
|
||||
@ -36,8 +36,8 @@ USE_LIBTOOL= Yes
|
||||
FLAVORS= no_x11 audacious xmms2
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
. if ${FLAVOR:L:Maudacious} || ${FLAVOR:L:Mxmms2}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
. if ${FLAVOR:Maudacious} || ${FLAVOR:Mxmms2}
|
||||
ERRORS+="Fatal: nonsense combination of flavors"
|
||||
. else
|
||||
CONFIGURE_ARGS+=--disable-double-buffer \
|
||||
@ -53,7 +53,7 @@ WANTLIB += Imlib2 X11 Xdamage Xext Xfixes Xft
|
||||
WANTLIB += Xrender expat fontconfig freetype xcb
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Maudacious}
|
||||
.if ${FLAVOR:Maudacious}
|
||||
CONFIGURE_ARGS+=--enable-audacious=yes
|
||||
LIB_DEPENDS += audio/audacious devel/harfbuzz
|
||||
WANTLIB += GL ICE Xau Xcomposite Xcursor Xdmcp Xi Xinerama \
|
||||
@ -66,7 +66,7 @@ WANTLIB += GL ICE Xau Xcomposite Xcursor Xdmcp Xi Xinerama \
|
||||
pthread-stubs SM stdc++ xcb-render xcb-shm
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mxmms2}
|
||||
.if ${FLAVOR:Mxmms2}
|
||||
CONFIGURE_ARGS+=--enable-xmms2
|
||||
LIB_DEPENDS+= audio/xmms2
|
||||
WANTLIB+= xmmsclient
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.65 2012/09/01 14:36:58 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.66 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -30,7 +30,7 @@ PSEUDO_FLAVORS= no_client
|
||||
FLAVOR?=
|
||||
|
||||
MULTI_PACKAGES= -main
|
||||
.if !${FLAVOR:L:Mno_client}
|
||||
.if !${FLAVOR:Mno_client}
|
||||
MULTI_PACKAGES+=-client
|
||||
.else
|
||||
WRKBUILD= ${WRKDIST}/server
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.55 2012/03/29 13:39:00 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.56 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT= read/write/list/format DOS disks under Unix
|
||||
|
||||
@ -29,7 +29,7 @@ USE_GROFF = Yes
|
||||
FLAVORS= no_x11
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mno_x11}
|
||||
.if ${FLAVOR:Mno_x11}
|
||||
CONFIGURE_ARGS= --with-x=no
|
||||
.else
|
||||
WANTLIB+= ICE SM X11 Xau pthread-stubs xcb
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.67 2013/02/05 14:49:29 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.68 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT-main= UPS monitoring program supporting many brands
|
||||
COMMENT-cgi= CGIs for monitoring Nut-based UPSs
|
||||
@ -67,13 +67,13 @@ PSEUDO_FLAVORS= no_snmp no_xml
|
||||
FLAVOR?=
|
||||
MULTI_PACKAGES= -main -cgi
|
||||
|
||||
.if ${FLAVOR:L:Mno_snmp}
|
||||
.if ${FLAVOR:Mno_snmp}
|
||||
CONFIGURE_ARGS+= --without-snmp
|
||||
.else
|
||||
MULTI_PACKAGES+= -snmp
|
||||
.endif
|
||||
|
||||
.if ${FLAVOR:L:Mno_xml}
|
||||
.if ${FLAVOR:Mno_xml}
|
||||
CONFIGURE_ARGS+= --without-neon
|
||||
.else
|
||||
MULTI_PACKAGES+= -xml
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.22 2012/12/02 20:21:50 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.23 2013/02/09 14:49:53 sthen Exp $
|
||||
|
||||
COMMENT-main = mature and flexible open source SIP server
|
||||
|
||||
@ -80,7 +80,7 @@ MAKE_FLAGS = FLAVOUR=kamailio \
|
||||
LIBsrutils_VERSION=${LIBsrutils_VERSION}
|
||||
|
||||
PSEUDO_FLAVORS += no_postgresql
|
||||
.if !${FLAVOR:L:Mno_postgresql}
|
||||
.if !${FLAVOR:Mno_postgresql}
|
||||
MULTI_PACKAGES += -postgresql
|
||||
COMMENT-postgresql = kamailio postgresql module
|
||||
KAMAILIO_MODULES += db_postgres
|
||||
@ -89,7 +89,7 @@ LIB_DEPENDS-postgresql =databases/postgresql,-main telephony/kamailio,-main
|
||||
.endif
|
||||
|
||||
PSEUDO_FLAVORS += no_mysql
|
||||
.if !${FLAVOR:L:Mno_mysql}
|
||||
.if !${FLAVOR:Mno_mysql}
|
||||
MULTI_PACKAGES += -mysql
|
||||
COMMENT-mysql = kamailio mysql module
|
||||
KAMAILIO_MODULES += db_mysql
|
||||
@ -99,7 +99,7 @@ LIB_DEPENDS-mysql = databases/mysql,-main telephony/kamailio,-main
|
||||
.endif
|
||||
|
||||
PSEUDO_FLAVORS += no_ldap
|
||||
.if !${FLAVOR:L:Mno_ldap}
|
||||
.if !${FLAVOR:Mno_ldap}
|
||||
MULTI_PACKAGES += -ldap
|
||||
COMMENT-ldap = kamailio LDAP modules
|
||||
KAMAILIO_MODULES += ldap h350
|
||||
@ -108,7 +108,7 @@ LIB_DEPENDS-ldap = databases/openldap,-main telephony/kamailio,-main
|
||||
.endif
|
||||
|
||||
PSEUDO_FLAVORS += no_xmlrpc
|
||||
.if !${FLAVOR:L:Mno_xmlrpc}
|
||||
.if !${FLAVOR:Mno_xmlrpc}
|
||||
MULTI_PACKAGES += -xmlrpc
|
||||
COMMENT-xmlrpc = kamailio XML-RPC module
|
||||
KAMAILIO_MODULES += mi_xmlrpc
|
||||
@ -119,7 +119,7 @@ LIB_DEPENDS-xmlrpc = net/xmlrpc-c telephony/kamailio,-main
|
||||
.endif
|
||||
|
||||
PSEUDO_FLAVORS += no_snmpstats
|
||||
.if !${FLAVOR:L:Mno_snmpstats}
|
||||
.if !${FLAVOR:Mno_snmpstats}
|
||||
MULTI_PACKAGES += -snmpstats
|
||||
COMMENT-snmpstats = kamailio snmpstats module
|
||||
KAMAILIO_MODULES += snmpstats
|
||||
@ -128,7 +128,7 @@ LIB_DEPENDS-snmpstats = net/net-snmp telephony/kamailio,-main
|
||||
.endif
|
||||
|
||||
PSEUDO_FLAVORS += no_carrierroute
|
||||
.if !${FLAVOR:L:Mno_carrierroute}
|
||||
.if !${FLAVOR:Mno_carrierroute}
|
||||
MULTI_PACKAGES += -carrierroute
|
||||
COMMENT-carrierroute = kamailio carrierroute module
|
||||
KAMAILIO_MODULES += carrierroute
|
||||
@ -140,7 +140,7 @@ LIB_DEPENDS-carrierroute = devel/libconfuse \
|
||||
.endif
|
||||
|
||||
PSEUDO_FLAVORS += no_perl
|
||||
.if !${FLAVOR:L:Mno_perl}
|
||||
.if !${FLAVOR:Mno_perl}
|
||||
MULTI_PACKAGES += -perl
|
||||
COMMENT-perl = kamailio perl modules
|
||||
KAMAILIO_MODULES += perl perlvdb
|
||||
@ -151,7 +151,7 @@ RUN_DEPENDS-perl = databases/p5-ldap
|
||||
|
||||
# TODO
|
||||
#PSEUDO_FLAVORS += no_radius
|
||||
#.if !${FLAVOR:L:Mno_radius}
|
||||
#.if !${FLAVOR:Mno_radius}
|
||||
#MULTI_PACKAGES += -radius
|
||||
#COMMENT-radius = kamailio RADIUS modules
|
||||
#KAMAILIO_MODULES += auth_radius misc_radius peering
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user