diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-01-09 14:53:00 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-01-09 14:53:00 +0000 |
commit | 615ce09ae29c7a6dad457cc3a501a444d64aefc8 (patch) | |
tree | 67351b028b2d93a06e208ac4ab71c1a110c63689 /net-libs | |
parent | dep-clean is no more supported and has been removed (diff) | |
download | historical-615ce09ae29c7a6dad457cc3a501a444d64aefc8.tar.gz historical-615ce09ae29c7a6dad457cc3a501a444d64aefc8.tar.bz2 historical-615ce09ae29c7a6dad457cc3a501a444d64aefc8.zip |
Version bumped.
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/linc/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/linc/files/digest-linc-0.7.1 | 1 | ||||
-rw-r--r-- | net-libs/linc/linc-0.7.1.ebuild | 43 |
3 files changed, 51 insertions, 1 deletions
diff --git a/net-libs/linc/ChangeLog b/net-libs/linc/ChangeLog index a1e3d16a80a7..febf29e60a1d 100644 --- a/net-libs/linc/ChangeLog +++ b/net-libs/linc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/linc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/linc/ChangeLog,v 1.15 2003/01/09 14:26:06 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/linc/ChangeLog,v 1.16 2003/01/09 14:53:00 mholzer Exp $ + +*linc-0.7.1 (09 Jan 2003) + + 09 Jan 2003; Martin Holzer <mholzer@gentoo.org> linc-0.7.1.ebuild + files/digest-linc-0.7.1 ChangeLog : + Version bumped. Closes #13563 *linc-0.5.5 (13 Nov 2002) diff --git a/net-libs/linc/files/digest-linc-0.7.1 b/net-libs/linc/files/digest-linc-0.7.1 new file mode 100644 index 000000000000..0b5fd0118a19 --- /dev/null +++ b/net-libs/linc/files/digest-linc-0.7.1 @@ -0,0 +1 @@ +MD5 423d96e02aa2a6130f331bc6923a36e6 linc-0.7.1.tar.bz2 182008 diff --git a/net-libs/linc/linc-0.7.1.ebuild b/net-libs/linc/linc-0.7.1.ebuild new file mode 100644 index 000000000000..d6a93ddd9970 --- /dev/null +++ b/net-libs/linc/linc-0.7.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/linc/linc-0.7.1.ebuild,v 1.1 2003/01/09 14:53:00 mholzer Exp $ + +IUSE="doc ssl" + +inherit libtool gnome.org + +S=${WORKDIR}/${P} +DESCRIPTION="A library to ease the writing of networked applications" +HOMEPAGE="http://www.gnome.org/" + +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~x86 ~ppc ~sparc ~alpha" + +RDEPEND=">=dev-libs/glib-2.0.6 + ssl? ( >=dev-libs/openssl-0.9.6 )" + +DEPEND="${RDEPEND} + doc? ( >=dev-util/gtk-doc-0.9-r2 ) + >=dev-util/pkgconfig-0.12.0" + +src_compile() { + elibtoolize + local myconf + use doc \ + && myconf="${myconf} --enable-gtk-doc" \ + || myconf="${myconf} --disable-gtk-doc" + + use ssl \ + && myconf="${myconf} --with-openssl" \ + || myconf="${myconf} --without-openssl" + + econf ${myconf} || die + emake || die +} + +src_install() { + einstall || die + + dodoc AUTHORS ChangeLog COPYING HACKING MAINTAINERS README* NEWS TODO +} |