Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/live: ChangeLog live-2007.08.03a.ebuild
Date: Thu, 25 Oct 2007 23:09:28
Message-Id: E1IlBpL-0000K8-0I@stork.gentoo.org
1 beandog 07/10/25 23:09:23
2
3 Modified: ChangeLog
4 Added: live-2007.08.03a.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.3.16)
8
9 Revision Changes Path
10 1.80 media-plugins/live/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/live/ChangeLog?rev=1.80&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/live/ChangeLog?rev=1.80&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/live/ChangeLog?r1=1.79&r2=1.80
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-plugins/live/ChangeLog,v
19 retrieving revision 1.79
20 retrieving revision 1.80
21 diff -u -r1.79 -r1.80
22 --- ChangeLog 3 May 2007 18:38:20 -0000 1.79
23 +++ ChangeLog 25 Oct 2007 23:09:22 -0000 1.80
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-plugins/live
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/ChangeLog,v 1.79 2007/05/03 18:38:20 dertobi123 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/ChangeLog,v 1.80 2007/10/25 23:09:22 beandog Exp $
29 +
30 +*live-2007.08.03a (25 Oct 2007)
31 +
32 + 25 Oct 2007; Steve Dibb <beandog@g.o> +live-2007.08.03a.ebuild:
33 + Version bump
34
35 03 May 2007; Tobias Scherbaum <dertobi123@g.o>
36 live-2007.02.20.ebuild:
37
38
39
40 1.1 media-plugins/live/live-2007.08.03a.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/live/live-2007.08.03a.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/live/live-2007.08.03a.ebuild?rev=1.1&content-type=text/plain
44
45 Index: live-2007.08.03a.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-plugins/live/live-2007.08.03a.ebuild,v 1.1 2007/10/25 23:09:22 beandog Exp $
50
51 inherit flag-o-matic eutils toolchain-funcs multilib
52
53 DESCRIPTION="Source-code libraries for standards-based RTP/RTCP/RTSP multimedia streaming, suitable for embedded and/or low-cost streaming applications"
54 HOMEPAGE="http://www.live555.com/"
55 SRC_URI="http://www.live555.com/liveMedia/public/${P/-/.}.tar.gz"
56
57 LICENSE="LGPL-2.1"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
60 IUSE=""
61
62 S="${WORKDIR}"
63
64 src_unpack() {
65 unpack ${A}
66 cd "${WORKDIR}"
67
68 cp -pPR live live-shared
69 mv live live-static
70
71 cp "${FILESDIR}/config.gentoo" live-static
72 cp "${FILESDIR}/config.gentoo-so" live-shared
73 }
74
75 src_compile() {
76 tc-export CC CXX LD
77
78 cd "${WORKDIR}/live-static"
79
80 einfo "Beginning static library build"
81 ./genMakefiles gentoo
82 emake -j1 || die
83
84 cd "${WORKDIR}/live-shared"
85 einfo "Beginning shared library build"
86 ./genMakefiles gentoo-so
87 emake -j1 || die
88 }
89
90 src_install() {
91 for library in UsageEnvironment liveMedia BasicUsageEnvironment groupsock; do
92 dolib.a live-static/${library}/lib${library}.a
93 dolib.so live-shared/${library}/lib${library}.so
94
95 insinto /usr/include/${library}
96 doins live-shared/${library}/include/*h
97 done
98
99 # Should we really install these?
100 find live-static/testProgs -type f -perm +111 -print0 | \
101 xargs -0 dobin
102
103 #install included live555MediaServer aplication
104 dobin live-static/mediaServer/live555MediaServer
105
106 # install docs
107 dodoc live-static/README
108 }
109
110
111
112 --
113 gentoo-commits@g.o mailing list