developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.46 2006/03/04 21:31:08 jlam Exp $
|
|
|
|
DISTNAME= Eterm-0.9.3
|
|
PKGNAME= ${DISTNAME:S/^E/e/}
|
|
PKGREVISION= 1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=eterm/} \
|
|
ftp://ftp.dti.ad.jp/pub/X/Eterm/
|
|
DISTFILES= ${ETERM_SRCS} ${PIXMAP_FILES}
|
|
|
|
SITES_Eterm-bg-scale-1.tar.gz= ${MASTER_SITE_BACKUP}
|
|
SITES_Eterm-bg-scale-2.tar.gz= ${MASTER_SITE_BACKUP}
|
|
SITES_Eterm-bg-tile.tar.gz= ${MASTER_SITE_BACKUP}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.eterm.org/
|
|
COMMENT= Enlightened terminal emulator for the X Window System
|
|
|
|
EXTRACT_ONLY= ${ETERM_SRCS}
|
|
ETERM_SRCS= ${DISTNAME}${EXTRACT_SUFX}
|
|
PIXMAP_FILES= Eterm-bg-scale-1.tar.gz Eterm-bg-scale-2.tar.gz \
|
|
Eterm-bg-tile.tar.gz
|
|
|
|
USE_LIBTOOL= YES
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
PKG_SYSCONFSUBDIR= Eterm
|
|
OWN_DIRS= ${PKG_SYSCONFDIR}/themes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# Install Eterm as setuid root so that utmp logging function correctly.
|
|
#
|
|
# XXX: If installed setuid root on Solaris, pseudo-tty is owned by root,
|
|
# and it's not possible to resume a screen session as a normal user.
|
|
# (this behaviour should be reviewed again, since this workaround
|
|
# is 2 years and several version updates old.)
|
|
#
|
|
.if ${OPSYS} != "SunOS"
|
|
SPECIAL_PERMS= ${PREFIX}/bin/Eterm ${SETUID_ROOT_PERMS}
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
post-extract:
|
|
${LN} -sf ${WRKSRC} ${WRKDIR}/Eterm
|
|
cd ${WRKDIR} && \
|
|
for f in ${PIXMAP_FILES}; do \
|
|
${PAX} -O -zrf ${DISTDIR}/$$f; \
|
|
done
|
|
|
|
.include "../../devel/libast/buildlink3.mk"
|
|
.include "../../graphics/imlib2/buildlink3.mk"
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|