Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
073f68c2
Commit
073f68c2
authored
12 years ago
by
Jo-Philipp Wich
Browse files
Options
Downloads
Patches
Plain Diff
libevent2: move to trunk (required by lldpd), add myself as maintainer
SVN-Revision: 33866
parent
144d932f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
package/libs/libevent2/Makefile
+157
-0
157 additions, 0 deletions
package/libs/libevent2/Makefile
with
157 additions
and
0 deletions
package/libs/libevent2/Makefile
0 → 100644
+
157
−
0
View file @
073f68c2
#
# Copyright (C) 2011-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include
$(TOPDIR)/rules.mk
PKG_NAME
:=
libevent2
PKG_VERSION
:=
2.0.19
PKG_RELEASE
:=
1
PKG_BUILD_DIR
:=
$(
BUILD_DIR
)
/libevent-
$(
PKG_VERSION
)
-stable
PKG_SOURCE
:=
libevent-
$(
PKG_VERSION
)
-stable
.tar.gz
PKG_SOURCE_URL
:=
http://www.monkey.org/~provos/
\
@SF/levent
PKG_MD5SUM
:=
91111579769f46055b0a438f5cc59572
PKG_MAINTAINER
:=
Jo-Philipp Wich <jow@openwrt.org>
PKG_FIXUP
:=
autoreconf
PKG_INSTALL
:=
1
PKG_BUILD_PARALLEL
:=
1
include
$(INCLUDE_DIR)/package.mk
define
Package/libevent2/Default
SECTION
:=
libs
CATEGORY
:=
Libraries
TITLE
:=
Event notification
URL
:=
http://www.monkey.org/~provos/libevent/
DEPENDS
:=
+USE_EGLIBC:librt
endef
define
Package/libevent2/Default/description
The
libevent
API
provides
a
mechanism
to
execute
a
callback
function
when
a
specific
event
occurs
on
a
file
descriptor
or
after
a
timeout
has
been
reached.
Furthermore,
libevent
also
support
callbacks
due
to
signals
or
regular
timeouts.
libevent
is
meant
to
replace
the
event
loop
found
in
event
driven
network
servers.
An
application
just
needs
to
call
event_dispatch()
and
then
add
or
remove
events
dynamically
without
having
to
change
the
event
loop.
endef
define
Package/libevent2
$(
call
Package/libevent2/Default
)
TITLE
+=
library
(
version 2.0
)
endef
define
Package/libevent2/description
$(
call
Package/libevent2/Default/description
)
This
package
contains
the
libevent
shared
library
historically
containing
both
the
core
&
extra
libraries.
endef
define
Package/libevent2-core
$(
call
Package/libevent2/Default
)
TITLE
+=
core library
(
version 2.0
)
endef
define
Package/libevent2-core/description
$(
call
Package/libevent2/Default/description
)
This
package
contains
the
libevent
core
shared
library
for
the
event,
buffer
&
utility
functions.
endef
define
Package/libevent2-extra
$(
call
Package/libevent2/Default
)
TITLE
+=
extra library
(
version 2.0
)
endef
define
Package/libevent2-extra/description
$(
call
Package/libevent2/Default/description
)
This
package
contains
the
libevent
extra
shared
library
for
specific
protocols
including
HTTP,
DNS
&
RPC.
endef
define
Package/libevent2-openssl
$(
call
Package/libevent2/Default
)
TITLE
+=
OpenSSL library
(
version 2.0
)
DEPENDS
+=
+libopenssl
endef
define
Package/libevent2-openssl/description
$(
call
Package/libevent2/Default/description
)
This
package
contains
the
libevent
OpenSSL
shared
library
for
encrypted
bufferevents.
endef
define
Package/libevent2-pthreads
$(
call
Package/libevent2/Default
)
TITLE
+=
Pthreads library
(
version 2.0
)
DEPENDS
+=
+libpthread
endef
define
Package/libevent2-pthreads/description
$(
call
Package/libevent2/Default/description
)
This
package
contains
the
libevent
Pthreads
shared
library
for
threading
&
locking.
endef
TARGET_CFLAGS
+=
$(
FPIC
)
CONFIGURE_ARGS
+=
\
--enable-shared
\
--enable-static
MAKE_FLAGS
+=
\
CFLAGS
=
"
$(
TARGET_CFLAGS
)
"
define
Build/InstallDev
$(INSTALL_DIR)
$(1)/usr/include
$(CP)
$(PKG_INSTALL_DIR)/usr/include/*
$(1)/usr/include/
$(INSTALL_DIR)
$(1)/usr/lib
$(CP)
$(PKG_INSTALL_DIR)/usr/lib/libevent*.{la,a,so}
$(1)/usr/lib/
$(CP)
$(PKG_INSTALL_DIR)/usr/lib/libevent*-2.0.so*
$(1)/usr/lib/
$(INSTALL_DIR)
$(1)/usr/lib/pkgconfig
$(CP)
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libevent*.pc
$(1)/usr/lib/pkgconfig/
endef
define
Package/libevent2/install
$(INSTALL_DIR)
$(1)/usr/lib
$(CP)
$(PKG_INSTALL_DIR)/usr/lib/libevent-2.0.so.*
$(1)/usr/lib/
endef
define
Package/libevent2-core/install
$(INSTALL_DIR)
$(1)/usr/lib
$(CP)
$(PKG_INSTALL_DIR)/usr/lib/libevent_core-2.0.so.*
$(1)/usr/lib/
endef
define
Package/libevent2-extra/install
$(INSTALL_DIR)
$(1)/usr/lib
$(CP)
$(PKG_INSTALL_DIR)/usr/lib/libevent_extra-2.0.so.*
$(1)/usr/lib/
endef
define
Package/libevent2-openssl/install
$(INSTALL_DIR)
$(1)/usr/lib
$(CP)
$(PKG_INSTALL_DIR)/usr/lib/libevent_openssl-2.0.so.*
$(1)/usr/lib/
endef
define
Package/libevent2-pthreads/install
$(INSTALL_DIR)
$(1)/usr/lib
$(CP)
$(PKG_INSTALL_DIR)/usr/lib/libevent_pthreads-2.0.so.*
$(1)/usr/lib/
endef
$(
eval
$(
call BuildPackage,libevent2
))
$(
eval
$(
call BuildPackage,libevent2-core
))
$(
eval
$(
call BuildPackage,libevent2-extra
))
$(
eval
$(
call BuildPackage,libevent2-openssl
))
$(
eval
$(
call BuildPackage,libevent2-pthreads
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment