diff options
author | makc <makc@FreeBSD.org> | 2013-10-23 21:08:41 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2013-10-23 21:08:41 +0800 |
commit | 257d95e619d504625a3dd72269614d7fe350704c (patch) | |
tree | 902ae1e48303d70f1045908f9eb477d7722924c8 /x11 | |
parent | 4db462c2d32f9526ce9940e28a4b22915d0982f5 (diff) | |
download | freebsd-ports-gnome-257d95e619d504625a3dd72269614d7fe350704c.tar.gz freebsd-ports-gnome-257d95e619d504625a3dd72269614d7fe350704c.tar.zst freebsd-ports-gnome-257d95e619d504625a3dd72269614d7fe350704c.zip |
- Support staging
- Use new LIB_DEPENDS syntax
- Use options helpers
- Convert to USES
- Minor changes/fixes
Diffstat (limited to 'x11')
-rw-r--r-- | x11/gtkchtheme/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/x11/gtkchtheme/Makefile b/x11/gtkchtheme/Makefile index 29131df08d42..3a2c6c05643e 100644 --- a/x11/gtkchtheme/Makefile +++ b/x11/gtkchtheme/Makefile @@ -13,14 +13,13 @@ COMMENT= GTK2 theme changer USE_BZIP2= yes USES= gmake pkgconfig -USE_GNOME= gnomehack gnomeprefix gtk20 +USE_GNOME= gtk20 -PLIST_FILES= bin/gtk-chtheme -MAN1= gtk-chtheme.1 +PLIST_FILES= bin/gtk-chtheme \ + man/man1/gtk-chtheme.1.gz -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/gtk-chtheme ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/gtk-chtheme.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/gtk-chtheme ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/gtk-chtheme.1 ${STAGEDIR}${PREFIX}/man/man1 .include <bsd.port.mk> |