diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-12-15 12:33:50 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-12-15 12:33:50 +0000 |
commit | b1e444da6a783d34e1d85b9bf21addfdc9d793d0 (patch) | |
tree | 7331021797a853bba618a086016ed14849a12c64 /app-cdr | |
parent | Do not use deprecated GTK+ constructs, this prepares for migration to GTK+ 3.... (diff) | |
download | gentoo-2-b1e444da6a783d34e1d85b9bf21addfdc9d793d0.tar.gz gentoo-2-b1e444da6a783d34e1d85b9bf21addfdc9d793d0.tar.bz2 gentoo-2-b1e444da6a783d34e1d85b9bf21addfdc9d793d0.zip |
Import the live ebuild.
(Portage version: 2.2.0_alpha148/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/mirage2iso/ChangeLog | 7 | ||||
-rw-r--r-- | app-cdr/mirage2iso/mirage2iso-9999.ebuild | 60 |
2 files changed, 66 insertions, 1 deletions
diff --git a/app-cdr/mirage2iso/ChangeLog b/app-cdr/mirage2iso/ChangeLog index de39ada022c3..b298601bd5de 100644 --- a/app-cdr/mirage2iso/ChangeLog +++ b/app-cdr/mirage2iso/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-cdr/mirage2iso # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/mirage2iso/ChangeLog,v 1.5 2012/08/30 22:47:22 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/mirage2iso/ChangeLog,v 1.6 2012/12/15 12:33:50 mgorny Exp $ + +*mirage2iso-9999 (15 Dec 2012) + + 15 Dec 2012; Michał Górny <mgorny@gentoo.org> +mirage2iso-9999.ebuild: + Import the live ebuild. 30 Aug 2012; Michał Górny <mgorny@gentoo.org> metadata.xml, mirage2iso-0.3.1.ebuild: diff --git a/app-cdr/mirage2iso/mirage2iso-9999.ebuild b/app-cdr/mirage2iso/mirage2iso-9999.ebuild new file mode 100644 index 000000000000..21e89bdefd5c --- /dev/null +++ b/app-cdr/mirage2iso/mirage2iso-9999.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/mirage2iso/mirage2iso-9999.ebuild,v 1.1 2012/12/15 12:33:50 mgorny Exp $ + +EAPI=4 + +#if LIVE +AUTOTOOLS_AUTORECONF=yes +EGIT_REPO_URI="http://bitbucket.org/mgorny/${PN}.git" + +inherit git-2 +#endif + +inherit autotools-utils versionator + +TESTS_PV=$(get_version_component_range 1-2) + +DESCRIPTION="CD/DVD image converter using libmirage" +HOMEPAGE="https://bitbucket.org/mgorny/mirage2iso/" +SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2 + test? ( mirror://bitbucket/mgorny/${PN}/downloads/${PN}-${TESTS_PV}-tests.tar.xz )" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="pinentry test" + +COMMON_DEPEND="dev-libs/libmirage + dev-libs/glib:2 + pinentry? ( dev-libs/libassuan )" +DEPEND="${COMMON_DEPEND} + virtual/pkgconfig + test? ( app-arch/xz-utils )" +RDEPEND="${COMMON_DEPEND} + pinentry? ( app-crypt/pinentry )" + +#if LIVE +DEPEND="${DEPEND} + dev-libs/libassuan" +KEYWORDS= +SRC_URI= +#endif + +src_configure() { + myeconfargs=( + $(use_with pinentry libassuan) + ) + + autotools-utils_src_configure +} + +src_test() { +#if LIVE + autotools-utils_src_test + return ${?} + +#endif + mv "${WORKDIR}"/${PN}-${TESTS_PV}/tests/* tests/ || die + autotools-utils_src_test +} |