diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-11-14 12:47:35 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-11-14 12:47:35 +0000 |
commit | 146c728e06d2ca6cfefa03d37f3f06627486079d (patch) | |
tree | 6f0361b5bb984012f829d5ca8264111a1cc270b9 /media-plugins | |
parent | Address sparc alignment problems reported in Bug #246483 --- this fixes them (diff) | |
download | gentoo-2-146c728e06d2ca6cfefa03d37f3f06627486079d.tar.gz gentoo-2-146c728e06d2ca6cfefa03d37f3f06627486079d.tar.bz2 gentoo-2-146c728e06d2ca6cfefa03d37f3f06627486079d.zip |
version bump, abi break again...
(Portage version: 2.2_rc14/cvs/Linux 2.6.27.5 x86_64)
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/live/ChangeLog | 7 | ||||
-rw-r--r-- | media-plugins/live/live-2008.11.13.ebuild | 81 |
2 files changed, 87 insertions, 1 deletions
diff --git a/media-plugins/live/ChangeLog b/media-plugins/live/ChangeLog index 5bf904bfdd65..da1668594735 100644 --- a/media-plugins/live/ChangeLog +++ b/media-plugins/live/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/live # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/ChangeLog,v 1.105 2008/10/18 14:55:52 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/ChangeLog,v 1.106 2008/11/14 12:47:35 aballier Exp $ + +*live-2008.11.13 (14 Nov 2008) + + 14 Nov 2008; Alexis Ballier <aballier@gentoo.org> +live-2008.11.13.ebuild: + version bump, abi break again... 18 Oct 2008; Alexis Ballier <aballier@gentoo.org> -live-2007.02.20.ebuild, -live-2008.02.08.ebuild: diff --git a/media-plugins/live/live-2008.11.13.ebuild b/media-plugins/live/live-2008.11.13.ebuild new file mode 100644 index 000000000000..d4d0f1f43546 --- /dev/null +++ b/media-plugins/live/live-2008.11.13.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/live/live-2008.11.13.ebuild,v 1.1 2008/11/14 12:47:35 aballier Exp $ + +inherit flag-o-matic eutils toolchain-funcs multilib + +DESCRIPTION="Source-code libraries for standards-based RTP/RTCP/RTSP multimedia streaming, suitable for embedded and/or low-cost streaming applications" +HOMEPAGE="http://www.live555.com/" +SRC_URI="http://www.live555.com/liveMedia/public/${P/-/.}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +S="${WORKDIR}" + +# Alexis Ballier <aballier@gentoo.org> +# Be careful, bump this everytime you bump the package and the ABI has changed. +# If you don't know, ask someone. +LIVE_ABI_VERSION=3 + +src_unpack() { + unpack ${A} + cd "${WORKDIR}" + + cp -pPR live live-shared + mv live live-static + + cp "${FILESDIR}/config.gentoo" live-static + cp "${FILESDIR}/config.gentoo-so" live-shared +} + +src_compile() { + tc-export CC CXX LD + + cd "${WORKDIR}/live-static" + + einfo "Beginning static library build" + ./genMakefiles gentoo + emake -j1 LINK_OPTS="-L. $(raw-ldflags)" TESTPROGS_APP="" MEDIA_SERVER_APP="" || die "failed to build static libraries" + + einfo "Beginning programs build" + cd "${WORKDIR}/live-static/testProgs" + emake LINK_OPTS="-L. ${LDFLAGS}" || die "failed to build test programs" + cd "${WORKDIR}/live-static/mediaServer" + emake LINK_OPTS="-L. ${LDFLAGS}" || die "failed to build the mediaserver" + + cd "${WORKDIR}/live-shared" + einfo "Beginning shared library build" + ./genMakefiles gentoo-so + emake -j1 LINK_OPTS="-L. ${LDFLAGS}" LIB_SUFFIX="so.${LIVE_ABI_VERSION}" TESTPROGS_APP="" MEDIA_SERVER_APP="" || die "failed to build shared libraries" +} + +src_install() { + for library in UsageEnvironment liveMedia BasicUsageEnvironment groupsock; do + dolib.a live-static/${library}/lib${library}.a + dolib.so live-shared/${library}/lib${library}.so.${LIVE_ABI_VERSION} + dosym lib${library}.so.${LIVE_ABI_VERSION} /usr/$(get_libdir)/lib${library}.so + + insinto /usr/include/${library} + doins live-shared/${library}/include/*h + done + + # Should we really install these? + find live-static/testProgs -type f -perm +111 -print0 | \ + xargs -0 dobin + + #install included live555MediaServer aplication + dobin live-static/mediaServer/live555MediaServer + + # install docs + dodoc live-static/README +} + +pkg_postinst() { + ewarn "If you are upgrading from a version prior to live-2008.02.08" + ewarn "Please make sure to rebuild applications built against ${PN}" + ewarn "like vlc or mplayer. ${PN} may have had ABI changes and ${PN}" + ewarn "support might be broken." +} |