diff options
author | Michael Januszewski <spock@gentoo.org> | 2006-04-15 21:56:02 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2006-04-15 21:56:02 +0000 |
commit | a7d9000df0d426d8e40a4e1631a0be4e29419280 (patch) | |
tree | 7061fe6f849d28241122a23622d436678a3ccc80 /net-libs | |
parent | Stable on SPARC wrt bug #130079. (diff) | |
download | gentoo-2-a7d9000df0d426d8e40a4e1631a0be4e29419280.tar.gz gentoo-2-a7d9000df0d426d8e40a4e1631a0be4e29419280.tar.bz2 gentoo-2-a7d9000df0d426d8e40a4e1631a0be4e29419280.zip |
Version bump.
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libtlen/ChangeLog | 10 | ||||
-rw-r--r-- | net-libs/libtlen/files/digest-libtlen-20060309 | 3 | ||||
-rw-r--r-- | net-libs/libtlen/libtlen-20060309.ebuild | 39 |
3 files changed, 50 insertions, 2 deletions
diff --git a/net-libs/libtlen/ChangeLog b/net-libs/libtlen/ChangeLog index a898a97e02a8..5d11c6397582 100644 --- a/net-libs/libtlen/ChangeLog +++ b/net-libs/libtlen/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libtlen -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtlen/ChangeLog,v 1.7 2005/03/27 00:55:15 luckyduck Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtlen/ChangeLog,v 1.8 2006/04/15 21:56:02 spock Exp $ + +*libtlen-20060309 (15 Apr 2006) + + 15 Apr 2006; Michał Januszewski <spock@gentoo.org> + +libtlen-20060309.ebuild: + Version bump. 27 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> +files/20040912-fPIC.patch, libtlen-20040912.ebuild: diff --git a/net-libs/libtlen/files/digest-libtlen-20060309 b/net-libs/libtlen/files/digest-libtlen-20060309 new file mode 100644 index 000000000000..fe2b3ce31ae6 --- /dev/null +++ b/net-libs/libtlen/files/digest-libtlen-20060309 @@ -0,0 +1,3 @@ +MD5 4a49ac97af4c25b6b924fa929c00e278 libtlen-20060309.tar.gz 154667 +RMD160 460fa2f1f9c6c49b4c2dfe244a278ceb0726191e libtlen-20060309.tar.gz 154667 +SHA256 d830d8311e720e77d991c2fa1a5a88f6d4b67dbf8823679fd736dc2e3d9d3262 libtlen-20060309.tar.gz 154667 diff --git a/net-libs/libtlen/libtlen-20060309.ebuild b/net-libs/libtlen/libtlen-20060309.ebuild new file mode 100644 index 000000000000..d80b82ba424d --- /dev/null +++ b/net-libs/libtlen/libtlen-20060309.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtlen/libtlen-20060309.ebuild,v 1.1 2006/04/15 21:56:02 spock Exp $ + +inherit eutils + +DESCRIPTION="Support library for Tlen IMS" +HOMEPAGE="http://tleenx.sourceforge.net/" +SRC_URI="mirror://sourceforge/tleenx/${P}.tar.gz" + +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64" +SLOT="0" +LICENSE="GPL-2" +IUSE="doc" + +DEPEND="virtual/libc" + +src_unpack() { + unpack ${A} + cd ${S} + + if use amd64; then + epatch ${FILESDIR}/${PV}-fPIC.patch + aclocal + autoconf + libtoolize --force --copy + fi +} + +src_compile() { + econf \ + --enable-shared || die + emake all || die +} + +src_install() { + einstall || die + dodoc ChangeLog +} |