aboutsummaryrefslogtreecommitdiffstats
path: root/textproc
diff options
context:
space:
mode:
authorhrs <hrs@FreeBSD.org>2015-07-20 09:16:56 +0800
committerhrs <hrs@FreeBSD.org>2015-07-20 09:16:56 +0800
commit19d054661044b81c1a61b49121a5578588bc81d2 (patch)
tree28396d5fd3e3bfc5ceaddf70c1b4310cd9350619 /textproc
parentecfc32f5935d98ef6a3ee315ddd2d125ddf38e4f (diff)
downloadfreebsd-ports-gnome-19d054661044b81c1a61b49121a5578588bc81d2.tar.gz
freebsd-ports-gnome-19d054661044b81c1a61b49121a5578588bc81d2.tar.zst
freebsd-ports-gnome-19d054661044b81c1a61b49121a5578588bc81d2.zip
- Add print/latex-biber, a biblatex replacement which supports Unicode.
- Add or update the following ports which latex-biber depends on: japanese/p5-Encode-EUCJPASCII (added, eucJP-open encoding support) misc/p5-Business-ISMN (added, ISMN support) textproc/p5-Text-BibTeX (updated to 0.71) textproc/p5-Text-Roman (added, conversion of Roman numerals)
Diffstat (limited to 'textproc')
-rw-r--r--textproc/Makefile1
-rw-r--r--textproc/p5-Text-BibTeX/Makefile13
-rw-r--r--textproc/p5-Text-BibTeX/distinfo4
-rw-r--r--textproc/p5-Text-Roman/Makefile18
-rw-r--r--textproc/p5-Text-Roman/distinfo2
-rw-r--r--textproc/p5-Text-Roman/pkg-descr5
-rw-r--r--textproc/p5-Text-Roman/pkg-plist2
7 files changed, 40 insertions, 5 deletions
diff --git a/textproc/Makefile b/textproc/Makefile
index 459156223c2b..51d3adf3e35e 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -870,6 +870,7 @@
SUBDIR += p5-Text-Reform
SUBDIR += p5-Text-Report
SUBDIR += p5-Text-Repository
+ SUBDIR += p5-Text-Roman
SUBDIR += p5-Text-Sass
SUBDIR += p5-Text-Shellwords
SUBDIR += p5-Text-Similarity
diff --git a/textproc/p5-Text-BibTeX/Makefile b/textproc/p5-Text-BibTeX/Makefile
index 6e4cb644068c..343954aa9a4b 100644
--- a/textproc/p5-Text-BibTeX/Makefile
+++ b/textproc/p5-Text-BibTeX/Makefile
@@ -2,11 +2,9 @@
# $FreeBSD$
PORTNAME= Text-BibTeX
-PORTVERSION= 0.69
-PORTREVISION= 1
+PORTVERSION= 0.71
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
-MASTER_SITE_SUBDIR= CPAN:AMBS/Text
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
@@ -29,4 +27,13 @@ USE_LDCONFIG= yes
CFLAGS+= -fPIC
.endif
+STRIP_FILES= bin/dumpnames bin/biblex bin/bibparse \
+ ${SITE_ARCH_REL}/auto/Text/BibTeX/BibTeX.so \
+ lib/libbtparse.so
+
+post-install:
+ cd ${STAGEDIR}${PREFIX} && \
+ ${CHMOD} +w ${STRIP_FILES} && \
+ ${STRIP_CMD} ${STRIP_FILES}
+
.include <bsd.port.post.mk>
diff --git a/textproc/p5-Text-BibTeX/distinfo b/textproc/p5-Text-BibTeX/distinfo
index 46e0e9e2159b..55fb6de9f244 100644
--- a/textproc/p5-Text-BibTeX/distinfo
+++ b/textproc/p5-Text-BibTeX/distinfo
@@ -1,2 +1,2 @@
-SHA256 (Text-BibTeX-0.69.tar.gz) = 7fccd930786c0fd0c5f23b36b960fd95e03c43beefd4587009d7bd27e02ff0bf
-SIZE (Text-BibTeX-0.69.tar.gz) = 285395
+SHA256 (Text-BibTeX-0.71.tar.gz) = cd0cc875b011aba4923b91caf65e448ed39148652e62c3fc4d4e074a982791cb
+SIZE (Text-BibTeX-0.71.tar.gz) = 285938
diff --git a/textproc/p5-Text-Roman/Makefile b/textproc/p5-Text-Roman/Makefile
new file mode 100644
index 000000000000..941beb250bba
--- /dev/null
+++ b/textproc/p5-Text-Roman/Makefile
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME= Text-Roman
+PORTVERSION= 3.5
+CATEGORIES= textproc perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= hrs@FreeBSD.org
+COMMENT= Allows conversion between Roman and Arabic algarisms
+
+LICENSE= ART10 GPLv1
+LICENSE_COMB= dual
+
+USES= perl5
+USE_PERL5= configure
+
+.include <bsd.port.mk>
diff --git a/textproc/p5-Text-Roman/distinfo b/textproc/p5-Text-Roman/distinfo
new file mode 100644
index 000000000000..f00c269c98a9
--- /dev/null
+++ b/textproc/p5-Text-Roman/distinfo
@@ -0,0 +1,2 @@
+SHA256 (Text-Roman-3.5.tar.gz) = cb4a08a3b151802ffb2fce3258a416542ab81db0f739ee474a9583ffb73e046a
+SIZE (Text-Roman-3.5.tar.gz) = 18122
diff --git a/textproc/p5-Text-Roman/pkg-descr b/textproc/p5-Text-Roman/pkg-descr
new file mode 100644
index 000000000000..7de2b6ac10d7
--- /dev/null
+++ b/textproc/p5-Text-Roman/pkg-descr
@@ -0,0 +1,5 @@
+This package supports both conventional Roman algarisms (which range
+from *1* to *3999*) and Milhar Romans, a variation which uses a bar
+across the algarism to indicate multiplication by *1_000*.
+
+WWW: http://search.cpan.org/dist/Text-Roman/
diff --git a/textproc/p5-Text-Roman/pkg-plist b/textproc/p5-Text-Roman/pkg-plist
new file mode 100644
index 000000000000..2ec444a58c9e
--- /dev/null
+++ b/textproc/p5-Text-Roman/pkg-plist
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Text/Roman.pm
+%%PERL5_MAN3%%/Text::Roman.3.gz