diff options
Diffstat (limited to 'dev-libs/syck/syck-0.55.ebuild')
-rw-r--r-- | dev-libs/syck/syck-0.55.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-libs/syck/syck-0.55.ebuild b/dev-libs/syck/syck-0.55.ebuild new file mode 100644 index 000000000000..fa4f5ad9deb0 --- /dev/null +++ b/dev-libs/syck/syck-0.55.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/syck/syck-0.55.ebuild,v 1.1 2006/01/16 22:32:22 mcummings Exp $ + +inherit flag-o-matic + +IUSE="" +DESCRIPTION="Syck is an extension for reading and writing YAML swiftly in popular scripting languages." +HOMEPAGE="http://whytheluckystiff.net/syck/" +SRC_URI="http://rubyforge.org/frs/download.php/4492/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +DEPEND=" sys-libs/glibc " + +src_compile() { + use amd64 && append-flags -fPIC + econf + emake +} + +src_install() { + einstall +} |