diff options
author | Federico Ferri <mescalinum@gentoo.org> | 2009-01-21 00:24:11 +0000 |
---|---|---|
committer | Federico Ferri <mescalinum@gentoo.org> | 2009-01-21 00:24:11 +0000 |
commit | 7f07940203efb1d02225893642ab5b2e2201d3df (patch) | |
tree | 5a544c4aa41fded38d6d5711a9140983f5ad7d29 /app-pda/synce-librapi2 | |
parent | version bump, bug #254886 (diff) | |
download | gentoo-2-7f07940203efb1d02225893642ab5b2e2201d3df.tar.gz gentoo-2-7f07940203efb1d02225893642ab5b2e2201d3df.tar.bz2 gentoo-2-7f07940203efb1d02225893642ab5b2e2201d3df.zip |
version bump, bug #254886
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-pda/synce-librapi2')
-rw-r--r-- | app-pda/synce-librapi2/ChangeLog | 10 | ||||
-rw-r--r-- | app-pda/synce-librapi2/synce-librapi2-0.13.ebuild | 31 |
2 files changed, 39 insertions, 2 deletions
diff --git a/app-pda/synce-librapi2/ChangeLog b/app-pda/synce-librapi2/ChangeLog index 5903f52268e0..03ac858109b0 100644 --- a/app-pda/synce-librapi2/ChangeLog +++ b/app-pda/synce-librapi2/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-pda/synce-librapi2 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-librapi2/ChangeLog,v 1.26 2008/12/19 22:07:20 mescalinum Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-librapi2/ChangeLog,v 1.27 2009/01/21 00:24:11 mescalinum Exp $ + +*synce-librapi2-0.13 (21 Jan 2009) + + 21 Jan 2009; Federico Ferri <mescalinum@gentoo.org> + +synce-librapi2-0.13.ebuild: + version bump, bug #254886 *synce-librapi2-0.12-r1 (19 Dec 2008) *synce-librapi2-0.11.1-r1 (19 Dec 2008) diff --git a/app-pda/synce-librapi2/synce-librapi2-0.13.ebuild b/app-pda/synce-librapi2/synce-librapi2-0.13.ebuild new file mode 100644 index 000000000000..b6acc649ae62 --- /dev/null +++ b/app-pda/synce-librapi2/synce-librapi2-0.13.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-librapi2/synce-librapi2-0.13.ebuild,v 1.1 2009/01/21 00:24:11 mescalinum Exp $ + +inherit eutils + +DESCRIPTION="SynCE - RAPI communication library" +HOMEPAGE="http://sourceforge.net/projects/synce/" +LICENSE="MIT" + +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" +DEPEND="dev-lang/python + >=dev-python/pyrex-0.9.6 + >=dev-libs/check-0.8.2 + ~app-pda/synce-libsynce-${PV}" +RDEPEND="${DEPEND}" + +SRC_URI="mirror://sourceforge/synce/librapi2-${PV}.tar.gz" +S="${WORKDIR}/librapi2-${PV}" + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc BUGS README README.contributing README.design TODO ChangeLog +} |