mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
7f4f9d039b
Adds japanese and swedish messages. PR: 19892 Submitted by: Trevor Johnson <trevor@jpj.net>
45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
# New ports collection makefile for: aumix
|
|
# Date created: 21 May 1999
|
|
# Whom: Chris Piazza <cpiazza@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= aumix
|
|
PORTVERSION= 2.7
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
http://jpj.net/~trevor/aumix/ \
|
|
http://jpj.net/~trevor/aumix/old/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= cpiazza@FreeBSD.org
|
|
|
|
LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext
|
|
.if !defined(WITHOUT_X11)
|
|
LIB_DEPENDS+= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12
|
|
|
|
USE_X_PREFIX= yes
|
|
GTK_CONFIG= ${X11BASE}/bin/gtk12-config
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \
|
|
--enable-own-labels \
|
|
--libdir="${LOCALBASE}/lib"
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
GTK_CONFIG="${GTK_CONFIG}" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
MAN1= aumix.1 xaumix.1
|
|
|
|
.if defined(WITHOUT_X11)
|
|
CONFIGURE_ARGS+= --without-gtk
|
|
.else
|
|
pre-fetch:
|
|
@${ECHO_MSG} -n "To build this port without X11 (and without the GUI),"
|
|
@${ECHO_MSG} " define \"WITHOUT_X11\"."
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|