mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 12:30:44 +02:00
xxd: LDFLAGS fix
This commit is contained in:
parent
0418d10845
commit
57573327b9
2 changed files with 34 additions and 2 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST xxd-1.10.tar.gz 11078 RMD160 cf6022f96bde42983bb0c177cd07460140053213 SHA1 14ca3a7dc038bfb73fc878c3bbf774b1ca67097e SHA256 2912a914d7605d0c8b05ffd1c39a0d3aa6a97ce6c225cbc200334a6e827a1beb
|
||||
EBUILD xxd-1.10.ebuild 570 RMD160 5e16b47e1625cbe6b6033a86038bf01bbbaadbf2 SHA1 98257fed269cc7050e03ae88adbd6f57fef62da7 SHA256 a281432f88e897db0e8d439862875ee398ceb135b477f19c3744dbcd7ec0a918
|
||||
DIST xxd-1.10.tar.gz 11078 SHA256 2912a914d7605d0c8b05ffd1c39a0d3aa6a97ce6c225cbc200334a6e827a1beb SHA512 eb38427c26fc827c3b04adca5c8020fd35eb26829e5200a56c4729c91f3d719c3d3244678d9994b79ff248da9501711820a6efb145a1ceb528e06e3a99ee157b WHIRLPOOL b06566292f0991b5dc48666854ffc339d62f099b8bab25cc9b461d4290523d1cceccef68e1fdb80b4d71cc928a331107f37178e70f5255045c74233b695932c3
|
||||
EBUILD xxd-1.10-r1.ebuild 648 SHA256 85a9a43c55d71a10d51a314e145854bc1bab2311af9b2f7a50e4ddd864bad7b3 SHA512 cb35803ee8194cf37179a03e7a85a97e1fd1ec1873b76644fbd2e0a185a05c8330f2b3462b39dc1438030c8e14b7dc023470a61303d2f63fbb74e5579b5eede9 WHIRLPOOL add06a2a1377957e0e05e9b20378066ff5886ea8e7ee183997c7925abf50006c43dcc0a7fbae9fda85045002464de4418c49becbb98550872a35721be4531ff2
|
||||
EBUILD xxd-1.10.ebuild 570 SHA256 a281432f88e897db0e8d439862875ee398ceb135b477f19c3744dbcd7ec0a918 SHA512 d6cf2f5e47b52a80a85d8b23e08fc784b6f96c750d4e9d2141b05074b62aa66367475424c8e13c2c326250da50968896bbc195061d23b67c0f03d8053f6db146 WHIRLPOOL 5c66a02f20e8572f2a2b6b22f928f66dfaa35ed351c8a53244b26dca45ac0c4ba7f863ab167fa3bfbbccd0bd45870dbe0acd26fdc33b415670c1d43cd819373b
|
||||
|
|
|
|||
31
dev-util/xxd/xxd-1.10-r1.ebuild
Normal file
31
dev-util/xxd/xxd-1.10-r1.ebuild
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
DESCRIPTION="Make a hexdump or do the reverse"
|
||||
HOMEPAGE="http://ftp.uni-erlangen.de/pub/utilities/etc/?order=s"
|
||||
SRC_URI="http://ftp.uni-erlangen.de/pub/utilities/etc/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="!app-editors/vim"
|
||||
|
||||
src_prepare () {
|
||||
sed -i "s|-O|$CFLAGS|g" Makefile || die "sed failed"
|
||||
sed -i "s|\$(CFLAGS)|\$(CFLAGS) \$(LDFLAGS) |g" Makefile || die "sed failed"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake || die "emake failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin xxd
|
||||
doman xxd.1
|
||||
}
|
||||
Loading…
Reference in a new issue