diff options
Diffstat (limited to 'net-analyzer/mdns-scan/mdns-scan-0.5.ebuild')
-rw-r--r-- | net-analyzer/mdns-scan/mdns-scan-0.5.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net-analyzer/mdns-scan/mdns-scan-0.5.ebuild b/net-analyzer/mdns-scan/mdns-scan-0.5.ebuild new file mode 100644 index 000000000000..7bfcea86d3db --- /dev/null +++ b/net-analyzer/mdns-scan/mdns-scan-0.5.ebuild @@ -0,0 +1,28 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="a tool for scanning for mDNS/DNS-SD published services" +HOMEPAGE="http://0pointer.de/lennart/projects/mdns-scan/" +SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_prepare() { + sed -i "s#-Wall -W -g -O0 -pipe#${CFLAGS} ${LDFLAGS}#" Makefile + sed -i "s#-o #${CFLAGS} ${LDFLAGS} -o #" Makefile + default +} + +src_install() { + dodir /usr/bin + default +} |