forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.6, Repoman-2.3.2
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST lwp-2.2.tar.gz 376136 SHA256 64a3570559083bee657551b6673037161f33b71ad55ee45812612c29df2924b0 SHA512 a5fa52c0483e04fdbface5f0e9cc85bab5db59c4d730a3cb3c538ccaa3a88aaa916b37478e4c5450e77bcc45638987610ba619995a75541d728f138f103c5d7e WHIRLPOOL 93015bf3741508d284cd55482ca5201bf1a0c6d9b880e42c9cd3aa0147727e6bda6266231dc61056b1f6ac8a10a21b0fb874674163fa5866a72a1500407a5ae4 | ||
DIST lwp-2.6.tar.gz 372225 SHA256 4887fd7f74564552f53dfe42440f4777808a82b1249b2733ecfd062849a4d32d SHA512 ad8374ddf55ef9fddf9ce0b8d7c2ae0dc206e5108a01f278a37486070ab70e5bd7312f057863254b4fc430cfbed2c36f589807813e6a99067933142d5225395b WHIRLPOOL 205836226f86e77dfbc795bdf667f51b2c40b99cbc7bf5b998361472b6ad46b102c519d88e1afc503b259c9073ac7b155e322d134f5787d770517f3bf3a2e54d | ||
DIST lwp-2.8.tar.xz 270008 SHA256 689c1ab8a16dc013fb1aedcc0aa3e4b11074b22efc4cafc251b8f707a1467e5f SHA512 c56f3b350e888b5bcb2bffb41086f8926e975aafae236be7f1d2153bb178a37564b77d7598db1aa915714ce8e2ed1904663ce2113f5d0853173cf5e189958bf0 WHIRLPOOL 3afbd93d0c5c77d067b110243682900e71ef289b6a480c9954305aa096c4f8587517c37c3eb701a78f9cf825696d4c2ea9fc8b17132028e697ea46eb1a88cb7b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
inherit ltprune | ||
|
||
DESCRIPTION="Light-weight process library (used by Coda)" | ||
HOMEPAGE="http://www.coda.cs.cmu.edu/" | ||
SRC_URI="http://www.coda.cs.cmu.edu/pub/lwp/src/${P}.tar.xz" | ||
|
||
LICENSE="LGPL-2.1" | ||
SLOT="1" | ||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" | ||
IUSE="" | ||
|
||
src_configure() { | ||
econf --disable-static | ||
} | ||
|
||
src_install() { | ||
default | ||
prune_libtool_files | ||
} |