blob: c01b47672206fe1b7994992b118f9b346e34efba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $NetBSD: Makefile,v 1.30 2000/05/30 19:13:16 drochner Exp $
#
DISTNAME= ORBit-0.5.1
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GNOME:=stable/sources/ORBit/}
MAINTAINER= tron@netbsd.org
HOMEPAGE= http://www.gnome.org/
DEPENDS+= glib-1.2.*:../../devel/glib
DEPENDS+= gindent-*:../../devel/gindent
DEPENDS+= gettext-0.10.*:../../devel/gettext
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_GMAKE= yes
LIBTOOL_FLAGS= --install-la
INFO_FILES= libIDL.info
# This package fails to build, with an unterminated macro definition error
# Calling the build twice seems to workaround this.
do-build:
-@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${.MAKEFLAGS} all
-@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${.MAKEFLAGS} all
post-install:
cd ${WRKSRC}/popt; ${LIBTOOL} --mode=install \
${INSTALL_DATA} libpopt.la ${PREFIX}/lib
.include "../../mk/bsd.pkg.mk"
|