mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
1532859e32
- Remove dead mirror and mirror distfile on my server - Remove WWW from pkg-desc a the project seems to be dead PR: ports/95383 Submitted by: Lars Engels <lars.engels@0x20.net>
47 lines
901 B
Makefile
47 lines
901 B
Makefile
# New ports collection makefile for: nogger
|
|
# Date created: 2002-10-27
|
|
# Whom: trevor
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nogger
|
|
PORTVERSION= 0.8.6
|
|
PORTREVISION= 6
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.bsd-geek.de/FreeBSD/distfiles/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= No-frills, GTK-based Ogg Vorbis player
|
|
|
|
LIB_DEPENDS= vorbis.3:${PORTSDIR}/audio/libvorbis
|
|
|
|
USE_GNOME= gtk20
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 500113
|
|
IGNORE= just makes a humming noise
|
|
.endif
|
|
|
|
PLIST_FILES= bin/nogger
|
|
.ifndef(NOPORTDOCS)
|
|
.for ii in COPYING README Thanks
|
|
PLIST_FILES+= share/doc/nogger/${ii}
|
|
.endfor
|
|
PLIST_DIRS= share/doc/nogger
|
|
.endif
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= nogger
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/nogger ${PREFIX}/bin
|
|
.ifndef(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for ii in COPYING README Thanks
|
|
${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|