mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-15 23:42:12 +00:00
Explanation why --disable-rpath-hack is needed: When building on pistachio_x86 $(LDFLAGS) contains '-L[...]/l4/lib' which will be transformed by autoconf to '-rpath [...]/l4/lib'. Now the problem at hand is that we pretend to be FreeBSD when we are actually not. So autoconf assumes it is valid to use '-path' when it is actually not. Also we use zlib for (de)compressing gzipped streams/files instead of calling gzip as this currently somewhat buggy.
20 lines
502 B
Makefile
20 lines
502 B
Makefile
LYNX = lynx-2.8.8.dev12
|
|
LYNX_TGZ = $(LYNX).tar.gz
|
|
LYNX_URL = http://lynx.isc.org/gnumatic/$(LYNX_TGZ)
|
|
#
|
|
# Interface to top-level prepare Makefile
|
|
#
|
|
PORTS += $(LYNX)
|
|
|
|
prepare:: $(CONTRIB_DIR)/$(LYNX)
|
|
|
|
#
|
|
# Port-specific local rules
|
|
#
|
|
$(DOWNLOAD_DIR)/$(LYNX_TGZ):
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) -O $@ $(LYNX_URL) && touch $@
|
|
|
|
$(CONTRIB_DIR)/$(LYNX): $(DOWNLOAD_DIR)/$(LYNX_TGZ)
|
|
$(VERBOSE)tar xfz $< -C $(CONTRIB_DIR) && touch $@
|
|
$(VERBOSE)patch -d contrib/ -N -p0 < src/noux-pkg/lynx/build.patch
|