blob: 688f3c239781a1eb3d6c88b414f2af90aed416a5 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# $NetBSD: Makefile,v 1.13 2001/07/16 15:21:21 wiz Exp $
DISTNAME= AfterStep-1.8.9
PKGNAME= afterstep-1.8.9
CATEGORIES= x11 wm
MASTER_SITES= ftp://ftp.afterstep.org/stable/ \
ftp://ftp.digex.net/pub/X11/window-managers/afterstep/AfterStep/stable/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= fredb@netbsd.org
HOMEPAGE= http://www.afterstep.org/
COMMENT= NeXT-like window manager for X11
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
# XXX
# XXX The following would be "RUN_DEPENDS," if we had such a thing.
# XXX
DEPENDS+= asclock-[0-9]*:../../time/asclock
DEPENDS+= xp-*:../../x11/xp
USE_BUILDLINK_ONLY= YES
GNU_CONFIGURE= YES
USE_LIBTOOL= YES
USE_PERL5= YES
USE_X11= YES
CONFIGURE_ARGS+= --disable-staticlibs
CONFIGURE_ARGS+= --with-helpcommand="xpman"
post-patch:
for i in `${FIND} ${WRKSRC} -name "*.man" -print` \
${WRKSRC}/autoconf/Makefile.common.in; do \
${MV} $$i $$i.orig ;\
${SED} -e 's|/usr/local/|${PREFIX}/|g' -e 's|1x|1|g' < $$i.orig > $$i ; \
done
pre-configure:
cd ${WRKSRC} && \
autoconf --localdir=autoconf autoconf/configure.in > configure; \
${CHMOD} 755 configure; \
autoheader --localdir=autoconf autoconf/configure.in > autoconf/config.h.in;
.include "../../audio/rplay/buildlink.mk"
.include "../../graphics/jpeg/buildlink.mk"
.include "../../graphics/png/buildlink.mk"
.include "../../graphics/xpm/buildlink.mk"
.include "../../mk/bsd.pkg.mk"
|