mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
e5accf3361
due to uncertainty: there are too many unsharable global variables. Pointed out by Alexander Leidinger. 2) Due the last, revert to previous state without static library installation 3) Revert patch template to patch-aa revision 1.7 4) Unique change that is not reverse related: update MASTER_SITES using MASTER_SITE_SOURCEFORGE (joseph@randomnetworks.com) 5) PORTREVISION bump. I am reverting this for I won't be around to discuss this for the time being. :) If anyone wants to, please contact the submitter. Submitted by: Alexander Leidinger <Alexander@leidinger.net>, Joseph Scott <joseph@randomnetworks.com>
41 lines
833 B
Makefile
41 lines
833 B
Makefile
# ports collection makefile for: lame
|
|
# Date created: 11 January 1998
|
|
# Whom: yoshiaki Uchikawa
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lame
|
|
PORTVERSION= 3.70
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
ftp://lame.sourceforge.net/pub/
|
|
MASTER_SITE_SUBDIR= lame/src
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= yoshiaki@kt.rim.or.jp
|
|
|
|
USE_GMAKE= yes
|
|
WANT_GTK= yes
|
|
ALL_TARGET= lame
|
|
|
|
MAN1= lame.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(HAVE_GTK)
|
|
USE_GTK= yes
|
|
.endif
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/lame ${PREFIX}/bin
|
|
@${INSTALL_MAN} ${WRKSRC}/doc/man/lame.1 ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/lame
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/html/*.html \
|
|
${WRKSRC}/doc/html/*.css ${PREFIX}/share/doc/lame
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|