| 1 | # $Id: Makefile 3112 2006-02-01 23:53:19Z mbm $
|
|---|
| 2 |
|
|---|
| 3 | include $(TOPDIR)/rules.mk
|
|---|
| 4 |
|
|---|
| 5 | PKG_NAME:=libgpg-error
|
|---|
| 6 | PKG_VERSION:=1.0
|
|---|
| 7 | PKG_RELEASE:=0
|
|---|
| 8 | PKG_MD5SUM:=ff409db977e4a4897aa09ea420a28a2f
|
|---|
| 9 |
|
|---|
| 10 | PKG_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/
|
|---|
| 14 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 | include $(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 |
|
|---|
| 78 | install-dev: $(STAGING_DIR)/usr/lib/libgpg-error.so
|
|---|
| 79 |
|
|---|
| 80 | uninstall-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 |
|
|---|
| 87 | compile-targets: install-dev
|
|---|
| 88 | clean-targets: uninstall-dev
|
|---|
| 89 |
|
|---|
| 90 | mostlyclean:
|
|---|
| 91 | make -C $(WRKBUILD) clean
|
|---|
| 92 | rm -f $(WRKBUILD)/.built
|
|---|