source: freewrt/package/libgpg-error/Makefile@ 8e47882

freewrt_1_0 freewrt_2_0
Last change on this file since 8e47882 was d419478, checked in by Thorsten Glaser <tg@…>, 19 years ago
  • whitespace cleanup, while here
  • move WRKDIR and DISTFILES definition into PKG_template
  • define WRKDIR via parent BUILD_DIR instead of going up from WRKSRC
  • use a sub-directory as WRKDIR, like BSD
  • rename PKG_BUILD_DIR into WRKBUILD
  • define WRKBUILD relative via WRKDIR
  • rename PKG_INSTALL_DIR into WRKINST
  • fix a few dependencies
  • make use of common cases in the definition of WRKBUILD and WRKINST, removing many redundant lines
  • use WRKDIR instead of BUILD_DIR in places where the latter was used previously
  • while here, remove PKG_CAT stuff

this only affects packages, for now

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

  • Property mode set to 100644
File size: 2.6 KB
Line 
1# $Id: Makefile 3112 2006-02-01 23:53:19Z mbm $
2
3include $(TOPDIR)/rules.mk
4
5PKG_NAME:=libgpg-error
6PKG_VERSION:=1.0
7PKG_RELEASE:=0
8PKG_MD5SUM:=ff409db977e4a4897aa09ea420a28a2f
9
10PKG_SOURCE_URL:=ftp://ftp.gnupg.org/gcrypt/libgpg-error/ \
11 http://mirrors.rootmode.com/ftp.gnupg.org/libgpg-error/ \
12 http://gulus.usherbrooke.ca/pub/appl/GnuPG/libgpg-error/ \
13 http://gnupg.unixmexico.org/ftp/libgpg-error/
14PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15
16
17include $(TOPDIR)/package/rules.mk
18
19$(eval $(call PKG_template,LIBGPG_ERROR,libgpg-error,$(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" \
26 LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
27 ./configure \
28 --target=$(GNU_TARGET_NAME) \
29 --host=$(GNU_TARGET_NAME) \
30 --build=$(GNU_HOST_NAME) \
31 --program-prefix="" \
32 --program-suffix="" \
33 --prefix=/usr \
34 --exec-prefix=/usr \
35 --bindir=/usr/bin \
36 --datadir=/usr/share \
37 --includedir=/usr/include \
38 --infodir=/usr/share/info \
39 --libdir=/usr/lib \
40 --libexecdir=/usr/lib \
41 --localstatedir=/var \
42 --mandir=/usr/share/man \
43 --sbindir=/usr/sbin \
44 --sysconfdir=/etc \
45 --disable-nls \
46 --enable-largefile \
47 --enable-shared \
48 --enable-static \
49 --disable-rpath \
50 );
51 touch $@
52
53$(WRKBUILD)/.built:
54 rm -rf $(WRKINST)
55 mkdir -p $(WRKINST)
56 $(MAKE) -C $(WRKBUILD) \
57 DESTDIR="$(WRKINST)" \
58 all install
59 touch $@
60
61$(IPKG_LIBGPG_ERROR):
62 install -m0755 -d $(IDIR_LIBGPG_ERROR)/usr/lib
63 $(CP) $(WRKINST)/usr/lib/libgpg-error.so.* $(IDIR_LIBGPG_ERROR)/usr/lib/
64 $(RSTRIP) $(IDIR_LIBGPG_ERROR)
65 $(IPKG_BUILD) $(IDIR_LIBGPG_ERROR) $(PACKAGE_DIR)
66
67$(STAGING_DIR)/usr/lib/libgpg-error.so: $(WRKBUILD)/.built
68 mkdir -p $(STAGING_DIR)/usr/bin
69 $(CP) $(WRKINST)/usr/bin/gpg-error-config $(STAGING_DIR)/usr/bin/
70 mkdir -p $(STAGING_DIR)/usr/include
71 $(CP) $(WRKINST)/usr/include/gpg-error.h $(STAGING_DIR)/usr/include/
72 mkdir -p $(STAGING_DIR)/usr/lib
73 $(CP) $(WRKINST)/usr/lib/libgpg-error.{a,so*} $(STAGING_DIR)/usr/lib/
74 mkdir -p $(STAGING_DIR)/usr/share/aclocal
75 $(CP) $(WRKINST)/usr/share/aclocal/gpg-error.m4 $(STAGING_DIR)/usr/share/aclocal/
76 touch $@
77
78install-dev: $(STAGING_DIR)/usr/lib/libgpg-error.so
79
80uninstall-dev:
81 rm -rf \
82 $(STAGING_DIR)/usr/bin/gpg-error-config \
83 $(STAGING_DIR)/usr/include/gpg-error.h \
84 $(STAGING_DIR)/usr/lib/libgpg-error.{a,so*} \
85 $(STAGING_DIR)/usr/share/aclocal/gpg-error.m4 \
86
87compile-targets: install-dev
88clean-targets: uninstall-dev
89
90mostlyclean:
91 make -C $(WRKBUILD) clean
92 rm -f $(WRKBUILD)/.built
Note: See TracBrowser for help on using the repository browser.