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/argyllcms: argyllcms-1.3.2.ebuild ChangeLog
Date: Thu, 04 Nov 2010 22:57:31
Message-Id: 20101104225724.46B6920051@flycatcher.gentoo.org
1 dilfridge 10/11/04 22:57:24
2
3 Modified: ChangeLog
4 Added: argyllcms-1.3.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.9.24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 media-gfx/argyllcms/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/argyllcms/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/argyllcms/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/argyllcms/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/argyllcms/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 15 Oct 2010 09:33:04 -0000 1.5
24 +++ ChangeLog 4 Nov 2010 22:57:24 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-gfx/argyllcms
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/argyllcms/ChangeLog,v 1.5 2010/10/15 09:33:04 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/argyllcms/ChangeLog,v 1.6 2010/11/04 22:57:24 dilfridge Exp $
30 +
31 +*argyllcms-1.3.2 (04 Nov 2010)
32 +
33 + 04 Nov 2010; Andreas K. Huettel <dilfridge@g.o>
34 + +argyllcms-1.3.2.ebuild:
35 + Version bump
36
37 15 Oct 2010; Markos Chandras <hwoarang@g.o> argyllcms-1.3.0.ebuild:
38 Stable on amd64 wrt bug #340979
39
40
41
42 1.1 media-gfx/argyllcms/argyllcms-1.3.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/argyllcms/argyllcms-1.3.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/argyllcms/argyllcms-1.3.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: argyllcms-1.3.2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/argyllcms/argyllcms-1.3.2.ebuild,v 1.1 2010/11/04 22:57:24 dilfridge Exp $
52
53 MY_P="Argyll_V${PV}"
54 DESCRIPTION="Open source, ICC compatible color management system"
55 HOMEPAGE="http://www.argyllcms.com/"
56 SRC_URI="http://www.argyllcms.com/${MY_P}_src.zip"
57
58 LICENSE="AGPL-3"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="doc"
62
63 RDEPEND="media-libs/tiff
64 media-libs/jpeg
65 sys-libs/zlib
66 x11-libs/libX11
67 x11-libs/libXau
68 x11-libs/libXdmcp
69 x11-libs/libXext
70 x11-libs/libXinerama
71 x11-libs/libXrandr
72 x11-libs/libXxf86vm
73 x11-libs/libXScrnSaver"
74 DEPEND="${RDEPEND}
75 app-arch/unzip
76 dev-util/ftjam"
77
78 S="${WORKDIR}/${MY_P}"
79
80 src_compile() {
81 # Make it respect LDFLAGS
82 echo "LINKFLAGS += ${LDFLAGS} ;" >> Jamtop
83
84 # Evil hack to get --as-needed working. The build system unfortunately lists all
85 # the shared libraries by default on the command line _before_ the object to be built...
86 echo "STDLIBS += -ldl -lrt -lX11 -lXext -lXxf86vm -lXinerama -lXrandr -lXau -lXdmcp -lXss -ltiff ;" >> Jamtop
87
88 local jobnumber=$(echo "${MAKEOPTS}" | sed -ne "/-j/ { s/.*\(-j[[:space:]]*[0-9]\+\).*/\1/; p }")
89 [ ${jobnumber} ] || jobnumber=-j1
90
91 jam -q -fJambase ${jobnumber} || die
92 }
93
94 src_install() {
95 jam -q -fJambase install || die
96
97 rm bin/License.txt || die
98 dobin bin/* || die
99
100 if use doc; then
101 dohtml doc/* || die
102 fi
103
104 dodoc log.txt Readme.txt ttbd.txt notes.txt || die
105
106 insinto /usr/share/${PN}/ref
107 doins ref/* || die
108
109 insinto /etc/udev/rules.d
110 doins libusb/55-Argyll.rules || die
111 }
112
113 pkg_postinst() {
114 elog
115 elog "If you have a Spyder2 you need to extract the firmware"
116 elog "from the spyder2_setup.exe (ColorVision CD)"
117 elog "and store it as /usr/bin/spyd2PLD.bin"
118 elog
119 elog "For further info on setting up instrument access read"
120 elog "http://www.argyllcms.com/doc/Installing_Linux.html"
121 elog
122 }