View | Details | Raw Unified | Return to bug 265105 | Differences between
and this patch

Collapse All | Expand All

(-)b/textproc/refdb/Makefile (-42 / +58 lines)
Lines 1-87 Link Here
1
# Created by: paulh@logicsquad.net
1
PORTNAME=		refdb
2
PORTVERSION=	1.0.3
3
CATEGORIES=		textproc
4
MASTER_SITES=	https://sourceforge.net/projects/${PORTNAME}/files/latest/download/
2
5
3
PORTNAME=	refdb
6
MAINTAINER=		ohartmann@walstatt.org
4
PORTVERSION=	0.9.9
7
COMMENT=		Bibliographic reference database
5
DISTVERSIONSUFFIX=	-1
6
PORTREVISION=	11
7
CATEGORIES=	textproc
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-src/${PORTNAME}-src-${PORTVERSION}-1
9
8
10
MAINTAINER=	ohartman@zedat.fu-berlin.de
9
LICENSE=		GPLv2
11
COMMENT=	Bibliographic reference database
10
LICENSE_FILE=	${WRKSRC}/COPYING
12
13
BROKEN_FreeBSD_13=	ld: error: duplicate symbol: thecommandlist
14
BROKEN_FreeBSD_14=	ld: error: duplicate symbol: thecommandlist
15
11
16
LIB_DEPENDS=	libexpat.so:textproc/expat2 \
12
LIB_DEPENDS=	libexpat.so:textproc/expat2 \
17
		libbtparse.so:textproc/btparse \
13
		libbtparse.so:textproc/btparse \
18
		libdbi.so:databases/libdbi
14
		libdbi.so:databases/libdbi \
15
		libltdl.so:devel/libltdl
16
17
RUN_DEPENDS=	xsltproc:textproc/libxslt \
18
		fop:textproc/fop \
19
		p5-XML-Parser>0:textproc/p5-XML-Parser \
20
		p5-MARC-Record>0:textproc/p5-MARC-Record \
21
		p5-MARC-XML>0:textproc/p5-MARC-XML
22
23
BUILD_DEPENDS=	svnversion:devel/subversion
24
25
USES=			autoreconf gmake iconv php:web perl5 libtool pkgconfig pathfix readline shebangfix
19
26
20
USES=		gmake iconv readline perl5 libtool pkgconfig pathfix shebangfix
27
HAS_CONFIGURE= 	yes
21
HAS_CONFIGURE=	yes
28
INSTALL_TARGET= install-strip
22
INSTALL_TARGET=	install-strip
29
PORTDOCS=		*
23
PORTDOCS=	*
24
30
25
CFLAGS+=	-I${LOCALBASE}/include
31
CFLAGS+=		-I${LOCALBASE}/include
26
LIBS+=		-lm
32
LIBS+=			-lm
27
33
28
CONFIGURE_ARGS=	--with-expat-lib=${LOCALBASE}/lib \
34
CONFIGURE_ARGS+=--with-expat-lib=${LOCALBASE}/lib \
29
		--with-classpath-root=${PREFIX}/share/java/classes \
35
				--with-classpath-root=${LOCALBASE}/share/java/classes
30
		--with-refdb-url=http://localhost/refdb
31
XMLCATMGR=	${LOCALBASE}/bin/xmlcatmgr
32
36
33
OPTIONS_DEFINE=		DOCS CATALOG
37
XMLCATMGR=		${LOCALBASE}/bin/xmlcatmgr
38
39
OPTIONS_DEFINE=		CATALOG DOCS
34
OPTIONS_SINGLE=		DB
40
OPTIONS_SINGLE=		DB
35
OPTIONS_SINGLE_DB=	MYSQL PGSQL SQLITE
41
OPTIONS_SINGLE_DB=	MYSQL PGSQL SQLITE
36
OPTIONS_EXCLUDE=	CATALOG		# may not be implemented correctly
42
OPTIONS_EXCLUDE=	CATALOG DOCS		# may not be implemented correctly
37
CATALOG_DESC=		Install SGML catalog
43
CATALOG_DESC=		Install SGML catalog
38
44
39
OPTIONS_DEFAULT=	PGSQL
45
OPTIONS_DEFAULT=	PGSQL
40
DOCS_BUILD_DEPENDS=	xsltproc:textproc/libxslt \
46
DOCS_BUILD_DEPENDS=	docbook-xsl>=0:textproc/docbook-xsl
41
			docbook-xsl>=0:textproc/docbook-xsl
47
48
SHEBANG_FILES=		${WRKSRC}/scripts/*
42
49
43
SHEBANG_FILES=	${WRKSRC}/scripts/*
50
USE_RC_SUBR= 		refdbd
44
51
45
USE_RC_SUBR=	refdbd
52
MYSQL_USES=		mysql
53
MYSQL_CONFIGURE_WITH=	mysql
54
PGSQL_USES=		pgsql
55
PGSQL_CONFIGURE_WITH=	pgsql
56
SQLITE3_USES=		sqlite
57
SQLITE3_CONFIGURE_WITH=	sqlite3
46
58
47
.include <bsd.port.options.mk>
59
.include <bsd.port.options.mk>
48
60
49
.if ${PORT_OPTIONS:MMYSQL}
61
.if ${PORT_OPTIONS:MMYSQL}
50
USES+=		mysql
51
# If libdbi-drivers has been built without MySQL driver, abort
62
# If libdbi-drivers has been built without MySQL driver, abort
52
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdmysql.so)
63
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdmysql.so)
53
IGNORE=		rebuild databases/libdbi-drivers with MySQL support
64
IGNORE=		rebuild databases/libdbi-drivers with MySQL support
54
.elif !exists(${LOCALBASE}/lib/dbd)
65
.elif !exists(${LOCALBASE}/lib/dbd)
55
BUILD_DEPENDS+=	${LOCALBASE}/lib/dbd:databases/libdbi-drivers
66
BUILD_DEPENDS+=	${LOCALBASE}/lib/dbd:databases/libdbi-drivers
56
.endif
67
.endif
57
CONFIGURE_ARGS+=	--with-db-server=mysql
58
68
59
.elif ${PORT_OPTIONS:MPGSQL}
69
.elif ${PORT_OPTIONS:MPGSQL}
60
USES+=	pgsql
61
# If libdbi-drivers has been built without PostgreSQL driver, abort
70
# If libdbi-drivers has been built without PostgreSQL driver, abort
62
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdpgsql.so)
71
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdpgsql.so)
63
IGNORE=		rebuild databases/libdbi-drivers with PostgreSQL support
72
IGNORE=		rebuild databases/libdbi-drivers with PostgreSQL support
64
.elif !exists(${LOCALBASE}/lib/dbd)
73
.elif !exists(${LOCALBASE}/lib/dbd)
65
BUILD_DEPENDS+=	${LOCALBASE}/lib/dbd:databases/libdbi-drivers
74
BUILD_DEPENDS+=	${LOCALBASE}/lib/dbd:databases/libdbi-drivers
66
.endif
75
.endif
67
CONFIGURE_ARGS+=	--with-db-server=pgsql
68
76
69
.elif ${PORT_OPTIONS:MSQLITE}
77
.elif ${PORT_OPTIONS:MSQLITE}
70
LIB_DEPENDS+=	libsqlite3.so:databases/sqlite3
71
# If libdbi-drivers has been built without SQLite driver, abort
78
# If libdbi-drivers has been built without SQLite driver, abort
72
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdsqlite3.so)
79
.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdsqlite3.so)
73
IGNORE=		rebuild databases/libdbi-drivers with SQLite support
80
IGNORE=		rebuild databases/libdbi-drivers with SQLite support
74
.elif !exists(${LOCALBASE}/lib/dbd)
81
.elif !exists(${LOCALBASE}/lib/dbd)
75
BUILD_DEPENDS+=	${LOCALBASE}/lib/dbd:databases/libdbi-drivers
82
BUILD_DEPENDS+=	${LOCALBASE}/lib/dbd:databases/libdbi-drivers
76
.endif
83
.endif
77
CONFIGURE_ARGS+=	--with-db-server=sqlite
84
78
.endif
85
.endif
79
86
80
.if ${PORT_OPTIONS:MDOCS}
87
.if ${PORT_OPTIONS:MDOCS}
88
BUILD_DEPENDS+=	dtdparse:textproc/dtdparse
89
USE_JAVA=			YES
90
JAVA_VERSION=		8+
91
JAVA_BUILD=			YES
81
CONFIGURE_ARGS+=	--with-docbook-xsl=${PREFIX}/share/xsl/docbook \
92
CONFIGURE_ARGS+=	--with-docbook-xsl=${PREFIX}/share/xsl/docbook \
82
			--without-docbook-xsl-ns \
93
					--without-docbook-xsl-ns \
83
			--without-tei-xsl \
94
					--without-tei-xsl \
84
			--without-tei-xsl-ns
95
					--without-tei-xsl-ns
85
.else
96
.else
86
CONFIGURE_ARGS+=	--disable-docs
97
CONFIGURE_ARGS+=	--disable-docs
87
.endif
98
.endif
Lines 91-104 RUN_DEPENDS+= xmlcatmgr:textproc/xmlcatmgr Link Here
91
.endif
102
.endif
92
103
93
post-patch:
104
post-patch:
94
	${REINPLACE_CMD} -e 's|$$(PACKAGE)-$$(VERSION)|refdb|g' \
105
		${REINPLACE_CMD} -e 's|$$(PACKAGE)-$$(VERSION)|refdb|g' \
95
		${WRKSRC}/doc/Makefile.in
106
		${WRKSRC}/doc/Makefile.am
96
107
97
post-install:
108
post-install:
98
.if ${PORT_OPTIONS:MCATALOG}
109
.if ${PORT_OPTIONS:MCATALOG}
99
	@[ -f ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports ] || ${TOUCH} ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports
110
		@[ -f ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports ] || ${TOUCH} ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports
100
	@${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
111
		@${XMLCATMGR} -s -c ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports lookup "${STAGEDIR}${PREFIX}/share/refdb/refdb.cat" > /dev/null || \
112
		${XMLCATMGR} -s -c ${STAGEDIR}${PREFIX}/share/sgml/catalog.ports add CATALOG "${STAGEDIR}${PREFIX}/share/refdb/refdb.cat" -- > /dev/null
101
.endif
113
.endif
114
	@${ECHO_MSG} ""
102
	@${ECHO_MSG} "To complete RefDB installation:"
115
	@${ECHO_MSG} "To complete RefDB installation:"
103
.if ${PORT_OPTIONS:MMYSQL}
116
.if ${PORT_OPTIONS:MMYSQL}
104
	@${ECHO_MSG} ""
117
	@${ECHO_MSG} ""
Lines 118-123 post-install: Link Here
118
	@${ECHO_MSG} ""
131
	@${ECHO_MSG} ""
119
	@${ECHO_MSG} "1. To initialise PostgreSQL, run the following commands:"
132
	@${ECHO_MSG} "1. To initialise PostgreSQL, run the following commands:"
120
	@${ECHO_MSG} ""
133
	@${ECHO_MSG} ""
134
	@${ECHO_MSG} "   createdb -U postgres -E UNICODE refdb"
135
	@${ECHO_MSG} "   psql -U postgres refdb < ${PREFIX}/share/refdb/sql/refdb.dump.pgsql"
136
	@${ECHO_MSG} "   or, on older PostgreSQL installations,"
121
	@${ECHO_MSG} "   createdb -U pgsql -E UNICODE refdb"
137
	@${ECHO_MSG} "   createdb -U pgsql -E UNICODE refdb"
122
	@${ECHO_MSG} "   psql -U pgsql refdb < ${PREFIX}/share/refdb/sql/refdb.dump.pgsql"
138
	@${ECHO_MSG} "   psql -U pgsql refdb < ${PREFIX}/share/refdb/sql/refdb.dump.pgsql"
123
	@${ECHO_MSG} ""
139
	@${ECHO_MSG} ""
(-)b/textproc/refdb/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (refdb-0.9.9-1.tar.gz) = 99f8146d646e97a32b248f7d5b530119066c2d108a8335f864816eadcfc3dec6
1
TIMESTAMP = 1644836370
2
SIZE (refdb-0.9.9-1.tar.gz) = 3209712
2
SHA256 (refdb-1.0.3.tar.gz) = bd13e788dc4ae7293a4220c0ba65330980fd123c3209b5b59f963ae85e6c26e5
3
SIZE (refdb-1.0.3.tar.gz) = 3500489
(-)b/textproc/refdb/files/patch-doc_Makefile.in (-33 lines)
Lines 1-33 Link Here
1
--- doc/Makefile.in.orig	2014-09-10 12:40:48 UTC
2
+++ doc/Makefile.in
3
@@ -227,8 +227,8 @@ tei_xsl_ns = @tei_xsl_ns@
4
 trang_cmd = @trang_cmd@
5
 var_dir = @var_dir@
6
 xml_decl = @xml_decl@
7
-docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/refdb-manual
8
-doc_DATA = refdb-manual.pdf refdb-manual/*
9
+docdir = $(datadir)/doc/refdb
10
+doc_DATA = refdb-manual/*
11
 indexdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/
12
 index_DATA = index.html
13
 citestylexdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/citestylex
14
@@ -779,7 +779,7 @@ uninstall-am: uninstall-citationlistxDAT
15
 	uninstall-xnoteelementsDATA
16
 
17
 
18
-all: refdb-manual.pdf refdb-manual/* citestylex/elements.html risx/elements.html citationlistx/elements.html xnote/elements.html
19
+all: refdb-manual-html citestylex/elements.html risx/elements.html citationlistx/elements.html xnote/elements.html
20
 
21
 ####################################################################
22
 # building the manual
23
@@ -804,9 +804,8 @@ refdb-manual.pdf: $(manual_sources) $(ma
24
 # we have to give Java a little extra memory lest fop will die a horrible death
25
 	JAVA_OPTS=-Xmx256M fop -fo refdb-manual.fo -pdf refdb-manual.pdf
26
 
27
-refdb-manual/*: $(manual_sources) $(manpage_sources) $(png_images) refdb-manual-statustable.xml include/manual-xhtml.xsl
28
+refdb-manual-html: $(manual_sources) $(manpage_sources) $(png_images) refdb-manual-statustable.xml include/manual-xhtml.xsl
29
 	@echo "Creating HTML manual...";
30
-	rm -rf refdb-manual/*
31
 # building outside the source dir won't work here because the docbook
32
 # stylesheets screw up the location of the image files for HTML output
33
 	mkdir -p refdb-manual && cp $(html_extra_files) refdb-manual/ && xsltproc -o refdb-manual/ --nonet --xinclude include/manual-xhtml.xsl refdb-manual.xml
(-)b/textproc/refdb/files/patch-scripts-refdb.in (-3 / +3 lines)
Lines 1-6 Link Here
1
--- scripts/refdb.in.orig	Fri Aug 25 03:53:55 2006
1
--- scripts/refdb.in.orig	2022-07-12 11:47:34 UTC
2
+++ scripts/refdb.in	Tue Jan 30 11:25:47 2007
2
+++ scripts/refdb.in
3
@@ -44,7 +44,7 @@
3
@@ -43,7 +43,7 @@ REFDBCTL=<prefix>/bin/<program_prefix>refdbctl<program
4
 # true for BSD-UNIX and Unices derived thereof, as well as for the
4
 # true for BSD-UNIX and Unices derived thereof, as well as for the
5
 # Slackware Linux distribution). This setting does not perform any black
5
 # Slackware Linux distribution). This setting does not perform any black
6
 # magic, but it makes the screen messages at startup match the OS style
6
 # magic, but it makes the screen messages at startup match the OS style
(-)b/textproc/refdb/files/refdbd.in (-8 / +8 lines)
Lines 1-6 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
2
3
# O. Hartmann, Berlin, 2014
3
# O. Hartmann, 2014 - 2022
4
#
4
#
5
#
5
#
6
# PROVIDE: refdbd
6
# PROVIDE: refdbd
Lines 29-44 rcvar=refdbd_enable Link Here
29
# read settings, set defaults
29
# read settings, set defaults
30
load_rc_config ${name}
30
load_rc_config ${name}
31
31
32
: ${refdbd_enable:="NO"}
33
: ${refdbd_local:="NO"}
34
32
command="%%PREFIX%%/bin/${name}"
35
command="%%PREFIX%%/bin/${name}"
33
globalconfig="%%PREFIX%%/etc/refdb/refdbdrc"
36
globalconfig="%%PREFIX%%/etc/refdb/refdbdrc"
34
pidfile="/var/run/${name}.pid"
37
pidfile="/var/run/${name}.pid"
35
extra_commands="reload"
38
extra_commands="reload"
36
39
37
load_rc_config ${name}
38
39
: ${refdbd_enable:="NO"}
40
: ${refdbd_local:="NO"}
41
42
if checkyesno refdbd_local; then
40
if checkyesno refdbd_local; then
43
  refdbd_local_flags="-I"
41
  refdbd_local_flags="-I"
44
else
42
else
Lines 70-77 refdbd_prestart() Link Here
70
		done
68
		done
71
	fi
69
	fi
72
70
73
	piddir=`dirname ${pidfile}`
71
	piddir=$( dirname ${pidfile} )
74
	mkdir -p ${piddir}
72
	if [ ! -d "${piddir}" ] ; then
73
		install -d ${piddir}
74
	fi
75
75
76
	refdbd_pid_flags="-P ${pidfile}"
76
	refdbd_pid_flags="-P ${pidfile}"
77
}
77
}
(-)b/textproc/refdb/pkg-plist (-28 / +61 lines)
Lines 6-13 bin/en2ris Link Here
6
bin/marc2ris
6
bin/marc2ris
7
bin/med2ris
7
bin/med2ris
8
bin/refdb-backup
8
bin/refdb-backup
9
bin/refdb-bug
9
bin/refdb-init
10
bin/refdb-init
10
bin/refdb-ms
11
bin/refdb-ms
12
bin/refdb-pubmed
11
bin/refdb-restore
13
bin/refdb-restore
12
bin/refdb-sruserver
14
bin/refdb-sruserver
13
bin/refdb_dos2unix
15
bin/refdb_dos2unix
Lines 19-28 bin/refdbd Link Here
19
bin/refdbib
21
bin/refdbib
20
bin/refdbjade
22
bin/refdbjade
21
bin/refdbnd
23
bin/refdbnd
24
bin/refdbrtf
22
bin/refdbsru
25
bin/refdbsru
23
bin/refdbxml
26
bin/refdbxml
24
bin/refdbxp
27
bin/refdbxp
28
bin/rtfcitations
25
bin/runbib
29
bin/runbib
30
bin/runbib-missing
31
etc/rc.d/refdbd
26
%%ETCDIR%%/bib2riscgirc.example
32
%%ETCDIR%%/bib2riscgirc.example
27
%%ETCDIR%%/bib2risrc.example
33
%%ETCDIR%%/bib2risrc.example
28
%%ETCDIR%%/db2risrc.example
34
%%ETCDIR%%/db2risrc.example
Lines 38-74 bin/runbib Link Here
38
%%ETCDIR%%/refdbdrc.sqlite3.example
44
%%ETCDIR%%/refdbdrc.sqlite3.example
39
%%ETCDIR%%/refdbibrc.example
45
%%ETCDIR%%/refdbibrc.example
40
%%ETCDIR%%/refdbjaderc.example
46
%%ETCDIR%%/refdbjaderc.example
47
%%ETCDIR%%/refdbrtfrc.example
41
%%ETCDIR%%/refdbsrurc.example
48
%%ETCDIR%%/refdbsrurc.example
42
%%ETCDIR%%/refdbxmlrc.example
49
%%ETCDIR%%/refdbxmlrc.example
43
%%ETCDIR%%/runbibrc.example
50
%%ETCDIR%%/runbibrc.example
44
man/man1/bib2ris-utf8.1.gz
51
share/man/man1/bib2ris-utf8.1.gz
45
man/man1/bib2ris.1.gz
52
share/man/man1/bib2ris.1.gz
46
man/man1/db2ris.1.gz
53
share/man/man1/db2ris.1.gz
47
man/man1/eenc.1.gz
54
share/man/man1/eenc.1.gz
48
man/man1/en2ris.1.gz
55
share/man/man1/en2ris.1.gz
49
man/man1/marc2ris.1.gz
56
share/man/man1/marc2ris.1.gz
50
man/man1/med2ris.1.gz
57
share/man/man1/med2ris.1.gz
51
man/man1/refdb-backup.1.gz
58
share/man/man1/refdb-backup.1.gz
52
man/man1/refdb-bug.1.gz
59
share/man/man1/refdb-bug.1.gz
53
man/man1/refdb-ms.1.gz
60
share/man/man1/refdb-ms.1.gz
54
man/man1/refdb-restore.1.gz
61
share/man/man1/refdb-pubmed.1.gz
55
man/man1/refdb-sruserver.1.gz
62
share/man/man1/refdb-restore.1.gz
56
man/man1/refdb_dos2unix.1.gz
63
share/man/man1/refdb-sruserver.1.gz
57
man/man1/refdb_latex2utf8txt.1.gz
64
share/man/man1/refdb_dos2unix.1.gz
58
man/man1/refdba.1.gz
65
share/man/man1/refdb_latex2utf8txt.1.gz
59
man/man1/refdbc.1.gz
66
share/man/man1/refdba.1.gz
60
man/man1/refdbctl.1.gz
67
share/man/man1/refdbc.1.gz
61
man/man1/refdbd.1.gz
68
share/man/man1/refdbctl.1.gz
62
man/man1/refdbib.1.gz
69
share/man/man1/refdbd.1.gz
63
man/man1/refdbjade.1.gz
70
share/man/man1/refdbib.1.gz
64
man/man1/refdbnd.1.gz
71
share/man/man1/refdbjade.1.gz
65
man/man1/refdbsru.1.gz
72
share/man/man1/refdbnd.1.gz
66
man/man1/refdbxml.1.gz
73
share/man/man1/refdbrtf.1.gz
67
man/man1/refdbxp.1.gz
74
share/man/man1/refdbsru.1.gz
68
man/man1/runbib.1.gz
75
share/man/man1/refdbxml.1.gz
69
man/man8/refdb-init.8.gz
76
share/man/man1/refdbxp.1.gz
70
man/man8/refdb.8.gz
77
share/man/man1/rtfcitations.1.gz
71
man/man8/refdb.sh.8.gz
78
share/man/man1/runbib-missing.1.gz
79
share/man/man1/runbib.1.gz
80
share/man/man8/refdb-init.8.gz
81
share/man/man8/refdb.8.gz
82
share/man/man8/refdb.sh.8.gz
72
%%DATADIR%%/declarations/docbook.dcl
83
%%DATADIR%%/declarations/docbook.dcl
73
%%DATADIR%%/declarations/xml.dcl
84
%%DATADIR%%/declarations/xml.dcl
74
%%DATADIR%%/dsssl/bibdb2tei.dsl
85
%%DATADIR%%/dsssl/bibdb2tei.dsl
Lines 93-98 man/man8/refdb.sh.8.gz Link Here
93
%%DATADIR%%/dtd/xnote.dtd
104
%%DATADIR%%/dtd/xnote.dtd
94
%%DATADIR%%/dtd/xnote.rnc
105
%%DATADIR%%/dtd/xnote.rnc
95
%%DATADIR%%/dtd/xnote.rng
106
%%DATADIR%%/dtd/xnote.rng
107
%%DATADIR%%/examples/Makefile.rtf.template
96
%%DATADIR%%/examples/Makefile.template
108
%%DATADIR%%/examples/Makefile.template
97
%%DATADIR%%/examples/dbtest.sgml
109
%%DATADIR%%/examples/dbtest.sgml
98
%%DATADIR%%/examples/dbtest.short.sgml
110
%%DATADIR%%/examples/dbtest.short.sgml
Lines 122-136 man/man8/refdb.sh.8.gz Link Here
122
%%DATADIR%%/sru/refdbsru.css
134
%%DATADIR%%/sru/refdbsru.css
123
%%DATADIR%%/sru/refdbsru.xsl
135
%%DATADIR%%/sru/refdbsru.xsl
124
%%DATADIR%%/sru/risx.xsl
136
%%DATADIR%%/sru/risx.xsl
137
%%DATADIR%%/styles/AMA.xml
125
%%DATADIR%%/styles/APA.xml
138
%%DATADIR%%/styles/APA.xml
139
%%DATADIR%%/styles/Anesth.Analg.xml
140
%%DATADIR%%/styles/Ann.Biomed.Eng.xml
141
%%DATADIR%%/styles/Ann.Thorac.Surg.xml
142
%%DATADIR%%/styles/Artif.Organs.xml
143
%%DATADIR%%/styles/Biochem.Biophys.Res.Commun.xml
144
%%DATADIR%%/styles/Biochem.Pharmacol.xml
126
%%DATADIR%%/styles/Biomaterials.xml
145
%%DATADIR%%/styles/Biomaterials.xml
146
%%DATADIR%%/styles/Br.J.Pharmacol.xml
147
%%DATADIR%%/styles/CHA-MC.xml
148
%%DATADIR%%/styles/Chicago.xml
149
%%DATADIR%%/styles/Eur.J.Cardiothorac.Surg.xml
127
%%DATADIR%%/styles/Eur.J.Pharmacol.xml
150
%%DATADIR%%/styles/Eur.J.Pharmacol.xml
151
%%DATADIR%%/styles/Harvard.xml
128
%%DATADIR%%/styles/J.Biol.Chem.xml
152
%%DATADIR%%/styles/J.Biol.Chem.xml
153
%%DATADIR%%/styles/J.Pharmacol.Exp.Ther.xml
154
%%DATADIR%%/styles/J.Tissue_Eng.Regen.Med.xml
155
%%DATADIR%%/styles/J.Vasc.Res.xml
156
%%DATADIR%%/styles/MLA.xml
129
%%DATADIR%%/styles/Murdoch.Law.xml
157
%%DATADIR%%/styles/Murdoch.Law.xml
158
%%DATADIR%%/styles/Thromb.Haemost.xml
130
%%DATADIR%%/styles/Tissue_Eng.xml
159
%%DATADIR%%/styles/Tissue_Eng.xml
160
%%DATADIR%%/styles/Turabian.xml
161
%%DATADIR%%/styles/Z.Geburtsh.Neonatol.xml
162
%%DATADIR%%/styles/authoryear-de.xml
131
%%DATADIR%%/styles/bibtex-abbrev.xml
163
%%DATADIR%%/styles/bibtex-abbrev.xml
132
%%DATADIR%%/styles/bibtex-full.xml
164
%%DATADIR%%/styles/bibtex-full.xml
133
%%DATADIR%%/styles/citekey.xml
165
%%DATADIR%%/styles/citekey.xml
166
%%DATADIR%%/styles/ifmbe_proceedings.xml
134
%%DATADIR%%/styles/schemas.xml
167
%%DATADIR%%/styles/schemas.xml
135
%%DATADIR%%/www/css/main.css
168
%%DATADIR%%/www/css/main.css
136
%%DATADIR%%/www/css/navigationlist.css
169
%%DATADIR%%/www/css/navigationlist.css

Return to bug 265105