Startup-notification is a library which implements a startup notification
protocol that's used by Gnome 2.2. Using this protocol a desktop environment can track the launch of an application and provide feedback such as a busy cursor, among other features. ok jolan@
This commit is contained in:
parent
8aa263135f
commit
5afb6b6f12
26
devel/startup-notification/Makefile
Normal file
26
devel/startup-notification/Makefile
Normal file
@ -0,0 +1,26 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2003/06/12 19:42:44 marcm Exp $
|
||||
|
||||
COMMENT= "library for tracking application startup"
|
||||
|
||||
DISTNAME= startup-notification-0.5
|
||||
CATEGORIES= devel x11/gnome
|
||||
|
||||
HOMEPAGE= http://www.gnome.org/
|
||||
|
||||
MAINTAINER= Marc Matteo <marcm@openbsd.org>
|
||||
|
||||
# LGPL
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/startup-notification/0.5/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/startup-notification/distinfo
Normal file
3
devel/startup-notification/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (startup-notification-0.5.tar.bz2) = 193cde48ed7ceaf346bd65590acc101c
|
||||
RMD160 (startup-notification-0.5.tar.bz2) = 62e67da88b9db2751f080e84e9db16160c321319
|
||||
SHA1 (startup-notification-0.5.tar.bz2) = 54ae80d94e608c0bcecd0f9f1c85fd7ab4f48740
|
72
devel/startup-notification/patches/patch-ltmain_sh
Normal file
72
devel/startup-notification/patches/patch-ltmain_sh
Normal file
@ -0,0 +1,72 @@
|
||||
$OpenBSD: patch-ltmain_sh,v 1.1.1.1 2003/06/12 19:42:44 marcm Exp $
|
||||
--- ltmain.sh.orig Mon Jan 20 19:22:43 2003
|
||||
+++ ltmain.sh Fri May 23 20:39:52 2003
|
||||
@@ -1082,6 +1082,17 @@ compiler."
|
||||
continue
|
||||
;;
|
||||
|
||||
+ -pthread)
|
||||
+ case $host in
|
||||
+ *-*-openbsd*)
|
||||
+ deplibs="$deplibs $arg"
|
||||
+ ;;
|
||||
+ *)
|
||||
+ continue
|
||||
+ ;;
|
||||
+ esac
|
||||
+ ;;
|
||||
+
|
||||
-module)
|
||||
module=yes
|
||||
continue
|
||||
@@ -1522,6 +1533,9 @@ compiler."
|
||||
fi
|
||||
continue
|
||||
;;
|
||||
+ -pthread)
|
||||
+ continue
|
||||
+ ;;
|
||||
%DEPLIBS%)
|
||||
alldeplibs=yes
|
||||
continue
|
||||
@@ -4575,40 +4589,6 @@ relink_command=\"$relink_command\""
|
||||
# Exit here if they wanted silent mode.
|
||||
test "$show" = ":" && exit 0
|
||||
|
||||
- echo "----------------------------------------------------------------------"
|
||||
- echo "Libraries have been installed in:"
|
||||
- for libdir in $libdirs; do
|
||||
- echo " $libdir"
|
||||
- done
|
||||
- echo
|
||||
- echo "If you ever happen to want to link against installed libraries"
|
||||
- echo "in a given directory, LIBDIR, you must either use libtool, and"
|
||||
- echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
|
||||
- echo "flag during linking and do at least one of the following:"
|
||||
- if test -n "$shlibpath_var"; then
|
||||
- echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
|
||||
- echo " during execution"
|
||||
- fi
|
||||
- if test -n "$runpath_var"; then
|
||||
- echo " - add LIBDIR to the \`$runpath_var' environment variable"
|
||||
- echo " during linking"
|
||||
- fi
|
||||
- if test -n "$hardcode_libdir_flag_spec"; then
|
||||
- libdir=LIBDIR
|
||||
- eval flag=\"$hardcode_libdir_flag_spec\"
|
||||
-
|
||||
- echo " - use the \`$flag' linker flag"
|
||||
- fi
|
||||
- if test -n "$admincmds"; then
|
||||
- echo " - have your system administrator run these commands:$admincmds"
|
||||
- fi
|
||||
- if test -f /etc/ld.so.conf; then
|
||||
- echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
|
||||
- fi
|
||||
- echo
|
||||
- echo "See any operating system documentation about shared libraries for"
|
||||
- echo "more information, such as the ld(1) and ld.so(8) manual pages."
|
||||
- echo "----------------------------------------------------------------------"
|
||||
exit 0
|
||||
;;
|
||||
|
6
devel/startup-notification/pkg/DESCR
Normal file
6
devel/startup-notification/pkg/DESCR
Normal file
@ -0,0 +1,6 @@
|
||||
Startup-notification is a library which implements a
|
||||
startup notification protocol. Using this protocol a desktop
|
||||
environment can track the launch of an application and provide
|
||||
feedback such as a busy cursor, among other features.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
3
devel/startup-notification/pkg/PFRAG.shared
Normal file
3
devel/startup-notification/pkg/PFRAG.shared
Normal file
@ -0,0 +1,3 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2003/06/12 19:42:44 marcm Exp $
|
||||
lib/libstartup-notification-1.so.0.0
|
||||
DYNLIBDIR(%D/lib)
|
14
devel/startup-notification/pkg/PLIST
Normal file
14
devel/startup-notification/pkg/PLIST
Normal file
@ -0,0 +1,14 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2003/06/12 19:42:44 marcm Exp $
|
||||
include/startup-notification-1.0/libsn/sn-common.h
|
||||
include/startup-notification-1.0/libsn/sn-launchee.h
|
||||
include/startup-notification-1.0/libsn/sn-launcher.h
|
||||
include/startup-notification-1.0/libsn/sn-monitor.h
|
||||
include/startup-notification-1.0/libsn/sn-util.h
|
||||
include/startup-notification-1.0/libsn/sn.h
|
||||
lib/libstartup-notification-1.a
|
||||
lib/libstartup-notification-1.la
|
||||
lib/pkgconfig/libstartup-notification-1.0.pc
|
||||
%%SHARED%%
|
||||
@comment @dirrm lib/pkgconfig
|
||||
@dirrm include/startup-notification-1.0/libsn
|
||||
@dirrm include/startup-notification-1.0
|
Loading…
Reference in New Issue
Block a user