source: freewrt/package/libdaemon/Makefile@ 6fc4520e

freewrt_1_0 freewrt_2_0
Last change on this file since 6fc4520e was c8b93bd, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

major package Makefile cleanup. remove mostly-clean, add licence header, always use RSTRIP varibale for stripping, rename some init scripts, indent

git-svn-id: svn://www.freewrt.org/trunk/freewrt@600 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 2.7 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= libdaemon
10PKG_VERSION:= 0.10
11PKG_RELEASE:= 1
12PKG_MD5SUM:= 6812a5e4063b5016f25e9a0cebbd3dd9
13
14PKG_SOURCE_URL:= http://0pointer.de/lennart/projects/libdaemon/
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17include $(TOPDIR)/mk/package.mk
18
19$(eval $(call PKG_template,LIBDAEMON,libdaemon,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(WRKBUILD)/.configured:
22 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(TARGET_CFLAGS)" \
25 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
27 ac_cv_func_setpgrp_void=yes \
28 ./configure \
29 --target=$(GNU_TARGET_NAME) \
30 --host=$(GNU_TARGET_NAME) \
31 --build=$(GNU_HOST_NAME) \
32 --program-prefix="" \
33 --program-suffix="" \
34 --prefix=/usr \
35 --exec-prefix=/usr \
36 --bindir=/usr/bin \
37 --datadir=/usr/share \
38 --includedir=/usr/include \
39 --infodir=/usr/share/info \
40 --libdir=/usr/lib \
41 --libexecdir=/usr/lib \
42 --localstatedir=/var \
43 --mandir=/usr/share/man \
44 --sbindir=/usr/sbin \
45 --sysconfdir=/etc \
46 --enable-largefile \
47 --disable-nls \
48 --enable-shared \
49 --enable-static \
50 --disable-rpath \
51 --with-gnu-ld \
52 --disable-lynx \
53 );
54 touch $@
55
56$(WRKBUILD)/.built:
57 rm -rf $(WRKINST)
58 mkdir -p $(WRKINST)
59 $(MAKE) -C $(WRKBUILD) \
60 DESTDIR="$(WRKINST)" \
61 all install
62 touch $@
63
64$(IPKG_LIBDAEMON):
65 install -d -m0755 $(IDIR_LIBDAEMON)/usr/lib
66 $(CP) $(WRKINST)/usr/lib/libdaemon.so.* $(IDIR_LIBDAEMON)/usr/lib/
67 $(RSTRIP) $(IDIR_LIBDAEMON)
68 $(IPKG_BUILD) $(IDIR_LIBDAEMON) $(PACKAGE_DIR)
69
70$(STAGING_DIR)/usr/lib/libdaemon.so: $(WRKBUILD)/.built
71 mkdir -p $(STAGING_DIR)/usr/include
72 $(CP) $(WRKINST)/usr/include/libdaemon $(STAGING_DIR)/usr/include/
73 mkdir -p $(STAGING_DIR)/usr/lib
74 $(CP) $(WRKINST)/usr/lib/libdaemon.a $(STAGING_DIR)/usr/lib/
75 $(CP) $(WRKINST)/usr/lib/libdaemon.so* $(STAGING_DIR)/usr/lib/
76 mkdir -p $(STAGING_DIR)/usr/lib/pkgconfig
77 $(CP) $(WRKINST)/usr/lib/pkgconfig/libdaemon.pc $(STAGING_DIR)/usr/lib/pkgconfig/
78 $(SED) 's,-I$${includedir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/libdaemon.pc
79 $(SED) 's,-L$${libdir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/libdaemon.pc
80 touch $@
81
82install-dev: $(STAGING_DIR)/usr/lib/libdaemon.so
83
84uninstall-dev:
85 rm -rf \
86 $(STAGING_DIR)/usr/include/libdaemon \
87 $(STAGING_DIR)/usr/lib/libdaemon.a \
88 $(STAGING_DIR)/usr/lib/libdaemon.so* \
89 $(STAGING_DIR)/usr/lib/pkgconfig/libdaemon.pc \
90
91compile-targets: install-dev
92clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.