1f4495b33e
Implement a new DEPENDS definition, which looks for an installed package, building it if not present, and use it in preference to LIB_DEPENDS. This should make the package collection more useful on NetBSD ELF ports.
41 lines
805 B
Makefile
41 lines
805 B
Makefile
# $NetBSD: Makefile,v 1.6 1998/04/22 14:22:48 agc Exp $
|
|
#
|
|
|
|
DISTNAME= asclock
|
|
PKGNAME= asclock-10
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= X11/clocks
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= hubertf@netbsd.org
|
|
|
|
DEPENDS+= xpm-3.4j:../../graphics/xpm
|
|
|
|
# Choose language from:
|
|
# 1) english [DEFAULT]
|
|
# 2) german
|
|
# 3) portuguese
|
|
# 4) dutch
|
|
# 5) norwegian
|
|
# 6) italian
|
|
# 7) swedish
|
|
# 8) spanish
|
|
# 9) hungarian
|
|
# 0) breton
|
|
# a) french
|
|
# b) czech
|
|
LANG?=1
|
|
|
|
# Choose paneltype from:
|
|
# 1) 8bit AfterStep-colors (47 colors) [DEFAULT]
|
|
# 2) 8bit NeXTStep -colors (76 colors)
|
|
# 3) 2bit greyscale ( 4 colors)
|
|
PANEL?=1
|
|
|
|
USE_X11= yes
|
|
INSTALL_TARGET= install install.man
|
|
do-configure:
|
|
cd ${WRKSRC} ; ( ${ECHO} ${LANG} ; ${ECHO} ${PANEL} ) | ./configure
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|