diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2011-04-11 19:16:59 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2011-04-11 19:16:59 +0000 |
commit | ee085e691140bd3241750c78963355afb1fbd5b9 (patch) | |
tree | d6752ae2d80d0bc1e4dc42f56e5cef342742b5d1 /dev-libs/libburn | |
parent | Remove old. (diff) | |
download | gentoo-2-ee085e691140bd3241750c78963355afb1fbd5b9.tar.gz gentoo-2-ee085e691140bd3241750c78963355afb1fbd5b9.tar.bz2 gentoo-2-ee085e691140bd3241750c78963355afb1fbd5b9.zip |
Version bump. Switch to EAPI 4. Add static-libs USE flag.
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'dev-libs/libburn')
-rw-r--r-- | dev-libs/libburn/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libburn/libburn-1.0.6.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/dev-libs/libburn/ChangeLog b/dev-libs/libburn/ChangeLog index bdbb17a20bcf..5d67fc781fcc 100644 --- a/dev-libs/libburn/ChangeLog +++ b/dev-libs/libburn/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libburn # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/ChangeLog,v 1.96 2011/03/23 20:28:53 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/ChangeLog,v 1.97 2011/04/11 19:16:59 billie Exp $ + +*libburn-1.0.6 (11 Apr 2011) + + 11 Apr 2011; Daniel Pielmeier <billie@gentoo.org> +libburn-1.0.6.ebuild: + Version bump. Switch to EAPI 4. Add static-libs USE flag. 23 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> libburn-1.0.0.ebuild: ppc/ppc64 stable wrt #355097 diff --git a/dev-libs/libburn/libburn-1.0.6.ebuild b/dev-libs/libburn/libburn-1.0.6.ebuild new file mode 100644 index 000000000000..09d8519af8ed --- /dev/null +++ b/dev-libs/libburn/libburn-1.0.6.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/libburn-1.0.6.ebuild,v 1.1 2011/04/11 19:16:59 billie Exp $ + +EAPI=4 + +MY_PL=00 +[[ ${PV/_p} != ${PV} ]] && MY_PL=${PV#*_p} +MY_PV="${PV%_p*}.pl${MY_PL}" + +DESCRIPTION="Libburn is an open-source library for reading, mastering and writing optical discs." +HOMEPAGE="http://libburnia-project.org" +SRC_URI="http://files.libburnia-project.org/releases/${PN}-${MY_PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +IUSE="debug static-libs track-src-odirect" +#IUSE="cdio debug static-libs track-src-odirect" +#Supports libcdio but needs version >=0.83 which is not yet released. + +RDEPEND="" +#RDEPEND="cdio? ( >=dev-libs/libcdio-0.83 )" +DEPEND="dev-util/pkgconfig" + +S=${WORKDIR}/${P%_p*} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable track-src-odirect) \ + --disable-libcdio \ + --disable-ldconfig-at-install \ + $(use_enable debug) +# $(use_enable cdio libcdio) \ +} + +src_install() { + default + + dodoc CONTRIBUTORS doc/comments + + cd "${S}"/cdrskin + docinto cdrskin + dodoc changelog.txt README wiki_plain.txt + docinto cdrskin/html + dohtml cdrskin_eng.html + + find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed" +} |