1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/graphics/xpm/Makefile
Eric Anholt 4eb209da7d - Add the X_WINDOW_SYSTEM={xorg,xfree86-4,xfree86-3} variable to bsd.port.mk,
and make XFREE86_VERSION map to it.  XFREE86_VERSION is now deprecated.
- Make xorg the default X_WINDOW_SYSTEM on -current.
- Add several new X_*_PORT variables which point to various pieces of X11 based
  on the setting of X_WINDOW_SYSTEM, and make ports use them.
- Add information to CHANGES about how to handle the transition.

PR:		ports/68763
Approved by:	portmgr (marcus)
Approved by:	re (scottl)
2004-07-23 19:10:32 +00:00

36 lines
682 B
Makefile

# New ports collection makefile for: xpm
# Date created: 14 September 1994
# Whom: jkh
#
# $FreeBSD$
#
PORTNAME= xpm
PORTVERSION= 3.4k
CATEGORIES= graphics x11
MASTER_SITES= ${MASTER_SITE_XCONTRIB}
MASTER_SITE_SUBDIR= libraries
MAINTAINER= ports@FreeBSD.org
COMMENT= The X Pixmap library
USE_IMAKE= yes
INSTALLS_SHLIB= yes
MAN1= cxpm.1 sxpm.1
.ifdef USE_XPM
.error You have `USE_XPM' variable defined either in environment or in make(1) arguments. Please undefine and try again.
.endif
.include <bsd.port.pre.mk>
.if ${X_WINDOW_SYSTEM:L} != xfree86-3
IGNORE= is included in XFree86 >3.x
.endif
post-install:
@ranlib ${PREFIX}/lib/libXpm.a
.include <bsd.port.post.mk>