mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
- Stagify.
This commit is contained in:
parent
9435bc9bed
commit
57ca3f2c4b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=357311
@ -21,11 +21,10 @@ NO_WRKSUBDIR= yes
|
||||
PLIST_SUB= DTD_NAME=${PORTNAME} XMLCATMGR=${XMLCATMGR}
|
||||
PLIST_SUB+= CATALOG_PORTS_SGML=${CATALOG_PORTS_SGML}
|
||||
|
||||
INSTDIR= ${PREFIX}/share/sgml/html
|
||||
INSTDIR= ${STAGEDIR}${PREFIX}/share/sgml/html
|
||||
XMLCATMGR= ${LOCALBASE}/bin/xmlcatmgr
|
||||
CATALOG_PORTS_SGML= ${PREFIX}/share/sgml/catalog.ports
|
||||
|
||||
NO_STAGE= yes
|
||||
pre-su-install:
|
||||
@[ -d ${INSTDIR} ] || ${MKDIR} ${INSTDIR}
|
||||
|
||||
@ -34,7 +33,4 @@ do-install:
|
||||
@${CHMOD} ${SHAREMODE} `${FIND} ${INSTDIR} -type f`
|
||||
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${INSTDIR}
|
||||
|
||||
post-install:
|
||||
@${XMLCATMGR} -sc ${CATALOG_PORTS_SGML} add CATALOG ${PORTNAME}/catalog
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -23,11 +23,10 @@ NO_WRKSUBDIR= yes
|
||||
PLIST_SUB= DTD_NAME=${PORTNAME} XMLCATMGR=${XMLCATMGR}
|
||||
PLIST_SUB+= CATALOG_PORTS_SGML=${CATALOG_PORTS_SGML}
|
||||
|
||||
INSTDIR= ${PREFIX}/share/sgml/iso12083
|
||||
INSTDIR= ${STAGEDIR}${PREFIX}/share/sgml/iso12083
|
||||
XMLCATMGR= ${LOCALBASE}/bin/xmlcatmgr
|
||||
CATALOG_PORTS_SGML= ${PREFIX}/share/sgml/catalog.ports
|
||||
|
||||
NO_STAGE= yes
|
||||
pre-install:
|
||||
@[ -d ${INSTDIR} ] || ${MKDIR} ${INSTDIR}
|
||||
|
||||
@ -37,7 +36,4 @@ do-install:
|
||||
done
|
||||
@${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/catalog
|
||||
|
||||
post-install:
|
||||
@${XMLCATMGR} -sc ${CATALOG_PORTS_SGML} add CATALOG ${PORTNAME}/catalog
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -17,29 +17,22 @@ USE_PGSQL= yes
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
MAN3= Search::OpenFTS.3 Search::OpenFTS::Base.3 \
|
||||
Search::OpenFTS::Dict::PorterEng.3 Search::OpenFTS::Dict::Snowball.3 \
|
||||
Search::OpenFTS::Dict::Synonym.3 Search::OpenFTS::Dict::UnknownDict.3 \
|
||||
Search::OpenFTS::Index.3 Search::OpenFTS::Morph::ISpell.3 \
|
||||
Search::OpenFTS::Parser.3
|
||||
|
||||
PORTDOCS= Changes INSTALL README primer.html
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTEXAMPLES)
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
@${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
||||
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
@${CP} -R ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
||||
@${ECHO_MSG} "===> Examples installed in ${STAGEDIR}${EXAMPLESDIR}."
|
||||
.endif
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${CP} -p ${WRKSRC}/doc/primer.html ${WRKSRC}
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
||||
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
||||
@${ECHO_MSG} "===> Documentation installed in ${STAGEDIR}${DOCSDIR}."
|
||||
.endif
|
||||
|
||||
# Sample DB initialization.
|
||||
|
@ -1,3 +1,12 @@
|
||||
%%PERL5_MAN3%%/Search::OpenFTS.3.gz
|
||||
%%PERL5_MAN3%%/Search::OpenFTS::Base.3.gz
|
||||
%%PERL5_MAN3%%/Search::OpenFTS::Dict::PorterEng.3.gz
|
||||
%%PERL5_MAN3%%/Search::OpenFTS::Dict::Snowball.3.gz
|
||||
%%PERL5_MAN3%%/Search::OpenFTS::Dict::Synonym.3.gz
|
||||
%%PERL5_MAN3%%/Search::OpenFTS::Dict::UnknownDict.3.gz
|
||||
%%PERL5_MAN3%%/Search::OpenFTS::Index.3.gz
|
||||
%%PERL5_MAN3%%/Search::OpenFTS::Morph::ISpell.3.gz
|
||||
%%PERL5_MAN3%%/Search::OpenFTS::Parser.3.gz
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/Search/OpenFTS.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/Search/OpenFTS/Base.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/Search/OpenFTS/Dict/PorterEng.pm
|
||||
|
@ -13,15 +13,11 @@ COMMENT= Generates groff and HTML from linuxdoc and docbook SGML documents
|
||||
|
||||
USES= perl5
|
||||
USE_PERL5= run
|
||||
|
||||
MAN1= instant.1 sgmlfmt.1
|
||||
MAN5= transpec.5
|
||||
MANCOMPRESSED= yes
|
||||
MAKE_ENV= STAGEDIR=${STAGEDIR}
|
||||
|
||||
# There are two ports that satisfy the nsgmls requirement.
|
||||
# Jade is preferred.
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${MACHINE_ARCH} != "i386"
|
||||
@ -44,6 +40,9 @@ post-patch:
|
||||
@${REINPLACE_CMD} -e 's,nsgmls,onsgmls,g' ${WRKSRC}/instant/traninit.c
|
||||
.endif
|
||||
|
||||
pre-install:
|
||||
${MKDIR} ${STAGEDIR}${PREFIX}/share/sgml/transpec
|
||||
|
||||
post-install:
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
|
19
textproc/sgmlformat/files/patch-sgmlfmt__Makefile
Normal file
19
textproc/sgmlformat/files/patch-sgmlfmt__Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
--- ./sgmlfmt/Makefile.orig 2014-06-10 08:00:07.272462749 +0900
|
||||
+++ ./sgmlfmt/Makefile 2014-06-10 08:01:56.855462177 +0900
|
||||
@@ -1,6 +1,6 @@
|
||||
# $Id$
|
||||
|
||||
-FILES= sgmlfmt
|
||||
+SCRIPTS= sgmlfmt
|
||||
CLEANFILES= sgmlfmt
|
||||
MAN1= sgmlfmt.1
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
sed -e 's|##PERL##|${PREFIX}/bin/perl|' -e 's|##PREFIX##|${PREFIX}|' < sgmlfmt.pl > sgmlfmt
|
||||
.endif
|
||||
|
||||
-afterinstall:
|
||||
+no-afterinstall:
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${FILES} \
|
||||
${BINDIR}
|
||||
|
16
textproc/sgmlformat/files/patch-transpec-_Makefile
Normal file
16
textproc/sgmlformat/files/patch-transpec-_Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
--- transpec/Makefile.orig 2014-06-10 21:01:50.280462342 +0900
|
||||
+++ transpec/Makefile 2014-06-10 21:42:02.463462646 +0900
|
||||
@@ -9,11 +9,9 @@
|
||||
|
||||
all clean cleandir depend lint tags:
|
||||
|
||||
-beforeinstall:
|
||||
- @mkdir -p ${TRANSPEC_DIR}
|
||||
-
|
||||
afterinstall:
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
||||
- ${TRANSPEC_DIR}
|
||||
+ ${STAGEDIR}${PREFIX}/share/sgml/transpec/
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
+
|
@ -12,6 +12,9 @@ bin/roff.cmap
|
||||
bin/roff.sdata
|
||||
bin/sgmlfmt
|
||||
bin/transpec.dtd
|
||||
man/man1/instant.1.gz
|
||||
man/man1/sgmlfmt.1.gz
|
||||
man/man5/transpec.5.gz
|
||||
share/sgml/transpec/catalog
|
||||
share/sgml/transpec/docbook-html.ts
|
||||
share/sgml/transpec/docbook-roff.ts
|
||||
|
Loading…
Reference in New Issue
Block a user