diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2021-03-17 23:41:42 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2021-03-17 23:41:42 +0000 |
| commit | 8300ba68d0175695db35a6d664496c5a60cd3df1 (patch) | |
| tree | edf19a87ea152aa5f59d4605f76d8e7f2fcd32da /dev-php/fpdf | |
| parent | 754d6ffefe49ae6f8266097f455893317323704e (diff) | |
| download | baldeagleos-repo-8300ba68d0175695db35a6d664496c5a60cd3df1.tar.gz baldeagleos-repo-8300ba68d0175695db35a6d664496c5a60cd3df1.tar.xz baldeagleos-repo-8300ba68d0175695db35a6d664496c5a60cd3df1.zip | |
Adding metadata
Diffstat (limited to 'dev-php/fpdf')
| -rw-r--r-- | dev-php/fpdf/Manifest | 2 | ||||
| -rw-r--r-- | dev-php/fpdf/fpdf-1.81.ebuild | 31 | ||||
| -rw-r--r-- | dev-php/fpdf/fpdf-1.82.ebuild | 31 | ||||
| -rw-r--r-- | dev-php/fpdf/metadata.xml | 27 |
4 files changed, 91 insertions, 0 deletions
diff --git a/dev-php/fpdf/Manifest b/dev-php/fpdf/Manifest new file mode 100644 index 000000000000..5ec2deceb4b9 --- /dev/null +++ b/dev-php/fpdf/Manifest @@ -0,0 +1,2 @@ +DIST fpdf181.tgz 127608 BLAKE2B e1632e03c8c041f89e8f5572987f38b22fd693f8926c4144fe677ae6267ede2c33cf9df697489459f41bd5e6905eaae0e64fdc40c6b4172220a686e8cda95f48 SHA512 cf025691f1ad6f124b98baef87b64da79b3a866660db31d9a6de094f54504874f4cdd9c1b976cb802d38d3b760f1126bf98634e0b37ed299c21c05035ea676c9 +DIST fpdf182.tgz 127561 BLAKE2B c7977e4441b0fdad7ff6ba7d68ae3b2409d7c579837ed0ecc0524eb18a8b72e4899dc3d4449025d521e1e16fc5694a5be17ee8fa0faf27eb9ddfd5da9db095c7 SHA512 ea696a92c73a6fa999db94be8168ce370402c5230ef3ac05162dc1faed2ef330912dcb772b1324769b7dd089e6200c60b11fed6355ce13a9c66a74d9d4c39ae7 diff --git a/dev-php/fpdf/fpdf-1.81.ebuild b/dev-php/fpdf/fpdf-1.81.ebuild new file mode 100644 index 000000000000..a09c080f58ec --- /dev/null +++ b/dev-php/fpdf/fpdf-1.81.ebuild @@ -0,0 +1,31 @@ +# Copyright 2021 Liguros Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=7 + +MY_PV="$(ver_rs 1 '')" +MY_P="${PN}${MY_PV}" + +DESCRIPTION="FPDF is a PHP class which allows to generate PDF files with pure PHP" +HOMEPAGE="http://www.fpdf.org/" +SRC_URI="http://www.fpdf.org/en/dl.php?v=${MY_PV}&f=tgz -> ${MY_P}.tgz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND="dev-lang/php:*[gd,zlib]" + +S="${WORKDIR}/${MY_P}" + +DOCS=( install.txt ) + +src_install() { + insinto "/usr/share/php/${PN}" + doins -r ./*.php font/ makefont/ + + if use doc; then + docinto html + dodoc -r changelog.htm fpdf.css FAQ.htm html/ tutorial/ + fi +} diff --git a/dev-php/fpdf/fpdf-1.82.ebuild b/dev-php/fpdf/fpdf-1.82.ebuild new file mode 100644 index 000000000000..a09c080f58ec --- /dev/null +++ b/dev-php/fpdf/fpdf-1.82.ebuild @@ -0,0 +1,31 @@ +# Copyright 2021 Liguros Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=7 + +MY_PV="$(ver_rs 1 '')" +MY_P="${PN}${MY_PV}" + +DESCRIPTION="FPDF is a PHP class which allows to generate PDF files with pure PHP" +HOMEPAGE="http://www.fpdf.org/" +SRC_URI="http://www.fpdf.org/en/dl.php?v=${MY_PV}&f=tgz -> ${MY_P}.tgz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND="dev-lang/php:*[gd,zlib]" + +S="${WORKDIR}/${MY_P}" + +DOCS=( install.txt ) + +src_install() { + insinto "/usr/share/php/${PN}" + doins -r ./*.php font/ makefont/ + + if use doc; then + docinto html + dodoc -r changelog.htm fpdf.css FAQ.htm html/ tutorial/ + fi +} diff --git a/dev-php/fpdf/metadata.xml b/dev-php/fpdf/metadata.xml new file mode 100644 index 000000000000..b892e58662df --- /dev/null +++ b/dev-php/fpdf/metadata.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>dev@liguros.net</email> + <name>Development</name> + </maintainer> + <longdescription> +FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say without using the PDFlib library. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs. + +FPDF has other advantages: high level functions. Here is a list of its main features: + +* Choice of measure unit, page format and margins +* Page header and footer management +* Automatic page break +* Automatic line break and text justification +* Image support (JPEG, PNG and GIF) +* Colors +* Links +* TrueType, Type1 and encoding support +* Page compression + +FPDF requires no extension (except Zlib to enable compression and GD for GIF support). The latest version requires at least PHP 5.1. + </longdescription> + + <origin>ports</origin> +</pkgmetadata>
\ No newline at end of file |
