diff options
author | Federico Ferri <mescalinum@gentoo.org> | 2008-11-13 06:31:16 +0000 |
---|---|---|
committer | Federico Ferri <mescalinum@gentoo.org> | 2008-11-13 06:31:16 +0000 |
commit | 069d01b4adbbbf8cc4ffce1a2a2bf666eed7a178 (patch) | |
tree | fb433f649b9849d3f8df0468049cdc2d81348ab4 /app-pda | |
parent | amd64 stable, bug #246279 (diff) | |
download | gentoo-2-069d01b4adbbbf8cc4ffce1a2a2bf666eed7a178.tar.gz gentoo-2-069d01b4adbbbf8cc4ffce1a2a2bf666eed7a178.tar.bz2 gentoo-2-069d01b4adbbbf8cc4ffce1a2a2bf666eed7a178.zip |
getting synce-0.12 into tree. ebuild coming from synce overlay, reviewed and tested.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-pda')
-rw-r--r-- | app-pda/orange/ChangeLog | 10 | ||||
-rw-r--r-- | app-pda/orange/orange-0.3.2.ebuild | 28 |
2 files changed, 36 insertions, 2 deletions
diff --git a/app-pda/orange/ChangeLog b/app-pda/orange/ChangeLog index 48de7aface56..2eb1d15cf0b9 100644 --- a/app-pda/orange/ChangeLog +++ b/app-pda/orange/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-pda/orange -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/orange/ChangeLog,v 1.12 2007/02/21 22:57:24 peper Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/orange/ChangeLog,v 1.13 2008/11/13 06:31:16 mescalinum Exp $ + +*orange-0.3.2 (13 Nov 2008) + + 13 Nov 2008; Federico Ferri <mescalinum@gentoo.org> +orange-0.3.2.ebuild: + getting synce-0.12 into tree. ebuild coming from synce overlay, reviewed + and tested. 21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/app-pda/orange/orange-0.3.2.ebuild b/app-pda/orange/orange-0.3.2.ebuild new file mode 100644 index 000000000000..1588933ee8af --- /dev/null +++ b/app-pda/orange/orange-0.3.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/orange/orange-0.3.2.ebuild,v 1.1 2008/11/13 06:31:16 mescalinum Exp $ + +DESCRIPTION="A tool and library for extracting cabs from executable installers." +HOMEPAGE="http://synce.sourceforge.net/synce/orange.php" +SRC_URI="mirror://sourceforge/synce/lib${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" + +DEPEND=">=app-pda/synce-libsynce-0.9.1 + >=app-pda/dynamite-0.1.1 + >=app-arch/unshield-0.5.1" + +S="${WORKDIR}/lib${P}" + +src_unpack() { + unpack ${A} + cd "${S}" +} + +src_install() { + econf || die + emake DESTDIR="${D}" install || die +} |