mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Convert to OptionsNG
PR: ports/172426 Submitted by: Michael Gmelin <freebsd@grem.de>
This commit is contained in:
parent
60476ac41f
commit
a65ebd957d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=305429
1 changed files with 12 additions and 17 deletions
|
@ -1,6 +1,4 @@
|
|||
# New ports collection makefile for: libpreludedb
|
||||
# Date created: 2005-10-14
|
||||
# Whom: Sergei Kolobov <sergei@FreeBSD.org>
|
||||
# Created by: Sergei Kolobov <sergei@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libpreludedb
|
||||
|
@ -23,15 +21,12 @@ USE_LDCONFIG= yes
|
|||
MAN1= preludedb-admin.1
|
||||
PORTDOCS= *
|
||||
|
||||
OPTIONS= PERL "Include Perl bindings" off \
|
||||
PYTHON "Include Python bindings" off \
|
||||
MYSQL "Use MySQL backend" on \
|
||||
PGSQL "Use PostgreSQL backend" off \
|
||||
SQLITE "Use SQLite backend" off
|
||||
OPTIONS_DEFINE= DOCS MYSQL PERL PGSQL PYTHON SQLITE
|
||||
OPTIONS_DEFAULT=MYSQL
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if defined(WITH_PERL)
|
||||
.if ${PORT_OPTIONS:MPERL}
|
||||
USE_PERL5= yes
|
||||
CONFIGURE_ARGS+= --with-perl
|
||||
PLIST_SUB+= WITH_PERL=""
|
||||
|
@ -40,7 +35,7 @@ CONFIGURE_ARGS+= --without-perl
|
|||
PLIST_SUB+= WITH_PERL="@comment "
|
||||
.endif
|
||||
|
||||
.if defined(WITH_PYTHON)
|
||||
.if ${PORT_OPTIONS:MPYTHON}
|
||||
USE_PYTHON= yes
|
||||
.include "${PORTSDIR}/Mk/bsd.python.mk"
|
||||
CONFIGURE_ARGS+= --with-python
|
||||
|
@ -50,7 +45,7 @@ CONFIGURE_ARGS+= --without-python
|
|||
PLIST_SUB+= WITH_PYTHON="@comment "
|
||||
.endif
|
||||
|
||||
.if defined(WITH_MYSQL) || exists(${LOCALBASE}/bin/mysql_config)
|
||||
.if ${PORT_OPTIONS:MMYSQL} || exists(${LOCALBASE}/bin/mysql_config)
|
||||
USE_MYSQL= yes
|
||||
CONFIGURE_ARGS+= --with-mysql
|
||||
PLIST_SUB+= WITH_MYSQL=""
|
||||
|
@ -59,7 +54,7 @@ CONFIGURE_ARGS+= --without-mysql
|
|||
PLIST_SUB+= WITH_MYSQL="@comment "
|
||||
.endif
|
||||
|
||||
.if defined(WITH_PGSQL) || exists(${LOCALBASE}/bin/pg_config)
|
||||
.if ${PORT_OPTIONS:MPGSQL} || exists(${LOCALBASE}/bin/pg_config)
|
||||
USE_PGSQL= yes
|
||||
CONFIGURE_ARGS+= --with-postgresql
|
||||
PLIST_SUB+= WITH_PGSQL=""
|
||||
|
@ -68,7 +63,7 @@ CONFIGURE_ARGS+= --without-postgresql
|
|||
PLIST_SUB+= WITH_PGSQL="@comment "
|
||||
.endif
|
||||
|
||||
.if defined(WITH_SQLITE) || exists(${LOCALBASE}/lib/libsqlite3.so)
|
||||
.if ${PORT_OPTIONS:MSQLITE} || exists(${LOCALBASE}/lib/libsqlite3.so)
|
||||
USE_SQLITE= yes
|
||||
CONFIGURE_ARGS+= --with-sqlite3
|
||||
PLIST_SUB+= WITH_SQLITE=""
|
||||
|
@ -78,16 +73,16 @@ CONFIGURE_ARGS+= --without-sqlite3
|
|||
PLIST_SUB+= WITH_SQLITE="@comment "
|
||||
.endif
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
@${INSTALL} -d ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/docs/api/html/* ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
@${INSTALL_MAN} ${WRKSRC}/docs/manpages/*.1 ${MAN1PREFIX}/man/man1/
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
Loading…
Add table
Reference in a new issue