KGuitar project was started for developing an efficient and easy-to-use environment for a guitarist. There are many tasks that guitarists do every day and that can be made easier to do when using computer. Examples of such tasks include finding of chord fingerings, writing & reading tabulatures, converting classic note score to the tabulature form and vice versa, transposition of the whole song or its parts and many others. with tweaks and ok jasper@
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/08/31 18:35:02 landry Exp $
|
|
|
|
COMMENT = guitar tab editor
|
|
|
|
DISTNAME = kguitar-0.5.1
|
|
|
|
CATEGORIES = multimedia kde
|
|
|
|
HOMEPAGE = http://kguitar.sourceforge.net/
|
|
|
|
MAINTAINER = Pascal Stumpf <Pascal.Stumpf@cubes.de>
|
|
|
|
# GPLv2+; for MusicXML copyright see licenseMusicXML.html
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += DCOP ICE SM X11 Xext Xfixes Xrender Xt art_lgpl_2 c
|
|
WANTLIB += expat fontconfig freetype idn jpeg kdecore kdefx kdeprint
|
|
WANTLIB += kdesu kdeui kio kparts kwalletclient m png pthread
|
|
WANTLIB += stdc++ util xcb z
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=kguitar/}
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
MODULES = devel/gettext \
|
|
x11/kde
|
|
LIB_DEPENDS = x11/kde/libs3
|
|
|
|
USE_LIBTOOL = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += --disable-midisupport \
|
|
--with-qt-dir="${LOCALBASE}" \
|
|
--with-qt-libraries="${LOCALBASE}/lib/qt3" \
|
|
--with-qt-includes="${LOCALBASE}/include/X11/qt3" \
|
|
--with-extra-libs="${LOCALBASE}/lib" \
|
|
--with-extra-includes="${LOCALBASE}/include/libpng"
|
|
|
|
PORTHOME= ${WRKDIR}
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|