diff options
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/foomatic-db-ppds/Manifest | 1 | ||||
-rw-r--r-- | net-print/foomatic-db-ppds/foomatic-db-ppds-4.0.20180126.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/net-print/foomatic-db-ppds/Manifest b/net-print/foomatic-db-ppds/Manifest index 5b4821f89a0b..d910e201b845 100644 --- a/net-print/foomatic-db-ppds/Manifest +++ b/net-print/foomatic-db-ppds/Manifest @@ -1 +1,2 @@ DIST foomatic-db-4.0-20170331.tar.gz 53321292 BLAKE2B 375421205b80cc84d10629454cad053ea0022c8e230c0eab0797f3de79d42e6cc3769ad286095aa7a5bdde0f49d30fb3484e8cbefbae48a32840c0ca96885276 SHA512 33037b087eccfe08fb5b2c0220992f4ad4762c7206325f6bc8073903aafa27a260382cfa8edb4500f0feeea4d0489a3a345fe3017790484fdfb53aa577f691c0 +DIST foomatic-db-4.0-20180126.tar.gz 58697641 BLAKE2B ae063e5d82e70dcd4b7791d0ffc3914c6a7d218c9e1067f6fe99f029c7f4340399e7034da26119e4219096758d029c832797dc10e8076f49f0e24ca11188785c SHA512 84e9c70e797a5328317d0b2725ebb67aa630923516fd8f860740af58ee5337b6302669c822b6aba32fb10ad9670c5894b34356e3cfc0e1496bd051551f40026d diff --git a/net-print/foomatic-db-ppds/foomatic-db-ppds-4.0.20180126.ebuild b/net-print/foomatic-db-ppds/foomatic-db-ppds-4.0.20180126.ebuild new file mode 100644 index 000000000000..4acc8fdfb809 --- /dev/null +++ b/net-print/foomatic-db-ppds/foomatic-db-ppds-4.0.20180126.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils versionator + +MY_P=${PN/-ppds}-$(replace_version_separator 2 '-') + +DESCRIPTION="linuxprinting.org PPD files for postscript printers" +HOMEPAGE="http://www.linuxprinting.org/foomatic.html" +SRC_URI="http://linuxprinting.org/download/foomatic/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +S="${WORKDIR}/${PN/-ppds}-$(get_version_component_range 3 ${PV})" + +src_prepare() { + eapply "${FILESDIR}/Makefile.in-4.0.20120117.patch" + rm db/source/PPD/Kyocera/ReadMe.htm || die # bug #559008 + default +} + +src_install() { + default + rm -v "${ED}"/usr/share/foomatic/xmlschema/{driver,option,printer,types}.xsd || die "Cannot remove duplicates" +} |