annotate src/libevent.mk @ 3012:100e618349f7

Improve handling of prefix directories by defining HOST_PREFIX and BUILD_TOOLS_PREFIX variables in top-level Makefile.
author John W. Eaton <jwe@octave.org>
date Sun, 02 Jun 2013 10:31:04 -0400
parents 47558e958113
children bcc26ffe9a0f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2298
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 409
diff changeset
3
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := libevent
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
5 $(PKG)_IGNORE :=
2705
2dad6359bc72 update package libevent
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
6 $(PKG)_CHECKSUM := 20bb4a1a296ac93c08dfc32ae19ab874cab67a0c
1095
e878941387e3 upgrade packages curl freetype gcc glew gnutls gst* libarchive libevent libgcrypt pcre sqlite w32api
Mark Brand <mabrand@mabrand.nl>
parents: 1065
diff changeset
7 $(PKG)_SUBDIR := libevent-$($(PKG)_VERSION)-stable
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(PKG)_FILE := libevent-$($(PKG)_VERSION)-stable.tar.gz
2007
ee2cb33fb924 update package libevent
Mark Brand <mabrand@mabrand.nl>
parents: 1960
diff changeset
9 $(PKG)_URL := https://github.com/downloads/$(PKG)/$(PKG)/$($(PKG)_FILE)
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 $(PKG)_DEPS := gcc
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2503
diff changeset
13 $(WGET) -q -O- 'http://libevent.org/' | \
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 grep 'libevent-' | \
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 $(SED) -n 's,.*libevent-\([0-9][^>]*\)-stable\.tar.*,\1,p' | \
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 head -1
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 cd '$(1)' && ./configure \
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 --host='$(TARGET)' \
2503
475923a43d52 update package libevent
Mark Brand <mabrand@mabrand.nl>
parents: 2365
diff changeset
22 --build="`config.guess`" \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2705
diff changeset
23 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
24 --prefix='$(HOST_PREFIX)'
326
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 $(MAKE) -C '$(1)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= defexec_DATA=
e0ace807c219 new package: libevent (by Giuseppe Scrivano)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 endef