diff options
author | gusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-08-16 03:44:33 +0800 |
---|---|---|
committer | gusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-08-16 03:44:33 +0800 |
commit | 817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf (patch) | |
tree | 5a679ff3c41382969b2e70a71da9a9484e795111 /x11/libxklavier/Makefile | |
parent | 44dcca2542e8092cf3bd06845987212d9b95886c (diff) | |
download | marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.gz marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.bz2 marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.lz marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.xz marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.zst marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.zip |
Remove keepla from MC. While here do other changes:
- Remove STRIP_CMD all over the place and replace
that with INSTALL_TARGET=install-tsrip
- Drop full path *_DEPENDS (like ${LOCALBASE}/bin/flex)
and use either binary names (when possible) or
package names instead.
I've been tempted to convert options to a more compact form, but
this will happen in the future.
Tested by: two complete poudriere runs
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@19813 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/libxklavier/Makefile')
-rw-r--r-- | x11/libxklavier/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/x11/libxklavier/Makefile b/x11/libxklavier/Makefile index a47b71654..1a5c623b4 100644 --- a/x11/libxklavier/Makefile +++ b/x11/libxklavier/Makefile @@ -1,9 +1,10 @@ # Created by: Maxim Sobolev <sobomax@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/trunk/x11/libxklavier/Makefile 18610 2013-06-30 16:33:05Z marcus $ +# $MCom$ PORTNAME= libxklavier PORTVERSION= 5.2.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 gnome MASTER_SITES= GNOME @@ -11,12 +12,12 @@ MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org COMMENT= Utility library to make XKB stuff easier -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes +BUILD_DEPENDS= iso-codes>=0:${PORTSDIR}/misc/iso-codes RUN_DEPENDS= xkbcomp:${PORTSDIR}/x11/xkbcomp \ - ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes + iso-codes>=0:${PORTSDIR}/misc/iso-codes USE_XORG= x11 xkbfile -USES= gmake libtool:keepla pathfix pkgconfig tar:xz +USES= gmake libtool pathfix pkgconfig tar:xz USE_GNOME= libxml2 glib20 introspection:build USE_LDCONFIG= yes GNU_CONFIGURE= yes @@ -28,10 +29,8 @@ CONFIGURE_ARGS= --with-xkb-base=${LOCALBASE}/share/X11/xkb \ --with-html-dir=${GNOME_HTML_DIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip PLIST_SUB= VERSION=${PORTVERSION} -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxklavier.so.* - .include <bsd.port.mk> |