1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Switch to USES= libtool:keepla tar:bzip2

- Replace FreshPorts by Bugzilla url (patch-src__smartbookmark.c)
- Bump PORTREVISION
This commit is contained in:
Olivier Duchateau 2014-06-24 20:28:18 +00:00
parent 4b340b308d
commit 0c1f87b2e3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=359124
2 changed files with 10 additions and 10 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= xfce4-smartbookmark-plugin
PORTVERSION= 0.4.5
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= www xfce
MASTER_SITES= ${MASTER_SITE_XFCE}
MASTER_SITE_SUBDIR= src/panel-plugins/${PORTNAME}/${PORTVERSION:R}
@ -13,11 +13,11 @@ MAINTAINER= xfce@FreeBSD.org
COMMENT= Query search engines from the Xfce panel
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GNOME= gtk20 intltool intlhack
USES= pkgconfig gettext gmake
USES= pkgconfig gettext gmake libtool:keepla tar:bzip2
USE_XFCE= configenv libexo libmenu libutil panel
USE_XORG= ice

View File

@ -1,5 +1,5 @@
--- ./src/smartbookmark.c.orig 2013-01-03 21:18:38.000000000 +0000
+++ ./src/smartbookmark.c 2013-01-21 20:08:22.000000000 +0000
+++ ./src/smartbookmark.c 2014-06-02 19:08:44.000000000 +0000
@@ -183,9 +183,9 @@
box = gtk_vbox_new(FALSE, 0);
@ -7,9 +7,9 @@
- search->url = "http://bugs.debian.org/";
- search->label_text = "BTS";
- search->size = 5;
+ search->url = "http://www.freshports.org/search.php?query=";
+ search->label_text = "FreshPorts";
+ search->size = 12;
+ search->url = "https://bugs.freebsd.org/bugzilla/";
+ search->label_text = "Bugzilla";
+ search->size = 10;
search->hide_label = FALSE;
/* read config file options */
filename = xfce_panel_plugin_save_location(plugin, TRUE);
@ -20,9 +20,9 @@
- search->url = g_strdup(xfce_rc_read_entry(rcfile,"url","http://bugs.debian.org/"));
- search->label_text = g_strdup(xfce_rc_read_entry(rcfile,"value","DBS"));
- search->size = xfce_rc_read_int_entry(rcfile, "size", 5);
+ search->url = g_strdup(xfce_rc_read_entry(rcfile,"url","http://www.freshports.org/search.php?query="));
+ search->label_text = g_strdup(xfce_rc_read_entry(rcfile,"value","FreshPorts"));
+ search->size = xfce_rc_read_int_entry(rcfile, "size", 12);
+ search->url = g_strdup(xfce_rc_read_entry(rcfile,"url","https://bugs.freebsd.org/bugzilla/"));
+ search->label_text = g_strdup(xfce_rc_read_entry(rcfile,"value","Bugzilla"));
+ search->size = xfce_rc_read_int_entry(rcfile, "size", 10);
search->hide_label = xfce_rc_read_bool_entry(rcfile, "hidelabel", FALSE);
}
}