Update to 0.3.0.
This commit is contained in:
parent
bf0f8d185a
commit
42a6a1c4e4
@ -1,7 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2003/12/15 06:11:44 jolan Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2004/02/10 04:29:56 jolan Exp $
|
||||
|
||||
COMMENT= "shows the date and time in the xfce4 panel"
|
||||
DISTNAME= xfce4-datetime-plugin-0.2
|
||||
DISTNAME= xfce4-datetime-plugin-0.3.0
|
||||
MASTER_SITES= ${MASTER_SITE_GOODIES}
|
||||
|
||||
HOMEPAGE= ${HOMEPAGE_GOODIES}
|
||||
@ -12,4 +12,8 @@ LIB_DEPENDS= ${GTK2} \
|
||||
${XML2} \
|
||||
${GUI}
|
||||
|
||||
post-install:
|
||||
@cd ${PREFIX}/lib/xfce4/panel-plugins && mv libdatetime.so.0.0 \
|
||||
libdatetime.so
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (xfce4/xfce4-datetime-plugin-0.2.tar.gz) = ff4d9b545550fa72eba1c37a5d48edb6
|
||||
RMD160 (xfce4/xfce4-datetime-plugin-0.2.tar.gz) = 415036d1bfc2f1982d664a075de85250a7f08929
|
||||
SHA1 (xfce4/xfce4-datetime-plugin-0.2.tar.gz) = fbaae795fd7c6ca22c95b89501814eefd9c7d20b
|
||||
MD5 (xfce4/xfce4-datetime-plugin-0.3.0.tar.gz) = fec04ccaf62534143ec65935b93b8d19
|
||||
RMD160 (xfce4/xfce4-datetime-plugin-0.3.0.tar.gz) = 59e2c24c0300209ca8a63fb4973de317fd173117
|
||||
SHA1 (xfce4/xfce4-datetime-plugin-0.3.0.tar.gz) = 5c5da6104272b7d99aabeeb876cadb528852067e
|
||||
|
@ -1,3 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.2 2004/01/09 01:27:43 jolan Exp $
|
||||
lib/xfce4/panel-plugins/libdatetime.la
|
||||
@comment $OpenBSD: PLIST,v 1.3 2004/02/10 04:29:56 jolan Exp $
|
||||
@comment lib/xfce4/panel-plugins/libdatetime.la
|
||||
lib/xfce4/panel-plugins/libdatetime.so
|
||||
share/locale/ko/LC_MESSAGES/xfce4-datetime.mo
|
||||
|
@ -1,7 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.3 2004/01/08 23:09:12 jolan Exp $
|
||||
# $OpenBSD: Makefile,v 1.4 2004/02/10 04:29:06 jolan Exp $
|
||||
|
||||
COMMENT= "displays stats from a WLAN interface"
|
||||
DISTNAME= xfce4-wavelan-plugin-0.1.0
|
||||
DISTNAME= xfce4-wavelan-plugin-0.3.0
|
||||
MASTER_SITES= ${MASTER_SITE_GOODIES}
|
||||
|
||||
HOMEPAGE= ${HOMEPAGE_GOODIES}
|
||||
@ -12,8 +12,4 @@ LIB_DEPENDS= ${GTK2} \
|
||||
${XML2} \
|
||||
${GUI}
|
||||
|
||||
post-install:
|
||||
@cd ${PREFIX}/lib/xfce4/panel-plugins && mv libwavelan.so.0.0 \
|
||||
libwavelan.so
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (xfce4/xfce4-wavelan-plugin-0.1.0.tar.gz) = 0819388d9a438dd7d5ae0d981d7e0ff0
|
||||
RMD160 (xfce4/xfce4-wavelan-plugin-0.1.0.tar.gz) = 7a8fb90cb5ee7ed5ad8a94fbafa31f690de2eefd
|
||||
SHA1 (xfce4/xfce4-wavelan-plugin-0.1.0.tar.gz) = 308b79cefa70cdbd30d807397309217172615b42
|
||||
MD5 (xfce4/xfce4-wavelan-plugin-0.3.0.tar.gz) = 363eea4150222fe2fb0a3e6fd3162bb4
|
||||
RMD160 (xfce4/xfce4-wavelan-plugin-0.3.0.tar.gz) = 6134b6836041ff0b58c3063577613caca89f4be6
|
||||
SHA1 (xfce4/xfce4-wavelan-plugin-0.3.0.tar.gz) = b7ee8201d73ec4a8d79a91a6776a5cbb72ad7a2a
|
||||
|
@ -1,29 +0,0 @@
|
||||
$OpenBSD: patch-panel-plugin_wi_bsd_c,v 1.1 2004/01/08 23:09:12 jolan Exp $
|
||||
--- panel-plugin/wi_bsd.c.orig 2003-11-11 12:43:51.000000000 -0600
|
||||
+++ panel-plugin/wi_bsd.c 2004-01-08 15:00:36.000000000 -0600
|
||||
@@ -23,7 +23,7 @@
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
-#if defined(__NetBSD__) || defined(__FreeBSD__)
|
||||
+#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/cdefs.h>
|
||||
@@ -47,9 +47,16 @@
|
||||
#include <net80211/ieee80211_ioctl.h>
|
||||
#include <dev/ic/wi_ieee.h>
|
||||
#else
|
||||
+#if !defined __OpenBSD__
|
||||
#include <dev/pcmcia/if_wavelan_ieee.h>
|
||||
#endif
|
||||
#endif
|
||||
+#ifdef __OpenBSD__
|
||||
+#include <net/if_ieee80211.h>
|
||||
+#include <dev/ic/if_wi_ieee.h>
|
||||
+#define le16toh(x) letoh16(x)
|
||||
+#endif
|
||||
+#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
@ -1,6 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2003/12/15 06:11:44 jolan Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2004/02/10 04:29:06 jolan Exp $
|
||||
lib/xfce4/panel-plugins/libwavelan.a
|
||||
@comment lib/xfce4/panel-plugins/libwavelan.la
|
||||
lib/xfce4/panel-plugins/libwavelan.la
|
||||
lib/xfce4/panel-plugins/libwavelan.so
|
||||
@dirrm lib/xfce4/panel-plugins
|
||||
@dirrm lib/xfce4
|
||||
|
Loading…
Reference in New Issue
Block a user