diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 18:46:28 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 18:46:28 +0000 |
commit | 215ee572a0b55d9751bc29a9642596561ffc98c5 (patch) | |
tree | 2f999576a4fbdf35b11d42bf1d19d76466969024 /dev-libs/pth | |
parent | Added KEYWORDS, removed old version. (diff) | |
download | historical-215ee572a0b55d9751bc29a9642596561ffc98c5.tar.gz historical-215ee572a0b55d9751bc29a9642596561ffc98c5.tar.bz2 historical-215ee572a0b55d9751bc29a9642596561ffc98c5.zip |
repoman'd
Diffstat (limited to 'dev-libs/pth')
-rw-r--r-- | dev-libs/pth/pth-1.4.0.ebuild | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/dev-libs/pth/pth-1.4.0.ebuild b/dev-libs/pth/pth-1.4.0.ebuild index ec1ac1e85f5b..1537c951b4f9 100644 --- a/dev-libs/pth/pth-1.4.0.ebuild +++ b/dev-libs/pth/pth-1.4.0.ebuild @@ -1,37 +1,24 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.0.ebuild,v 1.3 2002/08/01 11:59:01 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.0.ebuild,v 1.4 2002/08/01 18:46:28 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="GNU Portable Threads" SRC_URI="ftp://ftp.gnu.org/gnu/pth/pth-1.4.0.tar.gz" HOMEPAGE="http://www.gnu.org/software/pth/" +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="x86" + DEPEND="virtual/glibc" src_compile() { - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info - assert - + econf || die emake || die } src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - install || die - + einstall || die dodoc ANNOUNCE AUTHORS COPYING ChangeLog NEWS README THANKS USERS } - - - - - - - |