Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/hp2xx: metadata.xml ChangeLog hp2xx-3.4.4.ebuild
Date: Tue, 07 Feb 2012 21:36:38
Message-Id: 20120207213628.BEE372004B@flycatcher.gentoo.org
1 dilfridge 12/02/07 21:36:28
2
3 Added: metadata.xml ChangeLog hp2xx-3.4.4.ebuild
4 Log:
5 New package, bug 58091. Thanks to Konstantin Münning for ebuild and patch.
6
7 (Portage version: 2.1.10.44/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-gfx/hp2xx/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hp2xx/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hp2xx/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>konstantin@××××××××.com</email>
22 <name>Konstantin Münning</name>
23 </maintainer>
24 <herd>printing</herd>
25 </pkgmetadata>
26
27
28
29 1.1 media-gfx/hp2xx/ChangeLog
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hp2xx/ChangeLog?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hp2xx/ChangeLog?rev=1.1&content-type=text/plain
33
34 Index: ChangeLog
35 ===================================================================
36 # ChangeLog for media-gfx/hp2xx
37 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
38 # $Header: /var/cvsroot/gentoo-x86/media-gfx/hp2xx/ChangeLog,v 1.1 2012/02/07 21:36:28 dilfridge Exp $
39
40 *hp2xx-3.4.4 (07 Feb 2012)
41
42 07 Feb 2012; Andreas K. Huettel <dilfridge@g.o> +hp2xx-3.4.4.ebuild,
43 +files/hp2xx-3.4.4-r1.patch, +metadata.xml:
44 New package, bug 58091. Thanks to Konstantin Münning for ebuild and patch.
45
46
47
48
49 1.1 media-gfx/hp2xx/hp2xx-3.4.4.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hp2xx/hp2xx-3.4.4.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/hp2xx/hp2xx-3.4.4.ebuild?rev=1.1&content-type=text/plain
53
54 Index: hp2xx-3.4.4.ebuild
55 ===================================================================
56 # Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/media-gfx/hp2xx/hp2xx-3.4.4.ebuild,v 1.1 2012/02/07 21:36:28 dilfridge Exp $
59
60 EAPI=4
61
62 inherit eutils base
63
64 DESCRIPTION="Versatile tool to convert Hewlett-Packard's HP-GL plotter language into other graphics formats"
65 HOMEPAGE="http://www.gnu.org/software/hp2xx/"
66 SRC_URI="ftp://ftp.gnu.org/pub/gnu/${PN}/${P}.tar.gz"
67
68 LICENSE="GPL-2"
69 SLOT="0"
70 KEYWORDS="~x86 ~amd64"
71 IUSE=""
72
73 DEPEND="
74 media-libs/libpng
75 media-libs/tiff
76 sys-libs/zlib
77 virtual/jpeg
78 "
79 RDEPEND="${DEPEND}"
80
81 PATCHES=( "${FILESDIR}/${P}-r1.patch" )
82
83 src_prepare() {
84 base_src_prepare
85 cp -v makes/generic.mak sources/Makefile || die
86 }
87
88 src_compile() {
89 cd "${S}/sources" || die
90 emake all
91 }
92
93 src_install() {
94 dodir /usr/bin /usr/share/info /usr/share/man/man1
95
96 make prefix="${D}/usr" \
97 mandir="${D}/usr/share/man" \
98 infodir="${D}/usr/share/info" \
99 install || die
100 }