xlsclients: Bump to version 1.1.0

git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@68505 d073be05-634f-4543-b044-5fe20cf6d1d6
This commit is contained in:
Jeremy Huddleston Sequoia
2010-06-05 05:17:22 +00:00
parent d87f024025
commit bf880bb0d8
2 changed files with 42 additions and 5 deletions
+10 -5
View File
@@ -2,7 +2,7 @@
PortSystem 1.0
name xlsclients
version 1.0.2
version 1.1.0
categories x11
maintainers jeremyhu openmaintainer
description List client applications running on an X11 display
@@ -14,13 +14,18 @@ homepage http://www.x.org/
master_sites http://xorg.freedesktop.org/archive/individual/app/
use_bzip2 yes
checksums md5 df270f7dd5528ae1b7d80c47585d8278 \
sha1 5cde39a28c5352d1d555714836f57c05197e419d \
rmd160 526a0cae2cfa9229c00670276f3eaecbde845889
checksums md5 550a0fee047c5043f2cbf190b41f8a1b \
sha1 1961ee982f98d270c9069eaf84790c6b9dcdc851 \
rmd160 ef0cb54ed84e77ea6013235582f65fcdf288f97d
depends_build port:pkgconfig
depends_lib port:xorg-libXmu
depends_lib port:xorg-libxcb
# Remove for 1.1.1 or later
post-patch {
file copy ${filespath}/strnlen.h ${worksrcpath}
}
livecheck.type regex
livecheck.regex ${name}-(\[\\d.\]+)${extract.suffix}
+32
View File
@@ -0,0 +1,32 @@
/*
* Copyright (c) 2009 Apple Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/*
* Author: Jeremy Huddleston, Apple Inc.
*/
#ifndef __STRNLEN_H__
#define __STRNLEN_H__ 1
#include <stdlib.h>
extern size_t strnlen(const char *s, size_t maxlen);
#endif /* __STRNLEN_H__ */