b7f05445c0
It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
132 lines
4.4 KiB
Makefile
132 lines
4.4 KiB
Makefile
PORTNAME= refdb
|
|
PORTVERSION= 0.9.9
|
|
DISTVERSIONSUFFIX= -1
|
|
PORTREVISION= 11
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-src/${PORTNAME}-src-${PORTVERSION}-1
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Bibliographic reference database
|
|
WWW= http://refdb.sourceforge.net/
|
|
|
|
BROKEN_FreeBSD_13= ld: error: duplicate symbol: thecommandlist
|
|
BROKEN_FreeBSD_14= ld: error: duplicate symbol: thecommandlist
|
|
|
|
LIB_DEPENDS= libexpat.so:textproc/expat2 \
|
|
libbtparse.so:textproc/btparse \
|
|
libdbi.so:databases/libdbi
|
|
|
|
USES= gmake iconv readline perl5 libtool pkgconfig pathfix shebangfix
|
|
HAS_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
PORTDOCS= *
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -lm
|
|
|
|
CONFIGURE_ARGS= --with-expat-lib=${LOCALBASE}/lib \
|
|
--with-classpath-root=${PREFIX}/share/java/classes \
|
|
--with-refdb-url=http://localhost/refdb
|
|
XMLCATMGR= ${LOCALBASE}/bin/xmlcatmgr
|
|
|
|
OPTIONS_DEFINE= DOCS CATALOG
|
|
OPTIONS_SINGLE= DB
|
|
OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE
|
|
OPTIONS_EXCLUDE= CATALOG # may not be implemented correctly
|
|
CATALOG_DESC= Install SGML catalog
|
|
|
|
OPTIONS_DEFAULT= PGSQL
|
|
DOCS_BUILD_DEPENDS= xsltproc:textproc/libxslt \
|
|
docbook-xsl>=0:textproc/docbook-xsl
|
|
|
|
SHEBANG_FILES= ${WRKSRC}/scripts/*
|
|
|
|
USE_RC_SUBR= refdbd
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USES+= mysql
|
|
# If libdbi-drivers has been built without MySQL driver, abort
|
|
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdmysql.so)
|
|
IGNORE= rebuild databases/libdbi-drivers with MySQL support
|
|
.elif !exists(${LOCALBASE}/lib/dbd)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/dbd:databases/libdbi-drivers
|
|
.endif
|
|
CONFIGURE_ARGS+= --with-db-server=mysql
|
|
|
|
.elif ${PORT_OPTIONS:MPGSQL}
|
|
USES+= pgsql
|
|
# If libdbi-drivers has been built without PostgreSQL driver, abort
|
|
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdpgsql.so)
|
|
IGNORE= rebuild databases/libdbi-drivers with PostgreSQL support
|
|
.elif !exists(${LOCALBASE}/lib/dbd)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/dbd:databases/libdbi-drivers
|
|
.endif
|
|
CONFIGURE_ARGS+= --with-db-server=pgsql
|
|
|
|
.elif ${PORT_OPTIONS:MSQLITE}
|
|
LIB_DEPENDS+= libsqlite3.so:databases/sqlite3
|
|
# If libdbi-drivers has been built without SQLite driver, abort
|
|
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdsqlite3.so)
|
|
IGNORE= rebuild databases/libdbi-drivers with SQLite support
|
|
.elif !exists(${LOCALBASE}/lib/dbd)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/dbd:databases/libdbi-drivers
|
|
.endif
|
|
CONFIGURE_ARGS+= --with-db-server=sqlite
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
CONFIGURE_ARGS+= --with-docbook-xsl=${PREFIX}/share/xsl/docbook \
|
|
--without-docbook-xsl-ns \
|
|
--without-tei-xsl \
|
|
--without-tei-xsl-ns
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-docs
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCATALOG}
|
|
RUN_DEPENDS+= xmlcatmgr:textproc/xmlcatmgr
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|$$(PACKAGE)-$$(VERSION)|refdb|g' \
|
|
${WRKSRC}/doc/Makefile.in
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MCATALOG}
|
|
@[ -f ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports ] || ${TOUCH} ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports
|
|
@${XMLCATMGR} -s -c ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports lookup "${STAGEDIR}${PREFIX}/share/refdb/refdb.cat" > /dev/null || ${XMLCATMGR} -s -c ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports add CATALOG "${STAGEDIR}${PREFIX}/share/refdb/refdb.cat" -- > /dev/null
|
|
.endif
|
|
@${ECHO_MSG} "To complete RefDB installation:"
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "1. To initialise MySQL, run the following command:"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " mysql -u root -e \"CREATE DATABASE refdb\""
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " Then, for MySQL older than 4.1, run:"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " mysql -u root refdb < ${PREFIX}/share/refdb/sql/refdb.dump.mysql"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " For MySQL 4.1 and later, run:"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " mysql -u root refdb < ${PREFIX}/share/refdb/sql/refdb.dump.mysql41"
|
|
@${ECHO_MSG} ""
|
|
.elif ${PORT_OPTIONS:MPGSQL}
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "1. To initialise PostgreSQL, run the following commands:"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " createdb -U pgsql -E UNICODE refdb"
|
|
@${ECHO_MSG} " psql -U pgsql refdb < ${PREFIX}/share/refdb/sql/refdb.dump.pgsql"
|
|
@${ECHO_MSG} ""
|
|
.elif ${PORT_OPTIONS:MSQLITE}
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "1. To initialise SQLite, run the following commands:"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " cd ${PREFIX}/share/refdb/db"
|
|
@${ECHO_MSG} " sqlite refdb < ${PREFIX}/share/refdb/sql/refdb.dump.sqlite"
|
|
@${ECHO_MSG} ""
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|