3d4ccb246a
The find-prefix infrastructure was required in a pkgviews world where packages installed from pkgsrc could have different installation prefixes, and this was a way for a dependency prefix to be determined. Now that pkgviews has been removed there is no longer any need for the overhead of this infrastructure. Instead we use BUILDLINK_PREFIX.pkg for dependencies pulled in via buildlink, or LOCALBASE/PREFIX where the dependency is coming from pkgsrc. Provides a reasonable performance win due to the reduction of `pkg_info -qp` calls, some of which were redundant anyway as they were duplicating the same information provided by BUILDLINK_PREFIX.pkg.
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.38 2015/11/25 12:47:55 jperkin Exp $
|
|
#
|
|
|
|
DISTNAME= gimmix-0.5.7.1
|
|
PKGREVISION= 27
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://download.berlios.de/gimmix/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://gimmix.berlios.de/
|
|
COMMENT= Graphical Music player daemon (MPD) client
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= intltool gmake msgfmt pkg-config
|
|
|
|
# fixes broken symbolic link to /usr/share/intltool/Makefile.in.in
|
|
post-extract:
|
|
rm -f ${WRKSRC}/po/Makefile.in.in
|
|
ln -s ${LOCALBASE}/share/intltool/Makefile.in.in \
|
|
${WRKSRC}/po/Makefile.in.in
|
|
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.libmpd+= libmpd>=0.17.0
|
|
.include "../../audio/libmpd/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.libglade+= libglade>=2.6
|
|
.include "../../devel/libglade/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.taglib+= taglib>=1.4
|
|
.include "../../audio/taglib/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../textproc/libnxml/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|