aballier    15/03/17 10:47:23

  Modified:             ChangeLog
  Added:                stk-4.5.0.ebuild
  Log:
  version bump
  
  Signed-off-by: [email protected]
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  Changes    Path
1.17                 media-libs/stk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/ChangeLog?rev=1.17&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/ChangeLog?rev=1.17&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/stk/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   17 Mar 2013 15:52:47 -0000      1.16
+++ ChangeLog   17 Mar 2015 10:47:23 -0000      1.17
@@ -1,6 +1,15 @@
 # ChangeLog for media-libs/stk
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/stk/ChangeLog,v 1.16 2013/03/17 
15:52:47 hwoarang Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/stk/ChangeLog,v 1.17 2015/03/17 
10:47:23 aballier Exp $
+
+*stk-4.5.0 (17 Mar 2015)
+
+  17 Mar 2015; Alexis Ballier <[email protected]> +stk-4.5.0.ebuild,
+  +files/stk-4.5.0/010_all_removeForcedFlags.patch,
+  +files/stk-4.5.0/020_all_noExamplesOrDemo.patch,
+  +files/stk-4.5.0/040_all_sharedliblink.patch,
+  +files/stk-4.5.0/050_all_cxxflags.patch:
+  version bump
 
   17 Mar 2013; Markos Chandras <[email protected]> metadata.xml:
   Add proxy-maintainers to metadata.xml



1.1                  media-libs/stk/stk-4.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/stk-4.5.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/stk/stk-4.5.0.ebuild?rev=1.1&content-type=text/plain

Index: stk-4.5.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/stk/stk-4.5.0.ebuild,v 1.1 
2015/03/17 10:47:23 aballier Exp $

EAPI=5

inherit eutils autotools

DESCRIPTION="Synthesis ToolKit in C++"
HOMEPAGE="http://ccrma.stanford.edu/software/stk/";
SRC_URI="http://ccrma.stanford.edu/software/stk/release/${P}.tar.gz";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa debug doc jack oss static-libs"

RDEPEND="alsa? ( media-libs/alsa-lib )
        jack? ( media-sound/jack-audio-connection-kit )"
DEPEND="${RDEPEND}
        virtual/pkgconfig
        dev-lang/perl"

src_prepare() {
        EPATCH_SUFFIX="patch" epatch "${FILESDIR}/${P}"
        eautoreconf
}

src_configure() {
        #breaks with --disable-foo...uses as --enable-foo
        local myconf
        if use debug; then
                myconf="${myconf} --enable-debug"
        fi
        if use oss; then
                myconf="${myconf} --with-oss"
        fi
        if use alsa; then
                myconf="${myconf} --with-alsa"
        fi
        if use jack; then
                myconf="${myconf} --with-jack"
        fi

        econf ${myconf} \
                --enable-shared \
                $(use_enable static-libs static) \
                RAWWAVE_PATH=/usr/share/stk/rawwaves/
}

src_install() {
        dodoc README.md

        # install the lib
        dolib src/libstk.*

        # install headers
        insinto /usr/include/stk
        doins include/*.h include/*.msg include/*.tbl

        # install rawwaves
        insinto /usr/share/stk/rawwaves
        doins rawwaves/*.raw

        # install docs
        if use doc; then
                dohtml -r doc/html/*
        fi
}




Reply via email to