diff options
author | Hanno Böck <hanno@gentoo.org> | 2004-11-23 23:11:12 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2004-11-23 23:11:12 +0000 |
commit | 159ae3d0f7fa681764b00f3cd4b87b9c94ef778a (patch) | |
tree | 75933d26ba40142714650427a2ff7c859b0e57c8 /sys-libs/gwenhywfar | |
parent | Version bump. Adding patches thanks to Billy Holmes <billy@gonoph.net> in bug... (diff) | |
download | gentoo-2-159ae3d0f7fa681764b00f3cd4b87b9c94ef778a.tar.gz gentoo-2-159ae3d0f7fa681764b00f3cd4b87b9c94ef778a.tar.bz2 gentoo-2-159ae3d0f7fa681764b00f3cd4b87b9c94ef778a.zip |
gwenhywfar ebuild added
Diffstat (limited to 'sys-libs/gwenhywfar')
-rw-r--r-- | sys-libs/gwenhywfar/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/files/digest-gwenhywfar-1.3 | 1 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/gwenhywfar-1.3.ebuild | 41 | ||||
-rw-r--r-- | sys-libs/gwenhywfar/metadata.xml | 6 |
4 files changed, 57 insertions, 0 deletions
diff --git a/sys-libs/gwenhywfar/ChangeLog b/sys-libs/gwenhywfar/ChangeLog new file mode 100644 index 000000000000..05c8561a491d --- /dev/null +++ b/sys-libs/gwenhywfar/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for sys-libs/gwenhywfar +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.1 2004/11/23 23:11:12 hanno Exp $ + +*gwenhywfar-1.3 (24 Nov 2004) + + 24 Nov 2004; Hanno Boeck <hanno@gentoo.org> +gwenhywfar-1.3.ebuild: + Initial commit, ebuild by Florian Müller in bug #65401. + diff --git a/sys-libs/gwenhywfar/files/digest-gwenhywfar-1.3 b/sys-libs/gwenhywfar/files/digest-gwenhywfar-1.3 new file mode 100644 index 000000000000..dad32dd7547b --- /dev/null +++ b/sys-libs/gwenhywfar/files/digest-gwenhywfar-1.3 @@ -0,0 +1 @@ +MD5 633239b07f937db5dcc015e671280e62 gwenhywfar-1.3.tar.gz 905553 diff --git a/sys-libs/gwenhywfar/gwenhywfar-1.3.ebuild b/sys-libs/gwenhywfar/gwenhywfar-1.3.ebuild new file mode 100644 index 000000000000..c0c2a01f7c2f --- /dev/null +++ b/sys-libs/gwenhywfar/gwenhywfar-1.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-1.3.ebuild,v 1.1 2004/11/23 23:11:12 hanno Exp $ + +DESCRIPTION="A multi-platform helper library for other libraries" +HOMEPAGE="http://gwenhywfar.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +IUSE="debug ssl doc" + +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b ) + sys-libs/ncurses + doc? ( app-doc/doxygen )" + +S=${WORKDIR}/${P} + +src_compile() { + if use doc; then + APIDOC="--with-docpath=/usr/share/doc/${P}/apidoc" + fi + econf \ + `use_enable ssl` \ + `use_enable debug` \ + `use_enable doc full-doc` \ + ${APIDOC} || die "configure failed" + emake || die "emake failed" + if use doc; then + emake srcdoc || die "Building the api-doc failed" + fi +} + +src_install() { + make DESTDIR=${D} install || die + dodoc README* AUTHORS ABOUT-NLS COPYING ChangeLog INSTALL TODO + if use doc; then + make DESTDIR=${D} install-srcdoc || die "Installing the API-Doc failed" + fi +} diff --git a/sys-libs/gwenhywfar/metadata.xml b/sys-libs/gwenhywfar/metadata.xml new file mode 100644 index 000000000000..efa54454de71 --- /dev/null +++ b/sys-libs/gwenhywfar/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer><email>hanno@gentoo.org</email></maintainer> +</pkgmetadata> |