Update to the most recent snapshot (2015-09-20).
This commit is contained in:
parent
768126a108
commit
1dc23defb5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=401755
4 changed files with 26 additions and 14 deletions
|
@ -1,8 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= compton
|
||||
PORTVERSION= 20140326
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 20150920
|
||||
CATEGORIES= x11-wm
|
||||
|
||||
MAINTAINER= femc7488@gmail.com
|
||||
|
@ -16,7 +15,7 @@ RUN_DEPENDS= xprop:${PORTSDIR}/x11/xprop \
|
|||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= chjj
|
||||
GH_TAGNAME= 360da12
|
||||
GH_TAGNAME= d7f95b5
|
||||
|
||||
USES= gmake pkgconfig
|
||||
USE_XORG= xcomposite xdamage xrandr xrender xinerama
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (chjj-compton-20140326-360da12_GH0.tar.gz) = ae3cc7fa685d52616563f5863e24a6c16e3a4ae8fe540f2eee3da1f058b79ac0
|
||||
SIZE (chjj-compton-20140326-360da12_GH0.tar.gz) = 149227
|
||||
SHA256 (chjj-compton-20150920-d7f95b5_GH0.tar.gz) = 4aa2d3fb8af8fbc7e19d022c708010c68cc13b6616bc550a6089afdc2b821e81
|
||||
SIZE (chjj-compton-20150920-d7f95b5_GH0.tar.gz) = 162985
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
--- Makefile.orig 2013-05-21 09:26:18.000000000 +0800
|
||||
+++ Makefile 2013-06-25 20:53:32.000000000 +0800
|
||||
@@ -112,22 +112,23 @@
|
||||
$(CC) $(CFG) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
|
||||
--- Makefile.orig 2015-09-20 09:16:54 UTC
|
||||
+++ Makefile
|
||||
@@ -143,29 +143,30 @@ compton: $(OBJS)
|
||||
$(CC) $(CFG) $(CPPFLAGS) $(LDFLAGS) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
|
||||
|
||||
man/%.1: man/%.1.asciidoc
|
||||
- a2x --format manpage $<
|
||||
|
@ -14,20 +14,31 @@
|
|||
|
||||
-install: $(BINS) docs
|
||||
- @install -d "$(DESTDIR)$(BINDIR)" "$(DESTDIR)$(MANDIR)" "$(DESTDIR)$(APPDIR)"
|
||||
- @install -m755 $(BINS) "$(DESTDIR)$(BINDIR)"/
|
||||
- @install -m755 $(BINS) "$(DESTDIR)$(BINDIR)"/
|
||||
-ifneq "$(MANPAGES)" ""
|
||||
- @install -m644 $(MANPAGES) "$(DESTDIR)$(MANDIR)"/
|
||||
- @install -m644 compton.desktop "$(DESTDIR)$(APPDIR)"/
|
||||
-endif
|
||||
+install: $(BINS)
|
||||
+ @install -d "$(DESTDIR)$(BINDIR)" "$(DESTDIR)$(APPDIR)" "$(DESTDIR)$(XDGDIR)"
|
||||
+ install -m755 $(BINS) "$(DESTDIR)$(BINDIR)"/
|
||||
+ install -m755 $(BINS) "$(DESTDIR)$(BINDIR)"/
|
||||
@install -d \
|
||||
"$(DESTDIR)$(ICODIR)/scalable/apps" \
|
||||
"$(DESTDIR)$(ICODIR)/48x48/apps"
|
||||
- @install -m644 media/compton.svg "$(DESTDIR)$(ICODIR)/scalable/apps"/
|
||||
- @install -m644 media/icons/48x48/compton.png "$(DESTDIR)$(ICODIR)/48x48/apps"/
|
||||
- @install -m644 compton.desktop "$(DESTDIR)$(APPDIR)"/
|
||||
+ install -m644 media/compton.svg "$(DESTDIR)$(ICODIR)/scalable/apps"/
|
||||
+ install -m644 media/icons/48x48/compton.png "$(DESTDIR)$(ICODIR)/48x48/apps"/
|
||||
+ install -m644 compton.desktop "$(DESTDIR)$(APPDIR)"/
|
||||
+ install -m644 compton.sample.conf "$(DESTDIR)$(XDGDIR)"/
|
||||
+ install -m644 compton.sample.conf "$(DESTDIR)$(XDGDIR)"/compton.conf.sample
|
||||
ifneq "$(DOCDIR)" ""
|
||||
- @install -d "$(DESTDIR)$(DOCDIR)"
|
||||
- @install -m644 README.md compton.sample.conf "$(DESTDIR)$(DOCDIR)"/
|
||||
- @install -m755 dbus-examples/cdbus-driver.sh "$(DESTDIR)$(DOCDIR)"/
|
||||
+ @install -d "$(DESTDIR)$(DOCDIR)" "$(DESTDIR)$(MANDIR)"
|
||||
+ifneq "$(MANPAGES)" ""
|
||||
+ install -m644 $(MANPAGES) "$(DESTDIR)$(MANDIR)"/
|
||||
+endif
|
||||
+ install -m644 README.md "$(DESTDIR)$(DOCDIR)"/
|
||||
+ install -m755 dbus-examples/cdbus-driver.sh "$(DESTDIR)$(DOCDIR)"/
|
||||
endif
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
bin/compton
|
||||
bin/compton-trans
|
||||
etc/xdg/compton.sample.conf
|
||||
@sample etc/xdg/compton.conf.sample
|
||||
share/applications/compton.desktop
|
||||
share/icons/hicolor/48x48/apps/compton.png
|
||||
share/icons/hicolor/scalable/apps/compton.svg
|
||||
|
|
Loading…
Reference in a new issue